/tools/appbundle/bundletool/java/com/android/tools/appbundle/bundletool/ |
D | BundleToolMain.java | 43 List<String> commands = flagParser.getCommands(); in main() local 45 if (commands.isEmpty()) { in main() 52 switch (commands.get(0)) { in main() 62 if (commands.size() > 1) { in main() 63 help(commands.get(1)); in main()
|
/tools/tradefederation/core/src/com/android/tradefed/testtype/ |
D | NoisyDryRunTest.java | 58 List<CommandLine> commands = testCommandFile(listener, mCmdfile); in run() local 59 if (commands != null) { in run() 60 testCommandLines(listener, commands); in run() 112 private void testCommandLines(ITestInvocationListener listener, List<CommandLine> commands) { in testCommandLines() argument 114 commands.size()); in testCommandLines() 115 for (int i = 0; i < commands.size(); ++i) { in testCommandLines() 121 String[] args = commands.get(i).asArray(); in testCommandLines()
|
/tools/tradefederation/core/src/com/android/tradefed/command/ |
D | Verify.java | 113 List<CommandFileParser.CommandLine> commands = parser.parseFile(cmdFile); in runVerify() local 116 commands.size(), cmdFile); in runVerify() 120 int digits = (int) Math.ceil(Math.log10(commands.size())); in runVerify() 124 for (CommandFileParser.CommandLine cmd : commands) { in runVerify()
|
/tools/appbundle/bundletool/java/com/android/tools/appbundle/bundletool/utils/ |
D | FlagParser.java | 44 private List<String> commands = new ArrayList<>(); field in FlagParser 53 this.commands.clear(); in parse() 57 commands.add(argsToProcess.get(0)); in parse() 137 return Collections.unmodifiableList(commands); in getCommands()
|
/tools/tradefederation/core/src/com/android/tradefed/targetprep/ |
D | RunHostCommandTargetPreparer.java | 185 private void runCommandList(final List<String> commands) { in runCommandList() argument 186 for (final String command : commands) { in runCommandList() 240 private void replaceSerialNumber(final List<String> commands, ITestDevice device) { in replaceSerialNumber() argument 241 for (int i = 0; i < commands.size(); i++) { in replaceSerialNumber() 243 commands.get(i).replace(DEVICE_SERIAL_PLACEHOLDER, device.getSerialNumber()); in replaceSerialNumber() 244 commands.set(i, command); in replaceSerialNumber()
|
D | SystemUpdaterDeviceFlasher.java | 105 String commands = in installUpdate() local 110 device.executeShellCommand(commands); in installUpdate()
|
D | DeviceSetup.java | 852 private void runCommands(ITestDevice device, List<String> commands) in runCommands() argument 859 for (String command : commands) { in runCommands() 977 public static void setCommandForBinaryState(BinaryState state, List<String> commands, in setCommandForBinaryState() argument 982 commands.add(onCommand); in setCommandForBinaryState() 987 commands.add(offCommand); in setCommandForBinaryState()
|
D | SdkAvdPreparer.java | 539 private void setCommandList(List<String> commands, String option, String value) { in setCommandList() argument 541 commands.add(option); in setCommandList() 542 commands.add(value); in setCommandList()
|
/tools/test/connectivity/acts/framework/acts/controllers/ |
D | access_point.py | 29 from acts.controllers.utils_lib.commands import ip 30 from acts.controllers.utils_lib.commands import route 31 from acts.controllers.utils_lib.commands import shell
|
/tools/test/connectivity/acts/tests/google/bt/pts/instructions/ |
D | GAP_PTS_INSTRUCTIONS | 356 Note: Before PTS asks you to reconnect via gatt, perform next two commands quickly 491 Note: Run these commands before executing the testcase on PTS Side 499 Note: Run these commands before executing the testcase on PTS Side 510 Note: Run the first 4 commands before executing the testcase on PTS Side 524 Note: Run the first 4 commands before executing the testcase on PTS Side
|
/tools/test/connectivity/acts/tests/google/net/ |
D | DataUsageTest.py | 82 commands = ["pm grant com.android.chrome " 90 for cmd in commands:
|
/tools/test/connectivity/acts/tests/google/wifi/rtt/ |
D | README.md | 40 The test configuration, the `<config>` in the commands above, is stored in
|
/tools/test/connectivity/acts/tests/google/wifi/aware/ |
D | README.md | 39 The test configurations, the `<config>` in the commands above, are stored in
|
/tools/test/connectivity/acts/ |
D | README.md | 61 USB debugging must be enabled before a device can take commands from adb.
|
/tools/tradefederation/core/tests/src/com/android/tradefed/targetprep/ |
D | DeviceSetupTest.java | 1198 private void doCommandsExpectations(String... commands) in doCommandsExpectations() argument 1200 for (String command : commands) { in doCommandsExpectations()
|
/tools/tradefederation/core/atest/ |
D | README.md | 46 Atest commands take the following form:
|