HomeSort by relevance Sort by last modified time
    Searched refs:popen (Results 26 - 50 of 253) sorted by null

12 3 4 5 6 7 8 91011

  /external/oprofile/
opimport_pull 86 stream = os.popen("find raw_samples -type d -name \*\ \(deleted\)\* | sort -r")
102 stream = os.popen("find raw_samples -type f -name \*all")
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/test/test_tkinter/
test_loadtk.py 34 display = os.popen('echo $DISPLAY').read().strip()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/test/test_tkinter/
test_loadtk.py 34 display = os.popen('echo $DISPLAY').read().strip()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
platform.py 59 # 0.5.3 - added experimental MacOS support; added better popen()
66 # to cover up situations where platforms don't have os.popen
76 # 0.3.3 - fixed popen() and "file" command invokation bugs
367 """ Fairly portable (alternative) popen implementation.
369 This is mostly needed in case os.popen() is not available, or
384 raise ValueError,'popen()-emulation only supports read mode'
419 def popen(cmd, mode='r', bufsize=None): function
421 """ Portable popen() interface.
423 # Find a working popen implementation preferring win32pipe.popen
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
platform.py 59 # 0.5.3 - added experimental MacOS support; added better popen()
66 # to cover up situations where platforms don't have os.popen
76 # 0.3.3 - fixed popen() and "file" command invokation bugs
367 """ Fairly portable (alternative) popen implementation.
369 This is mostly needed in case os.popen() is not available, or
384 raise ValueError,'popen()-emulation only supports read mode'
419 def popen(cmd, mode='r', bufsize=None): function
421 """ Portable popen() interface.
423 # Find a working popen implementation preferring win32pipe.popen
    [all...]
  /external/chromium_org/tools/win/split_link/
split_link.py 187 popen = subprocess.Popen([link_exe, '@' + rspfile], stdout=subprocess.PIPE)
188 stdout, _ = popen.communicate()
189 if index == 0 and popen.returncode == 0 and intermediate_manifest:
195 return stdout, popen.returncode, output_name
201 popen = subprocess.Popen(
203 stdout, _ = popen.communicate()
  /bionic/libc/upstream-netbsd/lib/libc/gen/
popen.c 1 /* $NetBSD: popen.c,v 1.32 2012/06/25 22:32:43 abs Exp $ */
38 static char sccsid[] = "@(#)popen.c 8.3 (Berkeley) 5/3/95";
40 __RCSID("$NetBSD: popen.c,v 1.32 2012/06/25 22:32:43 abs Exp $");
63 __weak_alias(popen,_popen)
81 popen(const char *command, const char *type) function
128 /* POSIX.2 B.3.2.2 "popen() shall ensure that any streams
129 from previous popen() calls that remain open in the
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/servers/
apache_http.py 128 self._process = self._executive.popen(self._start_cmd)
156 proc = self._executive.popen([self._port_obj.path_to_apache(),
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/md/
sunos4.h 115 extern FILE *popen(const char *, const char *);
  /external/e2fsprogs/e2fsck/
badblocks.c 79 f = popen(buf, "r");
82 _("while trying popen '%s'"), buf);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
cygwinccompiler.py 448 out = os.popen(gcc_exe + ' -dumpversion','r')
456 out = os.popen(gcc_exe + ' --print-prog-name ld','r')
462 out = os.popen(ld_exe + ' -v','r')
474 out = os.popen(dllwrap_exe + ' --version','r')
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_select.py 33 p = os.popen(cmd, 'r')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
cygwinccompiler.py 448 out = os.popen(gcc_exe + ' -dumpversion','r')
456 out = os.popen(gcc_exe + ' --print-prog-name ld','r')
462 out = os.popen(ld_exe + ' -v','r')
474 out = os.popen(dllwrap_exe + ' --version','r')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_select.py 33 p = os.popen(cmd, 'r')
  /system/core/logcat/tests/
logcat_benchmark.cpp 28 ASSERT_TRUE(NULL != (fp = popen(
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
profiler.py 145 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)
executive.py 99 child_process = self.popen(args,
105 # Use our own custom wait loop because Popen ignores a tee'd
276 ps_process = self.popen(['ps', '-eo', 'pid,comm'], stdout=self.PIPE, stderr=self.PIPE)
349 # Popen in Python 2.5 and before does not automatically encode unicode objects.
381 """Popen wrapper for convenience and to work around python bugs."""
388 process = self.popen(args,
451 # Popen will throw an exception if args are non-strings (like int())
453 # The Windows implementation of Popen cannot handle unicode strings. :(
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
    [all...]
  /external/lldb/test/python_api/hello_world/
TestHelloWorld.py 140 popen = self.spawnSubprocess(self.exe, ["abc", "xyz"])
148 process = target.AttachToProcessWithID(listener, popen.pid, error)
165 popen = self.spawnSubprocess(self.exe, ["abc", "xyz"])
  /build/core/
checktree 53 fd = os.popen(command);
  /external/chromium_org/sdch/open-vcdiff/packages/deb/
rules 102 dh_installman -popen-vcdiff0 \
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/test/
main_unittest.py 112 proc = executive.popen([sys.executable, filesystem.join(script_dir, 'test-webkitpy'), '-c', STUBS_CLASS + '.test_empty'],
  /external/chromium_org/tools/valgrind/
gdb_helper.py 31 gdb_pipe = os.popen(gdb_commandline)
  /external/chromium_org/v8/tools/testrunner/local/
commands.py 42 os.popen('taskkill /T /F /PID %d' % pid)
78 process = subprocess.Popen(
  /external/fonttools/MetaTools/
roundTrip.py 47 output = os.popen(diffcmd, "r", 1)
  /external/qemu/android/kernel/
kernel_utils.cpp 38 // Helper class to perform launch a command through popen() and call
43 mFile = ::popen(command, "r");

Completed in 1148 milliseconds

12 3 4 5 6 7 8 91011