/third_party/protobuf/python/ |
H A D | setup.py | 217 if "clang" in os.popen('$CC --version 2> /dev/null').read():
|
/third_party/ninja/ |
H A D | configure.py | 84 popen = subprocess.Popen(['cl', '/nologo', '/help'], 87 out, err = popen.communicate()
|
/third_party/cups-filters/filter/foomatic-rip/ |
H A D | renderer.c | 49 FILE *pd = popen(gstestcommand, "r"); in test_gs_output_redirection()
|
H A D | postscript.c | 182 FILE *pd = popen(gscommand, "r"); in ps_pages()
|
/third_party/musl/tools/api_cmp_tool/ |
H A D | compare.py | 84 re = os.popen(stmt).readlines()
|
/third_party/mesa3d/src/amd/common/ |
H A D | ac_debug.c | 689 FILE *p = popen("dmesg", "r"); in ac_vm_fault_occured() 826 FILE *p = popen(cmd, "r"); in ac_get_wave_info()
|
/third_party/python/Lib/test/test_asyncio/ |
H A D | test_subprocess.py | 595 with mock.patch(target) as popen: 597 popen.side_effect = exc
|
/third_party/mesa3d/src/amd/compiler/ |
H A D | aco_print_asm.cpp | 199 p = popen(command, "r"); in print_asm_clrx()
|
/third_party/ltp/lib/ |
H A D | tst_kconfig.c | 93 fp = popen(buf, "r"); in open_kconfig()
|
/third_party/python/Lib/idlelib/ |
H A D | iomenu.py | 333 pipe = os.popen(command, "r")
|
/third_party/python/Lib/distutils/command/ |
H A D | bdist_rpm.py | 340 out = os.popen(q_cmd)
|
/third_party/ltp/testcases/kernel/mce-test/hwpoison/ |
H A D | tinjpage.c | 207 mce_inject = popen("mce-inject", "w"); in inject_mce_inject()
|
/third_party/ltp/testcases/kernel/power_management/lib/ |
H A D | pm_sched_mc.py | 654 dmesg_info = os.popen('dmesg').read()
|
/third_party/ltp/testcases/kernel/mce-test/tsrc/ |
H A D | tinjpage.c | 207 mce_inject = popen("mce-inject", "w"); in inject_mce_inject()
|
/third_party/python/Lib/test/ |
H A D | test_os.py | 1002 @unittest.skipUnless(hasattr(os, 'popen'), "needs os.popen()") 1007 with os.popen("%s -c 'echo $HELLO'" % unix_shell) as popen: 1008 value = popen.read().strip() 1013 @unittest.skipUnless(hasattr(os, 'popen'), "needs os.popen()") 1016 with os.popen("%s -c 'echo \"line1\nline2\nline3\"'" 1017 % unix_shell) as popen: 1018 it = iter(popen) [all...] |
H A D | test_subprocess.py | 1134 popen = subprocess.Popen(args, 1138 stdout, stderr = popen.communicate(input='') 1154 popen = subprocess.Popen(args, 1159 stdout, stderr = popen.communicate(input='')
|
/third_party/cups-filters/filter/ |
H A D | gstoraster.c | 604 FILE *pd = popen(gscommand, "r"); in count_pages()
|
/third_party/rust/crates/libc/src/unix/newlib/ |
H A D | mod.rs | 720 pub fn popen(command: *const c_char, mode: *const c_char) -> *mut ::FILE; in popen() functions
|
/third_party/rust/crates/libc/src/windows/ |
H A D | mod.rs | 412 pub fn popen(command: *const c_char, mode: *const c_char) -> *mut ::FILE; in popen() functions
|
/third_party/python/Lib/ |
H A D | os.py | 977 # Supply os.popen() 978 def popen(cmd, mode="r", buffering=-1): function 984 raise ValueError("popen() does not support unbuffered streams") 999 # Helper for popen() -- a proxy for a file whose close waits for the process 1022 __all__.append("popen")
|
/third_party/python/Lib/test/test_import/ |
H A D | __init__.py | 412 popen = script_helper.spawn_python(*args) 413 stdout, stderr = popen.communicate()
|
/third_party/alsa-lib/src/pcm/ |
H A D | pcm_file.c | 240 pipe = popen(file->final_fname + 1, "w"); in snd_pcm_file_open_output_file()
|
/third_party/lame/misc/ |
H A D | abx.c | 977 if ( (fp = popen (command, "r")) == NULL ) { in readwave()
|
/third_party/mesa3d/src/amd/vulkan/ |
H A D | radv_debug.c | 555 p = popen(cmd, "r"); in radv_dump_cmd()
|
/third_party/mesa3d/src/gallium/tests/trivial/ |
H A D | compute.c | 120 p = popen(cmd, "w"); in preprocess_prog()
|