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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/gdb/darwin-x86/lib/python2.7/test/subprocessdata/
sigchild_ignore.py 6 subprocess.Popen([sys.executable, '-c', 'print("albatross")']).wait()
8 p = subprocess.Popen([sys.executable, '-c', 'print("albatross")'])
  /prebuilts/gdb/linux-x86/lib/python2.7/test/subprocessdata/
sigchild_ignore.py 6 subprocess.Popen([sys.executable, '-c', 'print("albatross")']).wait()
8 p = subprocess.Popen([sys.executable, '-c', 'print("albatross")'])
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/subprocessdata/
sigchild_ignore.py 6 subprocess.Popen([sys.executable, '-c', 'print("albatross")']).wait()
8 p = subprocess.Popen([sys.executable, '-c', 'print("albatross")'])
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/subprocessdata/
sigchild_ignore.py 6 subprocess.Popen([sys.executable, '-c', 'print("albatross")']).wait()
8 p = subprocess.Popen([sys.executable, '-c', 'print("albatross")'])
  /external/selinux/policycoreutils/sepolicy/
test_sepolicy.py 5 from subprocess import Popen, PIPE
28 p = Popen(['sepolicy', 'manpage', '-d', 'httpd_t'], stdout=PIPE)
35 p = Popen(['sepolicy', 'manpage', '-a'], stdout=PIPE)
41 p = Popen(['sepolicy', 'network', '-l'], stdout=PIPE)
47 p = Popen(['sepolicy', 'network', '-t', 'http_port_t'], stdout=PIPE)
53 p = Popen(['sepolicy', 'network', '-p', '80'], stdout=PIPE)
59 p = Popen(['sepolicy', 'network', '-d', 'httpd_t'], stdout=PIPE)
65 p = Popen(['sepolicy', 'transition', '-s', 'httpd_t'], stdout=PIPE)
71 p = Popen(['sepolicy', 'transition', '-s', 'httpd_t', '-t', 'sendmail_t'], stdout=PIPE)
77 p = Popen(['sepolicy', 'booleans', '-a'], stdout=PIPE
    [all...]
  /external/selinux/policycoreutils/semanage/
test-semanage.py 6 from subprocess import Popen, PIPE
36 p = Popen(['semanage', object, '-E'], stdout=PIPE)
42 p = Popen(['semanage', "export", '-f', '/tmp/out'], stdout=PIPE)
46 p = Popen(["semanage", "export", "-S", "targeted", "-f", "-"], stdout=PIPE)
50 p = Popen(["semanage", "-S", "targeted", "-o", "-"], stdout=PIPE)
54 p = Popen(['semanage', "import", '-f', '/tmp/out'], stdout=PIPE)
58 p = Popen(["semanage", "import", "-S", "targeted", "-f", "/tmp/out"], stdout=PIPE)
62 p = Popen(["semanage", "-S", "targeted", "-i", "/tmp/out"], stdout=PIPE)
71 p = Popen(['semanage', object, '-l'], stdout=PIPE)
80 p = Popen(['semanage', object, '-lC'], stdout=PIPE
    [all...]
  /external/selinux/policycoreutils/sandbox/
test_sandbox.py 5 from subprocess import Popen, PIPE
28 p1 = Popen(['cat', '/etc/passwd'], stdout=PIPE)
29 p2 = Popen(['sandbox', 'grep', 'root'], stdin=p1.stdout, stdout=PIPE)
36 p = Popen(['sandbox', 'kill', '-HUP', str(pid)], stdout=PIPE, stderr=PIPE)
42 p = Popen(['sandbox', 'ping', '-c 1 ', '127.0.0.1'], stdout=PIPE, stderr=PIPE)
48 p = Popen(['sandbox', 'mkdir', '~/test'], stdout=PIPE, stderr=PIPE)
54 p = Popen(['sandbox', 'ls', '~'], stdout=PIPE, stderr=PIPE)
60 p = Popen(['sandbox', 'mail'], stdout=PIPE, stderr=PIPE)
66 p = Popen(['sandbox', 'sudo'], stdout=PIPE, stderr=PIPE)
72 p = Popen(['sandbox', '-M', 'id'], stdout=PIPE, stderr=PIPE
    [all...]
  /external/libcxx/test/libcxx/android/
build.py 13 return not subprocess.Popen(cmd, stdout=None, stderr=None, env=env).wait()
  /external/selinux/policycoreutils/audit2allow/
test_audit2allow.py 5 from subprocess import Popen, PIPE
28 p = Popen(['sudo', 'sepolgen-ifgen'], stdout=PIPE)
36 p = Popen(['audit2allow', "-i", "test.log"], stdout=PIPE)
44 p = Popen(['audit2why', "-i", "test.log"], stdout=PIPE)
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/libcxx/android/
build.py 13 return not subprocess.Popen(cmd, stdout=None, stderr=None, env=env).wait()
  /external/chromium-trace/catapult/telemetry/telemetry/util/mac/
keychain_helper.py 23 child = subprocess.Popen(path, stdout=subprocess.PIPE)
35 child = subprocess.Popen(command, stderr=subprocess.PIPE)
55 child = subprocess.Popen(command)
  /external/webrtc/webrtc/tools/e2e_quality/audio/
run_audio_test.py 56 proc = subprocess.Popen(command, stdout=subprocess.PIPE)
78 voe_proc = subprocess.Popen(command)
91 play_proc = subprocess.Popen(command)
96 record_proc = subprocess.Popen(command)
115 proc = subprocess.Popen(command, stdout=subprocess.PIPE)
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_subprocess.py 65 class PopenExecuteChildRaises(subprocess.Popen):
66 """Popen subclass for testing cleanup of subprocess.PIPE filehandles when
134 # Popen() called with invalid arguments should raise TypeError
135 # but Popen.__del__ should not complain (issue #12085)
137 self.assertRaises(TypeError, subprocess.Popen, invalid_arg_name=1)
138 argcount = subprocess.Popen.__init__.__code__.co_argcount
140 self.assertRaises(TypeError, subprocess.Popen, *too_many_args)
145 p = subprocess.Popen([sys.executable, "-c", 'print "banana"'],
163 code = ('import sys; from subprocess import Popen, PIPE;'
164 'p = Popen([sys.executable, "-c", "print \'test_stdout_none\'"],
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_subprocess.py 65 class PopenExecuteChildRaises(subprocess.Popen):
66 """Popen subclass for testing cleanup of subprocess.PIPE filehandles when
134 # Popen() called with invalid arguments should raise TypeError
135 # but Popen.__del__ should not complain (issue #12085)
137 self.assertRaises(TypeError, subprocess.Popen, invalid_arg_name=1)
138 argcount = subprocess.Popen.__init__.__code__.co_argcount
140 self.assertRaises(TypeError, subprocess.Popen, *too_many_args)
145 p = subprocess.Popen([sys.executable, "-c", 'print "banana"'],
163 code = ('import sys; from subprocess import Popen, PIPE;'
164 'p = Popen([sys.executable, "-c", "print \'test_stdout_none\'"],
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_subprocess.py 65 class PopenExecuteChildRaises(subprocess.Popen):
66 """Popen subclass for testing cleanup of subprocess.PIPE filehandles when
134 # Popen() called with invalid arguments should raise TypeError
135 # but Popen.__del__ should not complain (issue #12085)
137 self.assertRaises(TypeError, subprocess.Popen, invalid_arg_name=1)
138 argcount = subprocess.Popen.__init__.__code__.co_argcount
140 self.assertRaises(TypeError, subprocess.Popen, *too_many_args)
145 p = subprocess.Popen([sys.executable, "-c", 'print "banana"'],
163 code = ('import sys; from subprocess import Popen, PIPE;'
164 'p = Popen([sys.executable, "-c", "print \'test_stdout_none\'"],
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_subprocess.py 65 class PopenExecuteChildRaises(subprocess.Popen):
66 """Popen subclass for testing cleanup of subprocess.PIPE filehandles when
134 # Popen() called with invalid arguments should raise TypeError
135 # but Popen.__del__ should not complain (issue #12085)
137 self.assertRaises(TypeError, subprocess.Popen, invalid_arg_name=1)
138 argcount = subprocess.Popen.__init__.__code__.co_argcount
140 self.assertRaises(TypeError, subprocess.Popen, *too_many_args)
145 p = subprocess.Popen([sys.executable, "-c", 'print "banana"'],
163 code = ('import sys; from subprocess import Popen, PIPE;'
164 'p = Popen([sys.executable, "-c", "print \'test_stdout_none\'"],
    [all...]
  /external/skia/platform_tools/android/bin/
adb_list_devices.py 33 device_proc = subprocess.Popen([adb, '-s', serial, 'shell', 'cat',
92 if subprocess.Popen([adb, 'version'], stdout=subprocess.PIPE).wait() == 0:
97 if subprocess.Popen([adb, 'version'], stdout=subprocess.PIPE).wait() == 0:
103 if subprocess.Popen([adb, 'version'], stdout=subprocess.PIPE).wait() == 0:
112 if subprocess.Popen([adb, 'version'], stdout=subprocess.PIPE).wait() == 0:
133 proc = subprocess.Popen([adb, 'devices'], stdout=subprocess.PIPE)
  /external/chromium-trace/catapult/catapult_base/catapult_base/
xvfb.py 19 xvfb_process = subprocess.Popen(
  /external/webrtc/webrtc/build/
find_directx_sdk.py 34 p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
  /ndk/tests/
util.py 52 proc = subprocess.Popen(cmd, stdout=subprocess.PIPE,
  /external/autotest/client/profilers/sar/
sar.py 33 t_process = subprocess.Popen(t_cmd, shell=True,
58 self.sar_process = subprocess.Popen(cmd, shell=True, stdout=logfile,
  /external/autotest/client/site_tests/platform_AccurateTime/
platform_AccurateTime.py 22 self.server = subprocess.Popen([OPENSSL, 's_server', '-www',
28 proc = subprocess.Popen([TLSDATE, '-H', '127.0.0.1', '-p', '4433',
  /external/autotest/server/
autoupdate_utils.py 54 subprocess.Popen(cmd, shell=True, cwd=DEVSERVER_SRC)
64 subprocess.Popen(pkill_cmd, shell=True)
  /external/autotest/tko/
machine_test_attribute_graph.cgi 7 Popen = subprocess.Popen
  /external/chromium-trace/
update.py 24 p = subprocess.Popen(git_args, stdout=subprocess.PIPE, cwd=script_dir)
33 p = subprocess.Popen(git_args,

Completed in 5386 milliseconds

1 2 3 4 5 6 7 8 91011>>