HomeSort by relevance Sort by last modified time
    Searched refs:Popen (Results 1 - 25 of 523) 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")'])
  /cts/apps/CameraITS/tools/
wake_up_screen.py 38 process = subprocess.Popen(cmd.split(), stdout=subprocess.PIPE)
44 subprocess.Popen(wakeup.split())
48 subprocess.Popen(unlock.split())
55 subprocess.Popen(bright.split())
load_scene.py 34 subprocess.Popen(cmd.split())
50 subprocess.Popen(cmd.split())
58 subprocess.Popen(cmd.split())
turn_off_screen.py 33 process = subprocess.Popen(cmd.split(), stdout=subprocess.PIPE)
40 subprocess.Popen(wakeup.split())
  /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/v8/tools/gyp/test/no-cpp/
gyptest-no-cpp.py 30 proc = subprocess.Popen(['otool', '-L', path], stdout=subprocess.PIPE)
32 proc = subprocess.Popen(['ldd', path], stdout=subprocess.PIPE)
  /external/v8/tools/gyp/test/ios/app-bundle/TestApp/
check_no_signature.py 8 proc = subprocess.Popen(['codesign', '-v', p],
  /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/common/py_utils/py_utils/
xvfb.py 19 xvfb_process = subprocess.Popen(
  /external/v8/tools/gyp/test/ios/xctests/
gyptest-xctests.py 20 proc = subprocess.Popen(['security','find-identity','-p', 'codesigning',
  /external/v8/tools/gyp/test/mac/
gyptest-xctest.py 20 job = subprocess.Popen(['xcodebuild', '-version'],

Completed in 708 milliseconds

1 2 3 4 5 6 7 8 91011>>