Searched refs:subprocess (Results 1 - 25 of 507) sorted by last modified time

1234567891011>>

/external/vixl/tools/
H A Dtest.py33 import subprocess namespace
92 process = subprocess.Popen(command,
93 stdout=subprocess.PIPE,
94 stderr=subprocess.PIPE)
188 p = subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE,
189 stderr=subprocess.PIPE)
H A Dutil.py28 import subprocess namespace
38 # Emulate python3 subprocess.getstatusoutput.
42 output = subprocess.check_output(args, stderr=subprocess.STDOUT)
44 except subprocess.CalledProcessError as e:
/external/skia/tools/
H A Dfind_bad_images_in_skps.py27 import subprocess namespace
49 @param args is passed into subprocess.Popen().
60 proc = subprocess.Popen(
62 stdout=subprocess.PIPE,
63 stderr=subprocess.STDOUT)
122 subprocess.call(args, stderr=open(os.devnull,'w'),
H A Dfind_run_binary.py10 import subprocess namespace
27 proc = subprocess.Popen(args,
28 stdout=subprocess.PIPE,
29 stderr=subprocess.PIPE)
H A Dgen_bench_expectations_from_codereview.py16 import subprocess namespace
88 subprocess.check_call(['gsutil', 'cp', '-R', url, dest_dir],
89 stdout=subprocess.PIPE,
90 stderr=subprocess.PIPE)
147 except subprocess.CalledProcessError:
163 subprocess.check_call(['python',
168 except subprocess.CalledProcessError:
H A Dgit-sync-deps34 import subprocess namespace
60 disable = subprocess.check_output(
63 except subprocess.CalledProcessError:
77 toplevel = subprocess.check_output(
80 except subprocess.CalledProcessError:
104 subprocess.check_call(
118 subprocess.check_call([git, 'fetch', '--quiet'], cwd=directory)
120 subprocess.check_call(
H A Dgit_utils.py10 import subprocess namespace
44 subprocess.CalledProcessError: git returned unexpected status.
129 except (subprocess.CalledProcessError,):
144 subprocess.call([git, '--version'], stdout=devnull)
159 A string suiable for passing to subprocess functions, or None.
H A Dmerge_static_libs.py8 import subprocess namespace
32 proc = subprocess.Popen([ar, '-t', in_lib], stdout=subprocess.PIPE)
36 proc = subprocess.Popen([ar, '-x', in_lib], stdout=subprocess.PIPE,
37 stderr=subprocess.STDOUT)
50 if not subprocess.call([ar, '-crs', out_lib] + objects) == 0:
54 subprocess.call(['lib', '/OUT:%s' % out_lib] + in_libs)
H A Dmisc_utils.py12 import subprocess namespace
30 """Call subprocess methods, but print out command before executing.
34 not, this is the same as calling the subprocess method
45 """Wrapper for subprocess.check_call().
48 *args: to be passed to subprocess.check_call()
49 **kwargs: to be passed to subprocess.check_call()
51 Whatever subprocess.check_call() returns.
53 OSError or subprocess.CalledProcessError: raised by check_call.
59 return subprocess.check_call(*args, stdout=devnull, **kwargs)
61 return subprocess
[all...]
H A Droll_deps.py31 import subprocess namespace
219 except (OSError, subprocess.CalledProcessError) as error:
246 subprocess.CalledProcessError: git returned unexpected status.
272 subprocess.CalledProcessError: git returned unexpected status.
299 subprocess.CalledProcessError: git returned unexpected status.
408 subprocess.CalledProcessError: git returned unexpected status.
495 subprocess.CalledProcessError: git returned unexpected status.
H A Dsubmit_try21 import subprocess namespace
63 proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
74 proc = subprocess.Popen(cmd, stdout=subprocess.PIPE,
75 stderr=subprocess.STDOUT)
251 proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess
[all...]
H A Dsvn.py11 import subprocess namespace
34 proc = subprocess.Popen([SVN, 'cat', svn_url],
35 stdout=subprocess.PIPE,
36 stderr=subprocess.STDOUT)
68 proc = subprocess.Popen(args, cwd=self._directory,
69 stdout=subprocess.PIPE,
70 stderr=subprocess.PIPE)
H A Dsvndiff.py25 import subprocess namespace
180 proc = subprocess.Popen(args,
181 stdout=subprocess.PIPE,
182 stderr=subprocess.PIPE)
217 proc = subprocess.Popen(args, stdout=outfile)
H A Dtest_gpuveto.py14 import subprocess namespace
44 @param args: is passed into subprocess.Popen().
48 proc = subprocess.Popen(args, stdout=subprocess.PIPE,
49 stderr=subprocess.STDOUT)
/external/skia/tools/skpdiff/
H A Dskpdiff_server.py11 import subprocess namespace
169 git_show_proc = subprocess.Popen(['git', 'show', 'HEAD:' + git_path],
170 stdout=subprocess.PIPE)
/external/skia/tools/tests/
H A Dskimage_self_test.py10 import subprocess namespace
51 result = subprocess.call(args)
63 result = subprocess.call(args)
69 output = subprocess.check_output([skimage_binary, "--readPath", invalid_file,
72 stderr=subprocess.STDOUT)
83 output = subprocess.check_output([skimage_binary, "--readPath", invalid_file,
86 stderr=subprocess.STDOUT)
108 result = subprocess.call(args)
113 subprocess.check_call([skimage_binary, "--readPath", valid_file,
131 subprocess
[all...]
/external/sepolicy/tools/
H A Dpost_process_mac_perms30 import subprocess namespace
45 p = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE,
46 stderr=subprocess.PIPE)
/external/skia/experimental/benchtools/
H A Dgreenify.py25 import subprocess namespace
46 if subprocess.call(['git', 'pull'],
47 stderr=subprocess.PIPE):
52 if subprocess.call(['git', 'clone', '-q', '--depth=50', '--single-branch',
55 subprocess.call(['git', 'checkout', 'master'])
56 subprocess.call(['git', 'pull'])
88 if subprocess.call(cmd):
90 subprocess.call(['git', 'checkout', 'master'])
155 if not subprocess.call(['git', 'rev-parse'], stderr=subprocess
[all...]
H A Drebase.py24 import subprocess namespace
63 proc = subprocess.Popen(['gsutil', 'ls',
65 stdout=subprocess.PIPE)
73 proc = subprocess.Popen(['gsutil', 'cp',
76 stdout=subprocess.PIPE)
93 proc = subprocess.Popen(['python', 'skia/bench/gen_bench_expectations.py',
96 stdout=subprocess.PIPE)
114 if subprocess.call(['git', 'pull'],
115 stderr=subprocess.PIPE):
120 if subprocess
[all...]
/external/skia/gm/rebaseline_server/
H A Dcompare_rendered_pictures_test.py22 import subprocess namespace
79 return subprocess.check_output([
101 return subprocess.check_output([
H A Dserver.py22 import subprocess namespace
110 proc = subprocess.Popen(args, cwd=directory,
111 stdout=subprocess.PIPE,
112 stderr=subprocess.PIPE)
/external/skia/platform_tools/android/bin/
H A Dadb_list_devices.py13 import subprocess namespace
33 device_proc = subprocess.Popen([adb, '-s', serial, 'shell', 'cat',
34 INFO_FILE], stdout=subprocess.PIPE)
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
[all...]
/external/regex-re2/lib/codereview/
H A Dcodereview.py57 import subprocess namespace
907 cmd = subprocess.Popen(["gofmt", "-l"] + files, shell=False, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE, close_fds=sys.platform != "win32")
1597 cmd = subprocess.Popen(argv, shell=False, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=None, close_fds=sys.platform != "win32")
2667 import subprocess namespace
3126 p = subprocess
[all...]
/external/protobuf/python/
H A Dsetup.py14 import subprocess namespace
49 if subprocess.call(protoc_command) != 0:
/external/protobuf/src/
H A DMakefile.am135 google/protobuf/compiler/subprocess.cc \
136 google/protobuf/compiler/subprocess.h \

Completed in 1212 milliseconds

1234567891011>>