Home
last modified time | relevance | path

Searched refs:subprocess (Results 1 – 25 of 26) sorted by relevance

12

/frameworks/base/tests/JankBench/scripts/
Dadbutil.py1 import subprocess
30 subprocess.call(args)
39 subprocess.call(["adb", "-s", serial, "root"])
42 subprocess.call(["adb", "-s", serial, "wait-for-device", "pull"] + [path] + [dest])
56 output = subprocess.check_output(full_args)
58 subprocess.call(full_args)
59 except subprocess.CalledProcessError:
/frameworks/rs/
Dupdate-prebuilts.py25 import subprocess
128 subprocess.check_call(
137 subprocess.check_call(cmd)
146 subprocess.check_call(
159 subprocess.check_call(['git', 'add', install_subdir])
173 subprocess.check_call(['git', 'commit', '-m', message])
Dbuild_rs.py24 import subprocess
90 subprocess.check_call(
112 subprocess.check_call(args)
191 subprocess.check_call(
/frameworks/base/libs/hwui/tests/scripts/
Dprocess_systrace.py3 import codecs, httplib, json, os, urllib, shutil, subprocess, sys, argparse
23 p = subprocess.Popen(git_args, stdout=subprocess.PIPE, cwd=script_dir)
/frameworks/compile/libbcc/gdb_plugin/
Dandroid-commands.py31 import subprocess
55 p = subprocess.Popen(stdout=subprocess.PIPE, stderr=subprocess.STDOUT, *popenargs, **kwargs)
62 e = subprocess.CalledProcessError(retcode, c)
149 p = subprocess.Popen(largs)
165 except subprocess.CalledProcessError, e:
242 except subprocess.CalledProcessError, e:
526 self.jdb_handle = subprocess.Popen(args, \
527 stdin=subprocess.PIPE)
530 self.jdb_handle = subprocess.Popen(args, \
531 stdin=subprocess.PIPE,
[all …]
/frameworks/base/services/tests/
Druntests.py18 import subprocess
37 return subprocess.check_call(shell_command, shell=True)
/frameworks/base/packages/SystemUI/scripts/
Dnew_merge.py9 from subprocess import call
10 from subprocess import Popen
11 from subprocess import PIPE
/frameworks/base/startop/scripts/app_startup/
Dapp_startup_runner.py33 import subprocess
226 proc = subprocess.Popen(cmd,
227 stderr=subprocess.STDOUT,
228 stdout=subprocess.PIPE,
232 except subprocess.TimeoutExpired:
Danalyze_metrics.py32 import subprocess
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/python/
Dsetup.py6 import subprocess
75 if subprocess.call(protoc_command) != 0:
159 status = subprocess.check_call(cmd, shell=True)
/frameworks/av/services/audiopolicy/engineconfigurable/tools/
DdomainGeneratorPolicy.py29 import subprocess
244 connector = subprocess.Popen(["domainGeneratorConnector",
249 stdout=sys.stdout, stdin=subprocess.PIPE, stderr=sys.stderr)
DbuildStrategiesStructureFile.py25 import subprocess
DbuildPolicyCriterionTypes.py25 import subprocess
/frameworks/compile/slang/tests/
Dslang_test.py28 import subprocess
150 GetOutDir.cache = subprocess.check_output(['bash', '-c',
289 ret = subprocess.call(args, stdout=stdout_file, stderr=stderr_file)
/frameworks/rs/tests/lldb/
Drun_tests.py23 import subprocess
403 EMU_PROC = subprocess.Popen(state.emu_cmd.split(),
405 stderr=subprocess.STDOUT)
523 return_code = subprocess.call(params)
759 proc = subprocess.Popen(params, stdout=subprocess.PIPE)
/frameworks/rs/tests/lldb/tests/harness/
Dutil_android.py22 import subprocess
661 proc = subprocess.Popen(command,
662 stdout=subprocess.PIPE,
663 stderr=subprocess.STDOUT,
/frameworks/compile/libbcc/tests/libbcc/
Dlit.cfg5 import subprocess
57 llvm_version_string = subprocess.check_output([
/frameworks/base/tools/velocityplot/
Dvelocityplot.py29 import subprocess
280 adb = subprocess.Popen(['adb', 'logcat', '-s', '-v', 'time', 'Input:*', 'VelocityTracker:*'],
281 stdout=subprocess.PIPE)
/frameworks/ml/nn/tools/test_generator/tests/
Dtest.py28 import subprocess
235 ret = subprocess.call(args, stdout=stdout_file, stderr=stderr_file)
/frameworks/ml/nn/tools/
Dsync_enums_to_hal.py34 import subprocess
223 subprocess.run(
/frameworks/base/tools/orientationplot/
Dorientationplot.py25 import subprocess
448 adb = subprocess.Popen(['adb', 'logcat', '-s', '-v', 'time', 'WindowOrientationListener:V'],
449 stdout=subprocess.PIPE)
/frameworks/native/cmds/surfacereplayer/replayer/trace_creator/
Dtrace_creator.py2 from subprocess import call
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/compiler/
Dcommand_line_interface.cc1570 Subprocess subprocess; in GeneratePluginOutput() local
1573 subprocess.Start(plugins_[plugin_name], Subprocess::EXACT_NAME); in GeneratePluginOutput()
1575 subprocess.Start(plugin_name, Subprocess::SEARCH_PATH); in GeneratePluginOutput()
1579 if (!subprocess.Communicate(request, &response, &communicate_error)) { in GeneratePluginOutput()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/cmake/
Dlibprotoc.cmake91 ${protobuf_source_dir}/src/google/protobuf/compiler/subprocess.cc
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/
DMakefile.am305 google/protobuf/compiler/subprocess.cc \
306 google/protobuf/compiler/subprocess.h \

12