Home
last modified time | relevance | path

Searched refs:run_command (Results 1 – 25 of 95) sorted by relevance

1234

/external/libxkbcommon/test/
Dtool-option-parsing.py52 def run_command(args): function
73 def run_command(self, args): member in XkbcliTool
83 return run_command(args)
86 rc, stdout, stderr = self.run_command(args)
91 rc, stdout, stderr = self.run_command(args)
96 rc, stdout, stderr = self.run_command(args)
102 rc, stdout, stderr = self.run_command(args)
194 rc, stdout, stderr = self.xkbcli_compile_keymap.run_command(args)
200 rc, stdout, stderr = self.xkbcli_compile_keymap.run_command(args)
206 rc, stdout, stderr = self.xkbcli_compile_keymap.run_command(args)
[all …]
/external/llvm-project/clang/tools/scan-build-py/libscanbuild/
Dclang.py12 from libscanbuild import run_command
33 output = run_command([clang, '-v'])
49 output = run_command(cmd, cwd=cwd)
150 lines = run_command(cmd)
169 run_command([extdef_map_cmd, '-version'])
/external/ltp/testcases/kernel/syscalls/copy_file_range/
Dcopy_file_range02.c85 static int run_command(char *command, char *option, char *file) in run_command() function
163 run_command("chattr", "-i", FILE_IMMUTABLE_PATH); in cleanup()
167 run_command("swapoff", FILE_SWAP_PATH, NULL); in cleanup()
225 chattr_i_nsup = run_command("chattr", "+i", FILE_IMMUTABLE_PATH); in setup()
239 swap_nsup = run_command("mkswap", FILE_SWAP_PATH, NULL); in setup()
240 swap_nsup = run_command("swapon", FILE_SWAP_PATH, NULL); in setup()
/external/swiftshader/third_party/llvm-10.0/scripts/
Dupdate.py138 def run_command(command, log_level=1): function
189 run_command('git init', 2)
190 run_command(
192 run_command('git config core.sparsecheckout true', 2)
193 run_command('echo /llvm > .git/info/sparse-checkout', 2)
196 run_command('echo /llvm > .git/info/sparse-checkout', 2)
197 run_command('git fetch origin {}'.format(LLVM_BRANCH), 2)
198 run_command('git checkout {}'.format(LLVM_COMMIT), 2)
/external/google-fruit/extras/benchmark/
Drun_benchmarks.py58 def run_command(executable: str, args: List[Any]=[], cwd: str=None, env: Dict[str, str]=None) -> Tu… function
104 _, stderr = run_command('cmake', args=['.'], cwd=tmpdir, env=modified_env)
162 run_command(compiler_executable_name,
173 stdout, _ = run_command(self.tmpdir + '/main', args = [int(5000000 * loop_factor)])
198 run_command(compiler_executable_name,
257 run_command('make', args=make_args, cwd=self.tmpdir)
279 run_command('strip', args=[self.tmpdir + '/main'])
283 run_command('strip', args=[self.tmpdir + '/main'])
286 run_command('make',
296 run_command('touch', args=self.arbitrary_files, cwd=self.tmpdir)
[all …]
/external/tensorflow/tensorflow/lite/delegates/hexagon/builders/tests/
Drun_tests.sh43 run_command="/data/local/tmp/hexagon_delegate_test/${binary_name}"
44 echo "Running ${run_command}"
45 … shell 'LD_LIBRARY_PATH=/data/local/tmp/hexagon_delegate_test:${LD_LIBRARY_PATH} '"${run_command}")
/external/wayland/doc/
Dmeson.build6 cmd = run_command(doxygen, '--version', check: true)
13 cmd = run_command(dot, '-V', check: true)
21 cmd = run_command(xsltproc, '--nonet', manpage_xsl)
/external/python/setuptools/setuptools/command/
Ddevelop.py113 self.run_command('build_py')
119 self.run_command('egg_info')
122 self.run_command('build_ext')
132 self.run_command('egg_info')
136 self.run_command('build_ext')
Dtest.py136 self.run_command('build_py')
142 self.run_command('egg_info')
145 self.run_command('build_ext')
148 self.run_command('egg_info')
152 self.run_command('build_ext')
/external/igt-gpu-tools/scripts/
Dtest_igt_gpu_tools.py36 def run_command(command): function
54 subtests = run_command([self._path, "--list-subtests"])
71 return run_command([self._path, "--run-subtest", subtest_name])
/external/autotest/client/common_lib/
Dpackages.py151 self.run_command = package_manager._run_command
169 self.run_command(test_cmd % destpath)
180 dest_file_path = self.run_command(mktemp).stdout.strip()
186 self.run_command(http_cmd, _run_command_dargs={'timeout': 30})
191 self.run_command('rm -rf %s' % dest_file_path)
205 result = self.run_command(cmd,
216 self.run_command('rm -f %s' % dest_path)
225 self.run_command = package_manager._run_command
234 self.run_command('cp %s %s' % (local_path, dest_path))
/external/OpenCL-CTS/scripts/
Dtest_opencl_cts.py32 def run_command(command: str) -> Tuple[int, str, str]: function
44 retcode, output, _ = run_command(f'{binary_path} --help')
97 retcode, output, oerror = run_command(self.command)
/external/python/cpython2/Lib/distutils/command/
Dbdist_dumb.py86 self.run_command('build')
94 self.run_command('install')
Dinstall_lib.py109 self.run_command('build_py')
111 self.run_command('build_ext')
/external/python/cpython3/Lib/distutils/command/
Dbdist_dumb.py81 self.run_command('build')
89 self.run_command('install')
Dinstall_lib.py105 self.run_command('build_py')
107 self.run_command('build_ext')
/external/vboot_reference/futility/
Dfutility.c274 int run_command(const struct futil_cmd_t *cmd, int argc, char *argv[]) in run_command() function
319 return run_command(cmd, argc, argv); in main()
364 return run_command(cmd, argc, argv); in main()
/external/rust/crates/clang-sys/out/
Dcommon.rs61 fn run_command(name: &str, command: &str, arguments: &[&str]) -> Option<String> { in run_command() function
96 run_command("llvm-config", &path, arguments) in run_llvm_config()
228 if let Some(output) = run_command("xcode-select", "xcode-select", &["--print-path"]) { in search_libclang_directories()
/external/rust/crates/clang-sys/build/
Dcommon.rs61 fn run_command(name: &str, command: &str, arguments: &[&str]) -> Option<String> { in run_command() function
96 run_command("llvm-config", &path, arguments) in run_llvm_config()
228 if let Some(output) = run_command("xcode-select", "xcode-select", &["--print-path"]) { in search_libclang_directories()
/external/llvm-project/lldb/third_party/Python/module/pexpect-4.6/pexpect/
Dreplwrap.py58 self.run_command(extra_init_cmd)
68 def run_command(self, command, timeout=-1): member in REPLWrapper
/external/autotest/server/site_tests/firmware_PDProtocol/
Dfirmware_PDProtocol.py73 output = self.run_command(self.ECTOOL_CMD_DICT[self.current_board])
87 def run_command(self, command): member in firmware_PDProtocol
/external/python/cpython2/Demo/pysvr/
Dpysvr.py94 run_command(code, stdin, stdout, globals)
105 def run_command(code, stdin, stdout, globals): function
Dpysvr.c49 static int run_command(char *, PyObject *);
325 end = run_command(buffer, globals); in run_interpreter()
344 run_command(char *buffer, PyObject *globals) in run_command() function
/external/google-fruit/tests/
Dfruit_test_common.py80 def run_command(executable, args=[], modify_env=lambda env: env): function
103 run_command('valgrind', args = args, modify_env = modify_env_for_compiled_executables)
105 run_command(executable, modify_env = modify_env_for_compiled_executables)
150 run_command(self.executable, args)
189 run_command(self.executable, args)
/external/llvm-project/llvm/utils/
Dcollect_and_build_with_pgo.py162 def run_command(self, member in Env
235 env.run_command(cmd, cwd=target_dir, check=True)
248 env.run_command(
271 env.run_command(cmd, check=True)

1234