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

1 2 3 4 5 6 7 8 91011

  /external/bison/lib/
stdio--.h 39 # undef popen macro
40 # define popen popen_safer macro
  /external/chromium_org/tools/win/split_link/
graph_dependencies.py 21 popen = subprocess.Popen(
24 popen.communicate()
25 if popen.returncode != 0:
26 return popen.returncode
28 popen = subprocess.Popen(
33 out, _ = popen.communicate()
34 if popen.returncode != 0:
35 return popen.returncod
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_popen.py 2 """Basic tests for os.popen()
4 Particularly useful for platforms that fake popen.
21 data = os.popen(cmd).read() + '\n'
26 self.assertRaises(TypeError, os.popen)
42 self.assertEqual(os.popen("exit 0").close(), None)
44 self.assertEqual(os.popen("exit 42").close(), 42)
46 self.assertEqual(os.popen("exit 42").close(), 42 << 8)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_popen.py 2 """Basic tests for os.popen()
4 Particularly useful for platforms that fake popen.
21 data = os.popen(cmd).read() + '\n'
26 self.assertRaises(TypeError, os.popen)
42 self.assertEqual(os.popen("exit 0").close(), None)
44 self.assertEqual(os.popen("exit 42").close(), 42)
46 self.assertEqual(os.popen("exit 42").close(), 42 << 8)
  /external/chromium_org/tools/git/
mass-rename.py 26 popen = subprocess.Popen('git diff --cached --raw -M',
28 out, _ = popen.communicate()
29 if popen.returncode != 0:
  /external/chromium_org/build/
extract_from_cab.py 16 popen = subprocess.Popen(args, stdout=subprocess.PIPE)
17 out, _ = popen.communicate()
18 if popen.returncode:
21 return popen.returncode
  /external/chromium_org/base/allocator/
prep_libc.py 25 popen = subprocess.Popen(
27 out, _ = popen.communicate()
31 return popen.returncode
  /external/chromium_org/tools/gyp/pylib/gyp/
win_tool.py 119 link = subprocess.Popen(args,
211 popen = subprocess.Popen(args, shell=True, env=env,
213 out, _ = popen.communicate()
217 return popen.returncode
243 popen = subprocess.Popen(args, shell=True, env=env,
245 out, _ = popen.communicate()
257 return popen.returncode
265 popen = subprocess.Popen(args, shell=True, env=env
    [all...]
  /external/lldb/test/benchmarks/disassembly/
TestDoAttachThenDisassembly.py 37 popen = subprocess.Popen([exe, self.lldbOption],
40 print "pid of spawned process: %d" % popen.pid
45 process = target.AttachToProcessWithID(listener, popen.pid, error)
  /external/lldb/test/functionalities/process_attach/
TestProcessAttach.py 52 popen = self.spawnSubprocess(exe)
55 self.runCmd("process attach -p " + str(popen.pid))
69 popen = self.spawnSubprocess(exe)
  /build/tools/
adbs 35 stream = os.popen(adb_cmd)
  /system/core/logcat/tests/
logcat_test.cpp 48 ASSERT_TRUE(NULL != (fp = popen(
78 ASSERT_TRUE(NULL != (fp = popen(
102 ASSERT_TRUE(NULL != (fp = popen(
126 ASSERT_TRUE(NULL != (fp = popen(
150 ASSERT_TRUE(NULL != (fp = popen(
174 ASSERT_TRUE(NULL != (fp = popen("logcat -v long -b all -t 10 2>&1", "r")));
204 ASSERT_TRUE(NULL != (fp = popen(buffer, "r")));
245 ASSERT_TRUE(NULL != (fp = popen(
277 ASSERT_TRUE(NULL != (fp = popen(
365 ASSERT_TRUE(NULL != (fp = popen(
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/
util.py 112 f = os.popen(cmd)
137 f = os.popen(cmd)
153 f = os.popen(cmd)
158 f = os.popen(cmd)
186 f = os.popen('/sbin/ldconfig -r 2>/dev/null')
208 for line in os.popen(cmd).readlines():
245 f = os.popen('/sbin/ldconfig -p 2>/dev/null')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/
util.py 112 f = os.popen(cmd)
137 f = os.popen(cmd)
153 f = os.popen(cmd)
158 f = os.popen(cmd)
186 f = os.popen('/sbin/ldconfig -r 2>/dev/null')
208 for line in os.popen(cmd).readlines():
245 f = os.popen('/sbin/ldconfig -p 2>/dev/null')
  /external/chromium_org/build/android/pylib/utils/
emulator.py 211 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
    [all...]
  /cts/tests/tests/drm/jni/
android_drm_cts_NativeCodeTest.cpp 33 FILE *f = popen("service call drm.drmManager 6 i32 0 i32 31 i32 1937339183 i32 795698548 "
  /external/chromium_org/testing/gtest/scripts/
common.py 49 f = os.popen(command, 'r')
  /external/e2fsprogs/include/nonunix/
unistd.h 15 #define popen _popen macro
  /external/valgrind/main/none/tests/
coolo_sigaction.cpp 45 FILE *p = popen("echo Hallo World", "r");
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
commands.py 1 """Execute shell commands via os.popen() and return status, output.
15 pipe = os.popen('{ ' + cmd + '; } 2>&1', 'r')
59 pipe = os.popen('{ ' + cmd + '; } 2>&1', 'r')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
commands.py 1 """Execute shell commands via os.popen() and return status, output.
15 pipe = os.popen('{ ' + cmd + '; } 2>&1', 'r')
59 pipe = os.popen('{ ' + cmd + '; } 2>&1', 'r')
  /external/chromium_org/remoting/tools/
zip2msi.py 182 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/tools/telemetry/third_party/pyserial/serial/tools/
list_ports_linux.py 19 def popen(argv): function
26 def popen(argv): function
84 desc = popen(['lsusb', '-v', '-s', '%s:%s' % (bus, dev)])
  /external/lldb/test/functionalities/thread/create_after_attach/
TestCreateAfterAttach.py 57 popen = self.spawnSubprocess(exe)
58 pid = popen.pid
  /cts/suite/audio_quality/lib/src/
SimpleScriptExec.cpp 76 if ( !(fpipe = (FILE*)popen(command.string(),"r")) ) {

Completed in 1291 milliseconds

1 2 3 4 5 6 7 8 91011