| /OK3568_Linux_fs/yocto/meta-openembedded/meta-python/recipes-devtools/python/python3-grpcio/ |
| H A D | 0001-setup.py-Do-not-mix-C-and-C-compiler-options.patch | 44 stdin=PIPE, 45 stdout=PIPE, 46 stderr=PIPE) 53 stdin=PIPE, 54 stdout=PIPE, 55 stderr=PIPE) 67 stdin=subprocess.PIPE, 68 stdout=subprocess.PIPE, 69 stderr=subprocess.PIPE)
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-python/recipes-devtools/python/python3-prctl/ |
| H A D | 0001-support-cross-complication.patch | 37 - subprocess.call(['gcc','-v'], stdout=subprocess.PIPE, stderr=subprocess.PIPE) 42 -sp = subprocess.Popen(['cpp'], stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PI… 48 -sp = subprocess.Popen(['cpp'], stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PI…
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-python/recipes-devtools/python/python3-grpcio-tools/ |
| H A D | 0001-setup.py-Do-not-mix-C-and-C-compiler-options.patch | 42 stdin=PIPE, 43 stdout=PIPE, 44 stderr=PIPE) 51 stdin=PIPE, 52 stdout=PIPE, 53 stderr=PIPE)
|
| /OK3568_Linux_fs/yocto/poky/scripts/tiny/ |
| H A D | ksize.py | 30 … p = Popen("size -t " + str(glob), shell=True, stdout=PIPE, stderr=PIPE, universal_newlines=True) 52 shell=True, stdout=PIPE, stderr=PIPE, universal_newlines=True) 59 … p = Popen("ls " + subglob, shell=True, stdout=PIPE, stderr=PIPE, universal_newlines=True)
|
| H A D | ksum.py | 76 p = Popen("size -t " + filename, shell=True, stdout=PIPE, stderr=PIPE) 92 p = Popen("size -t " + vmlinux_file, shell=True, stdout=PIPE, stderr=PIPE)
|
| /OK3568_Linux_fs/buildroot/package/pcm-tools/ |
| H A D | 0001-Look-for-pcm-core-at-the-default-path.patch | 35 - p = subprocess.Popen(['./pcm-core.exe -c'],stdout=subprocess.PIPE,shell=True) 37 - p = subprocess.Popen(['pcm-core.exe -c'],stdout=subprocess.PIPE,shell=True) 39 - p = subprocess.Popen(['./pcm-core.x -c'],stdout=subprocess.PIPE,shell=True) 40 + p = subprocess.Popen(['/usr/bin/pcm-core -c'],stdout=subprocess.PIPE,shell=True)
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/toaster/toastermain/ |
| H A D | settings.py | 223 …| tr -d "* "', cwd = SITE_ROOT, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE).commun… 224 …-parse HEAD ', cwd = SITE_ROOT, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE).commun…
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oe/ |
| H A D | gpg_sign.py | 91 job = subprocess.Popen(cmd, stdin=subprocess.PIPE, stderr=subprocess.PIPE) 123 status = subprocess.run(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
| H A D | terminal.py | 276 shell=True,stdout=sub.PIPE,stderr=sub.PIPE) 296 p = sub.Popen(['sh', '-c', cmdversion], stdout=sub.PIPE, stderr=sub.PIPE, env=newenv)
|
| H A D | lsb.py | 33 from subprocess import PIPE 36 output, err = bb.process.run(['lsb_release', '-ir'], stderr=PIPE)
|
| /OK3568_Linux_fs/kernel/tools/perf/util/ |
| H A D | setup.py | 2 from subprocess import Popen, PIPE 6 cc_is_clang = b"clang version" in Popen([cc.split()[0], "-v"], stderr=PIPE).stderr.readline() 10 …cc_output = Popen([cc, option, path.join(src_feature_tests, "test-hello.c") ], stderr=PIPE).stderr…
|
| /OK3568_Linux_fs/kernel/arch/powerpc/xmon/ |
| H A D | spu-opc.c | 25 #define APUOP(TAG,MACFORMAT,OPCODE,MNEMONIC,ASMFORMAT,DEP,PIPE) \ argument 27 #define APUOPFB(TAG,MACFORMAT,OPCODE,FB,MNEMONIC,ASMFORMAT,DEP,PIPE) \ argument
|
| H A D | spu.h | 62 #define APUOP(TAG,MACFORMAT,OPCODE,MNEMONIC,ASMFORMAT,DEP,PIPE) \ argument 64 #define APUOPFB(TAG,MACFORMAT,OPCODE,FB,MNEMONIC,ASMFORMAT,DEP,PIPE) \ argument
|
| /OK3568_Linux_fs/yocto/poky/meta/classes/ |
| H A D | chrpath.bbclass | 52 stderr=subprocess.PIPE, universal_newlines=True) 59 p = sub.Popen([d.expand("${HOST_PREFIX}otool"), '-L', fpath],stdout=sub.PIPE,stderr=sub.PIPE) 75 …HOST_PREFIX}install_name_tool"), '-change', rpath, newpath, fpath],stdout=sub.PIPE,stderr=sub.PIPE)
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/runtime/cases/ |
| H A D | ping.py | 5 from subprocess import Popen, PIPE 20 proc = Popen(cmd, shell=True, stdout=PIPE)
|
| H A D | boot.py | 5 from subprocess import Popen, PIPE 25 proc = Popen(cmd, shell=True, stdout=PIPE)
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/toaster/bldcollector/ |
| H A D | views.py | 40 …process.Popen([import_script, abstemppath], stdout=subprocess.PIPE, stderr=subprocess.PIPE, env=sc…
|
| /OK3568_Linux_fs/kernel/scripts/kconfig/tests/ |
| H A D | conftest.py | 66 stdin=subprocess.PIPE, 67 stdout=subprocess.PIPE, 68 stderr=subprocess.PIPE,
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/net/ |
| H A D | devlink_port_split.py | 4 from subprocess import PIPE, Popen 30 p = Popen(cmd, stdout=PIPE, stderr=PIPE, shell=True)
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/toaster/tests/commands/ |
| H A D | test_runbuilds.py | 69 stdout=subprocess.PIPE, 70 stderr=subprocess.PIPE)
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/tc-testing/plugin-lib/ |
| H A D | buildebpfPlugin.py | 55 stdout=subprocess.PIPE, 56 stderr=subprocess.PIPE,
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-python/recipes-extended/python-blivet/python3-blivet/ |
| H A D | 0002-run_program-support-timeout.patch | 51 stderr_dir = subprocess.PIPE 55 - stdout=subprocess.PIPE, 84 + stdout=subprocess.PIPE,
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/selftest/cases/ |
| H A D | runcmd.py | 72 … result = runCmd("echo stdout; echo stderr >&2", shell=True, stderr=subprocess.PIPE, sync=False) 90 …nCmd(['sleep', '60'], timeout=self.TIMEOUT, ignore_status=True, stderr=subprocess.PIPE, sync=False) 120 …Cmd("echo stdout; echo stderr >&2", shell=True, output_log=log, stderr=subprocess.PIPE, sync=False)
|
| /OK3568_Linux_fs/u-boot/tools/patman/ |
| H A D | cros_subprocess.py | 27 PIPE = subprocess.PIPE variable 390 plist = Popen(both_cmds, stdout=subprocess.PIPE, stderr=subprocess.PIPE,
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/ |
| H A D | process.py | 64 "stdout": subprocess.PIPE, 65 "stderr": subprocess.PIPE, 66 "stdin": subprocess.PIPE,
|