Home
last modified time | relevance | path

Searched refs:_RunCommand (Results 1 – 8 of 8) sorted by relevance

/external/libyuv/files/tools_libyuv/autoroller/
Droll_deps.py99 def _RunCommand(command, working_dir=None, ignore_exit_code=False, function
137 lines = _RunCommand(['git', 'branch'])[0].split('\n')
259 stdout, _ = _RunCommand(['git', 'ls-remote', libyuv_deps_entry.url,
323 git_author = _RunCommand(['git', 'config', 'user.email'],
351 _RunCommand(
357 stdout, _ = _RunCommand(['git', 'status', '--porcelain'])
366 current_branch = _RunCommand(
374 _RunCommand(['git', 'pull'])
380 _RunCommand(['git', 'checkout', '-b', ROLL_BRANCH_NAME])
390 _RunCommand(['git', 'checkout', active_branch])
[all …]
/external/angle/scripts/
Droll_chromium_deps.py177 def _RunCommand(command, working_dir=None, ignore_exit_code=False, extra_env=None, function
218 lines = _RunCommand(['git', 'branch'])[0].split('\n')
385 stdout, _ = _RunCommand(['git', 'ls-remote', ChromeURL(angle_deps_entry), 'HEAD'])
488 git_author = _RunCommand(['git', 'config', 'user.email'],
550 _RunCommand([gclient_cmd, 'setdep', '--revision', update], working_dir=CHECKOUT_SRC_DIR)
554 stdout, _ = _RunCommand(['git', 'status', '--porcelain'])
563 current_branch = _RunCommand(['git', 'rev-parse', '--abbrev-ref', 'HEAD'])[0].splitlines()[0]
570 _RunCommand(['git', 'pull'])
576 _RunCommand(['git', 'checkout', '-b', ROLL_BRANCH_NAME])
586 _RunCommand(['git', 'checkout', active_branch])
[all …]
/external/webrtc/tools_webrtc/autoroller/
Droll_deps.py135 def _RunCommand(command, working_dir=None, ignore_exit_code=False, function
173 lines = _RunCommand(['git', 'branch'])[0].split('\n')
393 stdout, _ = _RunCommand(['git', 'ls-remote', webrtc_deps_entry.url,
489 git_author = _RunCommand(['git', 'config', 'user.email'],
541 _RunCommand(['gclient', 'setdep', '--revision', update],
546 stdout, _ = _RunCommand(['git', 'status', '--porcelain'])
555 current_branch = _RunCommand(
563 _RunCommand(['git', 'pull'])
569 _RunCommand(['git', 'checkout', '-b', ROLL_BRANCH_NAME])
579 _RunCommand(['git', 'checkout', active_branch])
[all …]
/external/chromium-trace/catapult/common/py_utils/py_utils/
Dcloud_storage.py126 def _RunCommand(args): function
220 stdout = _RunCommand(['ls', full_path])
244 stdout = _RunCommand(['ls', '-d', full_path])
257 _RunCommand(['ls', 'gs://%s/%s' % (bucket, remote_path)])
267 _RunCommand(['mv', url1, url2])
285 _RunCommand(['cp', url1, url2])
291 _RunCommand(['rm', url])
408 _RunCommand(['cp', url, partial_download_path.name])
411 _RunCommand(['cp', url, partial_download_path.name])
476 _RunCommand(command_and_args)
Dcloud_storage_unittest.py67 self.assertRaises(error, cloud_storage._RunCommand, [])
92 orig_run_command = cloud_storage._RunCommand
94 cloud_storage._RunCommand = self._FakeRunCommand
103 cloud_storage._RunCommand = orig_run_command
106 orig_run_command = cloud_storage._RunCommand
108 cloud_storage._RunCommand = self._FakeRunCommand
119 cloud_storage._RunCommand = orig_run_command
161 orig_run_command = cloud_storage._RunCommand
165 cloud_storage._RunCommand = AssertCorrectRunCommandArgs
171 cloud_storage._RunCommand = orig_run_command
/external/webrtc/tools_webrtc/ios/
Dbuild_ios_libs.py74 def _RunCommand(cmd): function
130 _RunCommand(cmd)
141 _RunCommand(cmd)
190 _RunCommand(cmd)
207 _RunCommand(cmd)
230 _RunCommand(cmd)
231 _RunCommand(['plutil', '-convert', 'binary1', infoplist_path])
/external/webrtc/tools_webrtc/
Dexecutable_host_build.py84 def _RunCommand(argv, cwd=SRC_DIR, **kwargs): function
98 _RunCommand([sys.executable, DepotToolPath('gn.py'), 'gen', build_dir])
99 _RunCommand([DepotToolPath('ninja'), '-C', build_dir, EXECUTABLE_TO_BUILD])
/external/webrtc/examples/androidtests/
Dgradle_project_test.py34 def _RunCommand(argv, cwd=SRC_DIR, **kwargs): function
67 _RunCommand([GENERATE_GRADLE_SCRIPT, '--output-directory', output_dir,
72 _RunCommand([GRADLEW_BIN, 'assembleDebug'], project_dir)