/cts/hostsidetests/packagemanager/dynamicmime/test/src/android/dynamicmime/testapp/util/ |
D | MimeGroupOperations.java | 20 import android.dynamicmime.testapp.commands.MimeGroupCommands; 34 public MimeGroupOperations(MimeGroupCommands commands, MimeGroupAssertions assertions) { in MimeGroupOperations() argument 35 mCommands = commands; in MimeGroupOperations() 73 public void setCommands(MimeGroupCommands commands) { in setCommands() argument 74 mCommands = commands; in setCommands()
|
/cts/hostsidetests/packagemanager/dynamicmime/test/src/android/dynamicmime/testapp/ |
D | BaseDynamicMimeTest.java | 22 import android.dynamicmime.testapp.commands.MimeGroupCommands; 33 public BaseDynamicMimeTest(MimeGroupCommands commands, MimeGroupAssertions assertions) { in BaseDynamicMimeTest() argument 34 super(commands, assertions); in BaseDynamicMimeTest()
|
D | MultipleAppsTest.java | 23 import android.dynamicmime.testapp.commands.MimeGroupCommands;
|
D | ComplexFilterTest.java | 28 import android.dynamicmime.testapp.commands.MimeGroupCommands;
|
/cts/tests/tests/media/bettertogether/src/android/media/bettertogether/cts/ |
D | Session2CommandGroupTest.java | 62 Set<Session2Command> commands = commandGroup.getCommands(); in testGetCommands() local 63 assertThat(commands.contains(command1)).isTrue(); in testGetCommands() 64 assertThat(commands.contains(command2)).isFalse(); in testGetCommands()
|
/cts/hostsidetests/hdmicec/src/android/hdmicec/cts/ |
D | HdmiCecClientWrapper.java | 164 List<String> commands = new ArrayList(); in init() local 166 commands.add("cec-client"); in init() 170 commands.add("-p"); in init() 171 commands.add("2"); in init() 174 commands.add("-t"); in init() 175 commands.add("x"); in init() 179 commands.add("-d"); in init() 180 commands.add("15"); in init() 181 commands.addAll(Arrays.asList(clientParams)); in init() 187 if (!initValidCecClient(device, commands)) { in init() [all …]
|
/cts/tests/tests/time/shell_utils/ |
D | Android.bp | 21 // A library for interacting with time-related shell "cmd" commands from host 39 // A library for interacting with time-related shell "cmd" commands from
|
/cts/hostsidetests/packagemanager/dynamicmime/test/src/android/dynamicmime/testapp/reboot/ |
D | PostRebootComplexFilterTest.java | 20 import android.dynamicmime.testapp.commands.MimeGroupCommands;
|
D | PostRebootSingleAppTest.java | 20 import android.dynamicmime.testapp.commands.MimeGroupCommands;
|
D | PreRebootComplexFilterTest.java | 21 import android.dynamicmime.testapp.commands.MimeGroupCommands;
|
D | PreRebootSingleAppTest.java | 21 import android.dynamicmime.testapp.commands.MimeGroupCommands;
|
/cts/hostsidetests/packagemanager/dynamicmime/test/src/android/dynamicmime/testapp/commands/ |
D | TestAppCommands.java | 17 package android.dynamicmime.testapp.commands;
|
D | AppCommands.java | 17 package android.dynamicmime.testapp.commands;
|
D | MimeGroupCommands.java | 17 package android.dynamicmime.testapp.commands;
|
/cts/common/device-side/bedstead/btest/ |
D | btest | 1073 commands = ["adb", "shell", "pm", "create-user"] 1076 commands.append("--for-testing") 1078 commands.append("user") 1080 output, err = execute_shell_command("Test", args, commands) 1092 commands = ["adb", "shell", "pm", "create-user", "--managed", "--profileOf", str(parent_id)] 1095 commands.append("--for-testing") 1097 commands.append("user") 1099 output, err = execute_shell_command("Test", args, commands) 1109 …commands = ["adb", "shell", "pm", "create-user", "--profileOf", str(parent_id), "--user-type andro… 1111 commands.append("--for-testing") [all …]
|
/cts/hostsidetests/packagemanager/dynamicmime/test/src/android/dynamicmime/testapp/update/ |
D | BaseUpdateTest.java | 23 import android.dynamicmime.testapp.commands.MimeGroupCommands;
|
/cts/tests/tests/voiceinteraction/service/src/android/voiceinteraction/service/ |
D | MainInteractionSession.java | 107 public boolean[] onGetSupportedCommands(String[] commands) { in onGetSupportedCommands() argument 108 boolean[] results = new boolean[commands.length]; in onGetSupportedCommands() 110 for (int idx = 0; idx < commands.length; idx++) { in onGetSupportedCommands() 111 results[idx] = Utils.TEST_COMMAND.equals(commands[idx]); in onGetSupportedCommands() 112 Log.i(TAG, "command " + commands[idx] + ", support = " + results[idx]); in onGetSupportedCommands()
|
/cts/apps/NotesApp/ |
D | README | 16 To install the apk file, run the following commands from your android checkout:
|
/cts/tests/framework/base/windowmanager/util/src/android/server/wm/ |
D | CommandSession.java | 663 ArrayList<T> commands = mStorage.get(hostId); 664 if (commands == null) { 665 commands = new ArrayList<>(); 666 mStorage.put(hostId, commands); 668 commands.add(data); 685 final ArrayList<Bundle> commands = mStorage.get(hostId); 686 if (commands != null) { 687 final Iterator<Bundle> iterator = commands.iterator(); 695 if (commands.isEmpty()) {
|
/cts/apps/EmptyDeviceOwner/ |
D | README | 16 To update the apk file, run the following commands from your android checkout:
|
/cts/apps/EmptyDeviceAdmin/ |
D | README | 16 To update the apk file, run the following commands from your android checkout:
|
/cts/hostsidetests/packagemanager/domainverification/lib/constants/android/src/com/android/cts/packagemanager/verify/domain/android/ |
D | DomainVerificationIntentTestBase.kt | 102 protected fun runShellCommand(vararg commands: String) = commands.forEach { in runShellCommand()
|
/cts/hostsidetests/hdmicec/ |
D | cec_adapter.md | 175 (except `<command id>`, which requires 2 digits). Here, we want to send commands 181 4. Here are some useful commands to execute remote actions: 220 for more info on formatting your request and a full list of commands and their
|
/cts/tests/tests/voiceinteraction/testapp/src/android/voiceinteraction/testapp/ |
D | TestApp.java | 98 String[] commands = {Utils.TEST_COMMAND}; in continueTests() local 99 boolean[] supported = mInteractor.supportsCommands(commands); in continueTests()
|
/cts/hostsidetests/appsecurity/res/pkgsigverify/ |
D | README.md | 28 sign APKs using different keystores, providers, etc. The generation commands
|