Searched refs:popen (Results 26 - 50 of 83) sorted by relevance

1234

/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
H A Dexecutive.py99 child_process = self.popen(args,
276 ps_process = self.popen(['ps', '-eo', 'pid,comm'], stdout=self.PIPE, stderr=self.PIPE)
388 process = self.popen(args,
456 # The only required arugment to popen is named "args", the rest are optional keyword arguments.
457 def popen(self, args, **kwargs): member in class:Executive
H A Dexecutive_unittest.py121 executive.popen(command_line('echo', 1), stdout=executive.PIPE).wait()
127 executive.popen(args=command_line('echo', 1), stdout=executive.PIPE).wait()
H A Dexecutive_mock.py140 def popen(self, args, cwd=None, env=None, **kwargs): member in class:MockExecutive
149 _log.info("MOCK popen: %s%s%s" % (args, cwd_string, env_string))
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/test/
H A Dmain_unittest.py97 proc = executive.popen([sys.executable, filesystem.join(script_dir, 'test-webkitpy'), '-c', STUBS_CLASS + '.test_empty'],
/external/chromium_org/third_party/icu/source/tools/
H A Dicu-svnprops-check.py140 output_file = os.popen(cmd);
/external/chromium_org/v8/tools/testrunner/local/
H A Dcommands.py42 os.popen('taskkill /T /F /PID %d' % pid)
/external/icu/icu4c/source/tools/
H A Dicu-svnprops-check.py140 output_file = os.popen(cmd);
/external/qemu/android/kernel/
H A Dkernel_utils.cpp38 // Helper class to perform launch a command through popen() and call
43 mFile = ::popen(command, "r");
/external/bison/darwin-lib/
H A Dstdio.h1117 # undef popen
1118 # define popen rpl_popen
1120 _GL_FUNCDECL_RPL (popen, FILE *, (const char *cmd, const char *mode)
1122 _GL_CXXALIAS_RPL (popen, FILE *, (const char *cmd, const char *mode));
1125 _GL_FUNCDECL_SYS (popen, FILE *, (const char *cmd, const char *mode)
1128 _GL_CXXALIAS_SYS (popen, FILE *, (const char *cmd, const char *mode));
1130 _GL_CXXALIASWARN (popen);
1132 # undef popen macro
1134 _GL_WARN_ON_USE (popen, "popen i
[all...]
/external/bison/linux-lib/
H A Dstdio.h1117 # undef popen
1118 # define popen rpl_popen
1120 _GL_FUNCDECL_RPL (popen, FILE *, (const char *cmd, const char *mode)
1122 _GL_CXXALIAS_RPL (popen, FILE *, (const char *cmd, const char *mode));
1125 _GL_FUNCDECL_SYS (popen, FILE *, (const char *cmd, const char *mode)
1128 _GL_CXXALIAS_SYS (popen, FILE *, (const char *cmd, const char *mode));
1130 _GL_CXXALIASWARN (popen);
1132 # undef popen macro
1134 _GL_WARN_ON_USE (popen, "popen i
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/preprocs/cpp/
H A Dcpp-preproc.c141 pp->f = popen(cmdline, "r");
145 yasm__fatal( N_("Cannot execute preprocessor, no popen available") );
173 pp->f_deps = popen(cmdline, "r");
177 yasm__fatal( N_("Cannot execute preprocessor, no popen available") );
/external/bison/lib/
H A Dstdio.in.h805 # undef popen
806 # define popen rpl_popen
808 _GL_FUNCDECL_RPL (popen, FILE *, (const char *cmd, const char *mode)
810 _GL_CXXALIAS_RPL (popen, FILE *, (const char *cmd, const char *mode));
813 _GL_FUNCDECL_SYS (popen, FILE *, (const char *cmd, const char *mode)
816 _GL_CXXALIAS_SYS (popen, FILE *, (const char *cmd, const char *mode));
818 _GL_CXXALIASWARN (popen);
820 # undef popen
822 _GL_WARN_ON_USE (popen, "popen i
[all...]
/external/chromium_org/tools/generate_stubs/
H A Dgenerate_stubs.py451 popen = subprocess.Popen(args, stdout=subprocess.PIPE)
452 out, _ = popen.communicate()
456 return popen.returncode
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/
H A Dbisect_test_ordering.py150 output = self.executive.popen([path_to_run_webkit_tests, '--child-processes', '1', '--order', 'none', '--no-retry', '--no-show-results', '--verbose'] + extra_args + tests, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
/external/chromium_org/third_party/libxml/src/
H A Dcheck-xinclude-test-suite.py119 diff = os.popen("diff %s xinclude.res" % outputfile).read()
/external/jsoncpp/test/
H A Drunjsontests.py56 pipe = os.popen( "%s%s %s %s" % (
/external/linux-tools-perf/perf-3.12.0/tools/perf/ui/browsers/
H A Dscripts.c151 fp = popen(cmd, "r");
/external/skia/tools/
H A Dmisc_utils.py117 def popen(self, *args, **kwargs): member in class:VerboseSubprocess
/external/wpa_supplicant_8/hs20/server/www/
H A Dest.php146 $handle = popen("openssl x509 -in $cert_pem -serial -noout", "r");
/external/oprofile/
H A Doprofile_android60 popen = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
63 stdout, stderr = popen.communicate()
70 rc = popen.poll()
/external/chromium_org/tools/gyp/test/lib/
H A DTestCmd.py1183 def finish(self, popen, **kw):
1186 the specified popen argument, recording the exit status,
1189 popen.stdin.close()
1190 self.status = popen.wait()
1193 self._stdout.append(popen.stdout.read())
1194 if popen.stderr:
1195 stderr = popen.stderr.read()
H A DTestCommon.py474 def finish(self, popen, stdout = None, stderr = '', status = 0, **kw):
477 the specified popen argument. Additional arguments are similar
492 apply(TestCmd.finish, (self, popen,), kw)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/w3c/
H A Ddeps_updater.py143 proc = self.executive.popen(cmd, stdout=self.executive.PIPE, stderr=self.executive.PIPE)
/external/chromium_org/third_party/tcmalloc/chromium/src/windows/
H A Dport.h384 inline FILE *popen(const char *command, const char *type) { function
/external/chromium_org/third_party/tcmalloc/vendor/src/windows/
H A Dport.h381 inline FILE *popen(const char *command, const char *type) { function

Completed in 742 milliseconds

1234