Searched refs:popen (Results 1 - 25 of 83) sorted by path

1234

/external/antlr/antlr-3.4/runtime/Python/tests/
H A Dtestbase.py163 fp = os.popen(cmd)
226 # fp = os.popen(cmd)
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
H A Dgrammar.rb177 output = IO.popen( command ) do |pipe|
/external/bison/
H A Dconfigure30450 for gl_func in dprintf fpurge fseeko ftello getdelim getline gets pclose popen renameat snprintf tmpfile vdprintf vsnprintf; do
/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/lib/
H A Dstdio--.h39 # undef popen macro
40 # define popen popen_safer macro
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/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/base/allocator/
H A Dprep_libc.py25 popen = subprocess.Popen(
27 out, _ = popen.communicate()
31 return popen.returncode
/external/chromium_org/build/android/pylib/utils/
H A Demulator.py211 popen: Popen object of the running emulator process.
239 self.popen = None
364 self.popen = subprocess.Popen(args=emulator_command,
411 self.popen.poll()
412 if self.popen.returncode != None:
428 if self.popen:
429 self.popen.poll()
430 if self.popen.returncode == None:
431 self.popen.kill()
432 self.popen
[all...]
/external/chromium_org/build/
H A Dextract_from_cab.py16 popen = subprocess.Popen(args, stdout=subprocess.PIPE)
17 out, _ = popen.communicate()
18 if popen.returncode:
21 return popen.returncode
/external/chromium_org/remoting/tools/
H A Dzip2msi.py182 popen = subprocess.Popen(
184 out, _ = popen.communicate()
185 if popen.returncode:
189 print '%s returned %d' % (args[0], popen.returncode)
190 return popen.returncode
/external/chromium_org/sdch/open-vcdiff/packages/deb/
H A Drules102 dh_installman -popen-vcdiff0 \
/external/chromium_org/testing/gtest/scripts/
H A Dcommon.py49 f = os.popen(command, 'r')
/external/chromium_org/third_party/WebKit/Tools/Scripts/
H A Dbencher858 IO.popen("svn info", "r") {
1308 IO.popen("sh ./runscript", "r") {
2033 IO.popen(cmd, "r") {
2048 IO.popen(cmd, "w") {
/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_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))
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 Dprofiler.py145 self._perf_process = self._host.executive.popen(cmd)
185 self._profiler_process = self._host.executive.popen(cmd)
205 self._profiler_process = self._host.executive.popen(cmd)
/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/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
H A Dandroid.py719 self._perf_process = self._host.executive.popen(cmd)
929 self._port.host.executive.popen(self._android_commands.adb_command() + ['shell', MD5SUM_DEVICE_PATH, device_file],
932 self._port.host.executive.popen(args=['%s_host' % self._md5sum_path, host_file],
H A Dbase.py1116 self._helper = self._executive.popen([helper_path],
H A Dserver_process.py139 self._proc = self._host.executive.popen(self._cmd, stdin=self._host.executive.PIPE,
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/servers/
H A Dapache_http.py129 self._process = self._executive.popen(self._start_cmd, stderr=self._executive.PIPE)
158 proc = self._executive.popen([self._port_obj.path_to_apache(),
H A Dserver_base.py165 process = self._executive.popen(self._start_cmd, env=self._env, stdout=self._stdout, stderr=self._stderr)
/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'],

Completed in 597 milliseconds

1234