Home
last modified time | relevance | path

Searched refs:subcommand (Results 1 – 25 of 52) sorted by relevance

123

/external/autotest/server/
Dsubcommand_unittest.py9 from autotest_lib.server import subcommand
14 class wrapper(subcommand.subcommand):
34 subcommand.subcommand.fork_hooks = []
35 subcommand.subcommand.join_hooks = []
54 cmd = subcommand.subcommand(func, (2, 3))
58 self.god.stub_function(subcommand.os.path, 'abspath')
59 self.god.stub_function(subcommand.os.path, 'exists')
60 self.god.stub_function(subcommand.os, 'mkdir')
62 subcommand.os.path.abspath.expect_call('dir').and_return('/foo/dir')
63 subcommand.os.path.exists.expect_call('/foo/dir').and_return(False)
[all …]
Dbase_utils.py14 from autotest_lib.server import subcommand
135 subcommand.subcommand.register_join_hook(lambda _: __clean_tmp_dirs())
Dserver_job.py41 from autotest_lib.server import subcommand
318 subcommand.logging_manager_object = self.logging
443 subcommand.subcommand.register_fork_hook(on_fork)
444 subcommand.subcommand.register_join_hook(on_join)
616 return subcommand.parallel_simple(
Dsubcommand.py105 subcommands.append(subcommand(function, args, subdir))
109 class subcommand(object): class
/external/autotest/client/site_tests/hardware_TPMCheck/
Dhardware_TPMCheck.py41 def __run_tpmc_cmd(subcommand): argument
47 cmd = 'tpmc %s' % subcommand
51 def check_tpmc(subcommand, expected): argument
62 error_msg = 'invalid response to tpmc %s' % subcommand
64 out = __run_tpmc_cmd(subcommand)
68 result_set = utils.set_from_keyval_output(__run_tpmc_cmd(subcommand))
126 for subcommand in ['getvf', 'getpf']:
127 check_tpmc(subcommand, tpmc_expected[subcommand])
/external/autotest/server/tests/netpipe/
Dnetpipe.py1 from autotest_lib.server import autotest, hosts, subcommand, test
49 server_command = subcommand.subcommand(server_at.run,
52 client_command = subcommand.subcommand(client_at.run,
56 subcommand.parallel([server_command, client_command])
/external/autotest/server/tests/netperf2/
Dnetperf2.py1 from autotest_lib.server import autotest, hosts, subcommand, test
48 server_command = subcommand.subcommand(server_at.run,
51 client_command = subcommand.subcommand(client_at.run,
55 subcommand.parallel([server_command, client_command])
/external/autotest/client/site_tests/firmware_Cr50VirtualNVRam/
Dfirmware_Cr50VirtualNVRam.py14 def run_tpmc_cmd(subcommand): argument
22 cmd = 'tpmc %s 2>&1 | awk 1 ORS=""' % subcommand
25 def check_tpmc(subcommand, expected): argument
32 error_msg = 'invalid response to tpmc %s' % subcommand
33 out = run_tpmc_cmd(subcommand)
39 def expect_tpmc_error(subcommand, expected_error): argument
40 check_tpmc(subcommand, '.*failed.*%s.*' % expected_error)
/external/python/cpython3/Lib/test/
Dtest_dtrace.py57 def generate_trace_command(self, script_file, subcommand=None): argument
59 if subcommand:
60 command += ["-c", subcommand]
63 def trace(self, script_file, subcommand=None): argument
64 command = self.generate_trace_command(script_file, subcommand)
75 subcommand = " ".join([sys.executable] + python_flags + [python_file])
76 return self.trace(script_file, subcommand)
/external/u-boot/cmd/
Dspl.c51 static int call_bootm(int argc, char * const argv[], const char *subcommand[]) in call_bootm() argument
76 while (subcommand[i] != NULL) { in call_bootm()
77 bootm_argv[1] = (char *)subcommand[i]; in call_bootm()
/external/iptables/iptables/
Dxshared.h72 struct subcommand { struct
87 extern int subcmd_main(int, char **, const struct subcommand *); argument
Dxtables-compat-multi.c8 static const struct subcommand multi_subcommands[] = {
Dxtables-multi.c20 static const struct subcommand multi_subcommands[] = {
Dxshared.c186 static mainfunc_t subcmd_get(const char *cmd, const struct subcommand *cb) in subcmd_get()
194 int subcmd_main(int argc, char **argv, const struct subcommand *cb) in subcmd_main()
/external/autotest/server/samples/
Dprofilertest.srv24 return subcommand(at.run, params, name)
61 tests = [subcommand(server_sleep_test, [20], "server_sleep_test")]
/external/autotest/client/common_lib/
Dpackages.py358 from autotest_lib.server import subcommand
376 subcommand.parallel_simple(trim_custom_directories, custom_repos,
505 from autotest_lib.server import subcommand
522 commands.append(subcommand.subcommand(self.upload_pkg_parallel,
526 results = subcommand.parallel(commands, timeout, return_results=True)
/external/swiftshader/third_party/llvm-7.0/llvm/docs/CommandGuide/
Dllvm-pdbutil.rst10 :program:`llvm-pdbutil` [*subcommand*] [*options*]
50 The **pretty** subcommand is built on the Windows DIA SDK, and as such is not
58 The *pretty* subcommand displays a very high level representation of your
254 The **dump** subcommand displays low level information about the structure of a
260 The **dump** subcommand exposes internal details of the file format. As
428 Like the **dump** subcommand, the **bytes** subcommand displays low level
430 forensics. The **bytes** subcommand finds various structures in a PDB file
/external/autotest/venv/skylab_staging/
Dswarming.py158 def _base_cmd(self, subcommand): argument
160 self._cli_path, subcommand,
/external/v8/tools/
Dgdb-v8-support.py208 def invoke(self, subcommand, from_tty): argument
218 result = gdb.execute(subcommand, from_tty=False, to_string=True)
/external/u-boot/board/Barix/ipam390/
DREADME.ipam390164 subcommand not supported
165 subcommand not supported
214 subcommand not supported
215 subcommand not supported
/external/autotest/scheduler/
Ddrone_utility.py39 from autotest_lib.server import subcommand
352 subproc = subcommand.subcommand(function, args)
/external/autotest/server/site_tests/tast/
Dtast.py221 def _run_tast(self, subcommand, extra_subcommand_args, timeout_sec, argument
240 subcommand,
/external/autotest/server/tests/barriertest_2client/
Dcontrol.srv63 subcommand_list.append(subcommand(host_at.run,
/external/llvm/tools/llvm-go/
Dllvm-go.go231 fmt.Println(`Usage: llvm-go subcommand [flags]
/external/v8/tools/mb/
Dmb.py290 if self.args.subcommand:
291 self.ParseArgs([self.args.subcommand, '--help'])
830 def GNCmd(self, subcommand, path, *args): argument
845 return [gn_path, subcommand, path] + list(args)

123