/third_party/libinput/tools/ |
D | test_tool_option_parsing.py | 51 def run_command(args): function 77 def run_command(self, args): member in LibinputTool 82 return run_command(args) 85 rc, stdout, stderr = self.run_command(args) 92 rc, stdout, stderr = self.run_command(args) 97 rc, stdout, stderr = self.run_command(args) 103 rc, stdout, stderr = self.run_command(args) 109 rc, stdout, stderr = self.run_command(args) 129 rc, _, _ = self.run_command(["--help"]) 299 rc, stdout, stderr = libinput_debug_events.run_command(["/dev/input/event0"] * 61)
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/scripts/ |
D | update.py | 138 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)
|
/third_party/ltp/testcases/kernel/syscalls/copy_file_range/ |
D | copy_file_range02.c | 89 static int run_command(char *command, char *option, char *file) in run_command() function 167 run_command("chattr", "-i", FILE_IMMUTABLE_PATH); in cleanup() 171 run_command("swapoff", FILE_SWAP_PATH, NULL); in cleanup() 229 chattr_i_nsup = run_command("chattr", "+i", FILE_IMMUTABLE_PATH); in setup() 243 swap_nsup = run_command("mkswap", FILE_SWAP_PATH, NULL); in setup() 244 swap_nsup = run_command("swapon", FILE_SWAP_PATH, NULL); in setup()
|
/third_party/typescript/tests/verify_3rd_libs/ |
D | verify_3rd_libs.py | 151 def run_command(cmd, path): function 168 result = run_command(install_cmd, project) 179 result = run_command(cmd, os.path.join(project, m)) 194 result = run_command(sync_cmd, project) 208 result = run_command(build_entry_cmd, project) 228 result = run_command(build_lib_cmd, project) 245 result = run_command(build_ohosTest_cmd, project)
|
/third_party/typescript/tests/issues_cookbook_tests/ |
D | autotest_sdk.py | 25 def run_command(self, cmd, path): member in Utils 56 result = self.utils.run_command(install_cmd, self.project_path) 64 result = self.utils.run_command(sync_cmd, self.project_path) 70 clean_result = self.utils.run_command(clean_cmd, self.project_path) 72 build_result = self.utils.run_command(build_cmd, self.project_path)
|
/third_party/libuv/docs/code/onchange/ |
D | main.c | 9 void run_command(uv_fs_event_t *handle, const char *filename, int events, int status) { in run_command() function 40 uv_fs_event_start(fs_event_req, run_command, argv[argc], UV_FS_EVENT_RECURSIVE); in main()
|
/third_party/rust/crates/clang-sys/build/ |
D | common.rs | 96 fn run_command(name: &str, path: &str, arguments: &[&str]) -> Option<String> { in run_command() function 119 run_command("llvm-config", &path, arguments) in run_llvm_config() 125 run_command("xcode-select", "xcode-select", arguments) in run_xcode_select()
|
/third_party/python/Lib/distutils/command/ |
D | bdist_dumb.py | 81 self.run_command('build') 89 self.run_command('install')
|
D | install_lib.py | 105 self.run_command('build_py') 107 self.run_command('build_ext')
|
D | install_scripts.py | 43 self.run_command('build_scripts')
|
D | bdist.py | 141 self.run_command(cmd_name)
|
D | build.py | 135 self.run_command(cmd_name)
|
D | install.py | 568 self.run_command('build') 580 self.run_command(cmd_name)
|
/third_party/skia/third_party/externals/freetype/ |
D | meson.build | 29 version: run_command('builds/meson/extract_freetype_version.py', 41 ft2_so_version = run_command(python_exe, 46 ft2_pkgconfig_version = run_command(python_exe, 70 ft_main_modules = run_command(python_exe, 91 ft_aux_modules = run_command(python_exe, 117 base_extensions = run_command(python_exe,
|
/third_party/ltp/testcases/kernel/syscalls/acct/ |
D | acct02.c | 70 static void run_command(void) in run_command() function 173 run_command(); in run()
|
/third_party/toybox/toys/pending/ |
D | init.c | 204 static void run_command(char *command) in run_command() function 281 run_command(x->command); in final_run() 408 run_command(x->command); in restart_init_handler()
|
/third_party/python/Modules/ |
D | main.c | 84 return (config->run_command != NULL in config_run_code() 577 if (config->run_command) { in pymain_run_python() 578 *exitcode = pymain_run_command(config->run_command); in pymain_run_python()
|
/third_party/skia/tools/ |
D | find_run_binary.py | 14 def run_command(args): function
|
/third_party/python/Lib/distutils/ |
D | cmd.py | 308 def run_command(self, command): member in Command 313 self.distribution.run_command(command)
|
/third_party/python/Python/ |
D | initconfig.c | 643 assert(!(config->run_command != NULL && config->run_module != NULL)); in config_check_consistency() 685 CLEAR(config->run_command); in PyConfig_Clear() 944 COPY_WSTR_ATTR(run_command); in _PyConfig_Copy() 1044 SET_ITEM_WSTR(run_command); in _PyConfig_AsDict() 1327 GET_WSTR_OPT(run_command); in _PyConfig_FromDict() 2315 if (config->run_command == NULL) { in config_parse_cmdline() 2327 config->run_command = command; in config_parse_cmdline() 2458 if (config->run_command == NULL && config->run_module == NULL in config_parse_cmdline() 2469 if (config->run_command != NULL || config->run_module != NULL) { in config_parse_cmdline() 2665 if (config->run_command != NULL) { in config_update_argv()
|
/third_party/python/ |
D | setup.py | 123 def run_command(cmd): function 673 ret = run_command( 698 ret = run_command( 739 ret = run_command('%s --print-search-dirs >%s' % (CC, tmpfile)) 760 ret = run_command('%s -E -v - </dev/null 2>%s 1>/dev/null' % (CC, tmpfile)) 1080 ret = run_command("%s -d %s | grep '(NEEDED)' > %s" 1084 ret = run_command("ldd %s > %s" % (do_readline, tmpfile)) 1802 ret = run_command( 2059 run_command(
|
/third_party/unity/ |
D | meson.build | 11 version: run_command(
|
/third_party/lz4/contrib/meson/meson/ |
D | meson.build | 21 lz4_version = run_command(GetLz4LibraryVersion_py, lz4_h_file, check: true).stdout().strip()
|
/third_party/python/Include/cpython/ |
D | initconfig.h | 196 wchar_t *run_command; member
|
/third_party/python/Lib/test/ |
D | test_gc.py | 684 def run_command(code): function 695 stderr = run_command(code % "0") 700 stderr = run_command(code % "gc.DEBUG_UNCOLLECTABLE") 709 stderr = run_command(code % "gc.DEBUG_SAVEALL")
|