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

12 3 4 5 6 7 8 91011>>

  /external/clang/tools/clang-format/
clang-format-sublime.py 17 import subprocess namespace
41 p = subprocess.Popen(command, stdout=subprocess.PIPE,
42 stderr=subprocess.PIPE, stdin=subprocess.PIPE)
  /external/chromium/build/
compiler_version.py 15 import subprocess namespace
22 pipe = subprocess.Popen(compiler, stdout=subprocess.PIPE, shell=True)
  /external/chromium_org/printing/
cups_config_helper.py 19 import subprocess namespace
30 cups = subprocess.Popen(['cups-config', '--cflags', '--ldflags', '--libs'],
31 stdout=subprocess.PIPE)
  /external/chromium_org/tools/gyp/test/linux/
gyptest-implicit-rpath.py 14 import subprocess namespace
27 proc = subprocess.Popen(['readelf', '-d', p], stdout=subprocess.PIPE)
  /external/chromium_org/tools/gyp/test/mac/
gyptest-installname.py 15 import subprocess namespace
28 proc = subprocess.Popen(['otool', '-l', p], stdout=subprocess.PIPE)
gyptest-rpath.py 15 import subprocess namespace
28 proc = subprocess.Popen(['otool', '-l', p], stdout=subprocess.PIPE)
gyptest-strip.py 14 import subprocess namespace
31 proc = subprocess.Popen(['otool', '-l', p], stdout=subprocess.PIPE)
  /external/chromium_org/v8/tools/
run-valgrind.py 33 import subprocess namespace
48 process = subprocess.Popen(command, stderr=subprocess.PIPE)
disasm.py 32 import subprocess namespace
74 process = subprocess.Popen(command,
76 stdout=subprocess.PIPE,
77 stderr=subprocess.STDOUT)
  /external/v8/tools/
run-valgrind.py 33 import subprocess namespace
48 process = subprocess.Popen(command, stderr=subprocess.PIPE)
  /external/chromium_org/build/
protoc_java.py 22 import subprocess namespace
41 ret = subprocess.call(
  /external/chromium_org/chrome/test/pyautolib/
mock_pref_pane.py 10 import subprocess namespace
32 process = subprocess.Popen(['launchctl', 'list'], stdout=subprocess.PIPE)
49 subprocess.call([self._tool_script, '--enable'],
54 subprocess.call(['launchctl', 'start', self._service_name])
68 subprocess.call([self._tool_script, '--disable'],
73 subprocess.call(['launchctl', 'stop', self._service_name])
87 subprocess.call([self._tool_script, '--save-config'],
chromoting_helper.py 11 import subprocess namespace
54 subprocess.call('unzip remoting-me2me-host-mac.zip', shell=True)
55 subprocess.call('mkdir ' + output_dir, shell=True)
63 subprocess.call(['security', 'delete-keychain', key_chain])
64 subprocess.call(['security', 'create-keychain', '-p',
66 subprocess.call(['security', 'import', key,
68 subprocess.call(['security', 'import', cert,
74 subprocess.call(do_signing + ' ' + output_dir + ' ' + host_dir + ' ' +
79 subprocess.call(['security', 'delete-keychain', key_chain])
90 subprocess.call('hdiutil' + ' mount ' + dmg, shell=True
    [all...]
  /external/chromium_org/third_party/mesa/
redirectoutput.py 7 import subprocess namespace
25 ret = subprocess.Popen([sys.executable] + sys.argv[2:], stdout=f).wait()
  /external/chromium_org/third_party/protobuf/
protobuf_lite_java_descriptor_proto.py 22 import subprocess namespace
41 return subprocess.call(
  /external/chromium_org/webkit/tools/layout_tests/
run_http_server.py 9 import subprocess namespace
21 return subprocess.call(cmd)
  /external/skia/tools/
verify_images_for_gm_results.py 15 import subprocess namespace
55 output = subprocess.check_output(['svn', 'cat', json_file])
76 proc = subprocess.Popen(['svn', 'ls', url], stdout=subprocess.PIPE,
77 stderr=subprocess.STDOUT)
131 proc = subprocess.Popen(['gsutil', 'ls', url], stdout=subprocess.PIPE,
132 stderr=subprocess.STDOUT)
  /development/testrunner/
run_command.py 21 import subprocess namespace
39 """Spawn and retry a subprocess to run the given shell command.
66 """Spawns a subprocess to run the given shell command.
90 output_dest = subprocess.PIPE
95 stdin_dest = subprocess.PIPE
98 pipe = subprocess.Popen(
103 stderr=subprocess.STDOUT,
167 subproc = subprocess.Popen(binary, stdout=subprocess.PIPE,
168 stderr=subprocess.STDOUT
    [all...]
  /external/chromium_org/tools/python/google/
process_utils.py 8 import subprocess namespace
65 print '\n' + subprocess.list2cmdline(command).replace('\\', '/') + '\n', ###
68 out = subprocess.PIPE
69 err = subprocess.STDOUT
72 err = subprocess.PIPE
74 proc = subprocess.Popen(command, stdout=out, stderr=err, bufsize=1)
165 print '\n' + subprocess.list2cmdline(command).replace('\\', '/') + '\n',
168 out = subprocess.PIPE
169 err = subprocess.STDOUT
172 err = subprocess.PIP
    [all...]
  /external/chromium_org/tools/gyp/pylib/gyp/
win_tool.py 14 import subprocess namespace
74 popen = subprocess.Popen(args, shell=True, env=env,
75 stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
87 popen = subprocess.Popen(args, shell=True, env=env,
88 stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
119 popen = subprocess.Popen(args, shell=True, env=env,
120 stdout=subprocess.PIPE, stderr=subprocess.STDOUT
    [all...]
  /external/chromium_org/base/allocator/
prep_libc.py 19 import subprocess namespace
25 popen = subprocess.Popen(
26 command, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/steps/
haslanded_unittest.py 30 import subprocess namespace
38 @unittest.skipUnless(subprocess.call('which interdiff', shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE) == 0, "requires interdiff")
  /external/chromium_org/tools/compile_test/
compile_test.py 16 import subprocess namespace
50 cxx_popen = subprocess.Popen(cxx_cmdline,
51 stdout=subprocess.PIPE,
52 stderr=subprocess.PIPE)
  /external/chromium_org/tools/git/
git-diff-ide.py 21 import subprocess namespace
29 job = subprocess.Popen(args,
31 stdout=subprocess.PIPE,
32 stderr=subprocess.STDOUT)
  /external/chromium_org/tools/win/split_link/
graph_dependencies.py 7 import subprocess namespace
21 popen = subprocess.Popen(
28 popen = subprocess.Popen(
31 stdout=subprocess.PIPE,

Completed in 567 milliseconds

12 3 4 5 6 7 8 91011>>