/tools/asuite/atest/ |
D | atest_arg_parser.py | 115 self.add_argument('-a', '--all-abi', action='store_true', help=ALL_ABI) 116 self.add_argument('-b', '--build', action='append_const', dest='steps', 118 self.add_argument('-d', '--disable-teardown', action='store_true', 120 self.add_argument('--host', action='store_true', help=HOST) 121 self.add_argument('-i', '--install', action='append_const', 125 action='store_true', help=REBUILD_MODULE_INFO) 130 self.add_argument('-t', '--test', action='append_const', dest='steps', 132 self.add_argument('-w', '--wait-for-debugger', action='store_true', 136 self.add_argument('-p', '--test-mapping', action='store_true', 138 self.add_argument('--include-subdirs', action='store_true', [all …]
|
/tools/tradefederation/core/atest/ |
D | atest_arg_parser.py | 115 self.add_argument('-a', '--all-abi', action='store_true', help=ALL_ABI) 116 self.add_argument('-b', '--build', action='append_const', dest='steps', 118 self.add_argument('-d', '--disable-teardown', action='store_true', 120 self.add_argument('--host', action='store_true', help=HOST) 121 self.add_argument('-i', '--install', action='append_const', 125 action='store_true', help=REBUILD_MODULE_INFO) 130 self.add_argument('-t', '--test', action='append_const', dest='steps', 132 self.add_argument('-w', '--wait-for-debugger', action='store_true', 136 self.add_argument('-p', '--test-mapping', action='store_true', 138 self.add_argument('--include-subdirs', action='store_true', [all …]
|
/tools/test/connectivity/acts/tests/google/net/ |
D | sendra.py | 33 parser.add_argument('-m', '--mac-address', action='store', default=None, 35 parser.add_argument('-i', '--t-interval', action='store', default=None, 37 parser.add_argument('-c', '--pkt-count', action='store', default=None, 39 parser.add_argument('-l', '--life-time', action='store', default=None, 41 parser.add_argument('-in', '--wifi-interface', action='store', default=None, 43 parser.add_argument('-rtt', '--retrans-timer', action='store', default=None,
|
/tools/acloud/setup/ |
D | setup_args.py | 38 action="store_true", 46 action="store_true", 52 action="store_true", 59 action="store_true",
|
/tools/tradefederation/core/tests/src/com/android/tradefed/device/ |
D | BackgroundDeviceActionTest.java | 67 String action = ""; in testBackgroundActionComplete() local 70 mMockIDevice.executeShellCommand(EasyMock.eq(action), EasyMock.same(mMockReceiver), in testBackgroundActionComplete() 75 new BackgroundDeviceAction(action, "desc", mMockTestDevice, mMockReceiver, 0); in testBackgroundActionComplete() 90 String action = ""; in testBackgroundAction_shellException() local 92 mMockIDevice.executeShellCommand(EasyMock.eq(action), EasyMock.same(mMockReceiver), in testBackgroundAction_shellException() 97 new BackgroundDeviceAction(action, "desc", mMockTestDevice, mMockReceiver, 0) { in testBackgroundAction_shellException() 122 String action = ""; in testwaitForDeviceRecovery_online() local 126 new BackgroundDeviceAction(action, "desc", mMockTestDevice, mMockReceiver, 0); in testwaitForDeviceRecovery_online() 146 String action = ""; in testwaitForDeviceRecovery_blockOffline() local 151 new BackgroundDeviceAction(action, "desc", mMockTestDevice, mMockReceiver, 0); in testwaitForDeviceRecovery_blockOffline()
|
/tools/trebuchet/core/model/src/main/kotlin/trebuchet/model/fragments/ |
D | SliceGroupBuilder.kt | 27 inline fun beginSlice(action: (MutableSliceGroup) -> Unit): Unit { in hasOpenSlices() 29 action(builder) in hasOpenSlices() 33 inline fun endSlice(action: (MutableSliceGroup) -> Unit): SliceGroup? { in endSlice() 37 action(builder) in endSlice()
|
/tools/test/connectivity/acts/tests/google/bt/performance/ |
D | BtInterferenceRSSITest.py | 46 for action in action_sequence: 47 if action == END_TOKEN: # Stop the sequence and don't loop 49 method, value = action.split(":")
|
/tools/acloud/create/ |
D | create_args.py | 70 action="store_false", 78 action="store_true", 85 action="store_true", 99 action="store_true", 185 action="store_true", 192 action="store_false", 199 action="store_true", 338 action="append", 352 action="store_true",
|
/tools/tradefederation/core/invocation_interfaces/com/android/tradefed/invoker/logger/ |
D | CurrentInvocation.java | 143 public static void setActionInProgress(ActionInProgress action) { in setActionInProgress() argument 149 mPerGroupInfo.get(group).mActionInProgress = action; in setActionInProgress() 171 ActionInProgress action = getActionInProgress(); in createFailure() local 172 if (action != null) { in createFailure() 173 failure.setActionInProgress(action); in createFailure()
|
/tools/treble/build/sandbox/ |
D | nsjail.py | 441 action='append', 473 action='append', 480 action='append', 485 action='store_true', 489 action='store_true', 493 action='store_true', 502 action='append',
|
/tools/acloud/public/ |
D | acloud_common.py | 55 action='count', 60 action="store_true",
|
/tools/acloud/delete/ |
D | delete_args.py | 50 action="store_true", 62 action="store_true",
|
/tools/external_updater/ |
D | external_updater.py | 235 '--all', action='store_true', 251 action='store_true') 253 '--branch_and_commit', action='store_true', 256 '--push_change', action='store_true',
|
/tools/asuite/aidegen/ |
D | run_tests.sh | 71 local action=$(echo $1| awk -F: '{print $2}') 72 if ! python3 -c "$action" 2>/dev/null; then
|
D | aidegen_main.py | 129 action='store_true', 145 '-n', '--no_launch', action='store_true', help='Do not launch IDE.') 150 action='store_true', 156 action='store_true', 163 action='store_true',
|
/tools/test/connectivity/acts/framework/acts/test_utils/instrumentation/device/command/ |
D | intent_builder.py | 39 def set_action(self, action): argument 41 self._action = action
|
/tools/tradefederation/core/test_framework/com/android/tradefed/targetprep/ |
D | AoaTargetPreparer.java | 168 mActions.forEach(action -> execute(device, action)); in configure() 182 Action action = ACTIONS.retrieve(args, input); in execute() local 183 if (action == null) { in execute() 186 action.accept(device, args.get(0)); in execute()
|
/tools/repohooks/tools/ |
D | google-java-format.py | 46 parser.add_argument('--fix', action='store_true', 53 parser.add_argument('--sort-imports', action='store_true',
|
D | pylint.py | 72 parser.add_argument('--py3', action='store_true', 79 action='store_true')
|
D | clang-format.py | 54 parser.add_argument('--fix', action='store_true', 60 scope.add_argument('--working-tree', action='store_true',
|
/tools/test/connectivity/acts/tests/google/tel/etc/ |
D | manage_sim.py | 198 action='store_true') 203 action='store_true') 208 action='store_true')
|
/tools/test/connectivity/acts/framework/acts/bin/ |
D | monsoon.py | 63 '--status', action='store_true', help='Print power meter status.') 108 action='store_true',
|
/tools/platform-compat/build/ |
D | process_compat_config.py | 112 parser.add_argument("--jar", type=argparse.FileType('rb'), action='append', 114 parser.add_argument("--xml", type=argparse.FileType('rb'), action='append', 121 parser.add_argument("--allow-duplicates", dest="allow_duplicates", action='store_true',
|
/tools/asuite/aidegen_functional_test/ |
D | aidegen_functional_test_main.py | 103 action='store_true', 110 action='store_true', 115 action='store_true', 120 action='store_true', 125 action='store_true', 132 action='store_true', 138 action='store_true',
|
/tools/acloud/list/ |
D | list_args.py | 36 action="store_true",
|