Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/tools/scan-build-py/lib/libscanbuild/
H A 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'])
H A Danalyze.py29 wrapper_environment, run_build, run_command, CtuConfig
515 run_command(cmd, cwd=cwd)
568 output = run_command(cmd, cwd=cwd)
626 run_command(ast_command, cwd=opts['directory'])
638 extdef_src_list = run_command(extdefmap_command, cwd=opts['directory'])
H A Dintercept.py32 wrapper_environment, run_command, run_build
242 return any(pattern.match(line) for line in run_command(command))
H A D__init__.py59 def run_command(command, cwd=None): function
/llvm-project-15.0.7/lldb/third_party/Python/module/pexpect-4.6/pexpect/
H A Dreplwrap.py58 self.run_command(extra_init_cmd)
68 def run_command(self, command, timeout=-1): member in REPLWrapper
/llvm-project-15.0.7/llvm/utils/
H A 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)
/llvm-project-15.0.7/lldb/test/API/test_runner/test/
H A Dtest_process_control.py104 driver.run_command(self.inferior_command())
112 driver.run_command(self.inferior_command(options="-r10"))
/llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/test_runner/
H A Dprocess_control.py518 def run_command(self, command): member in ProcessDriver