Home
last modified time | relevance | path

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

/external/libyuv/files/tools_libyuv/autoroller/
Droll_deps.py98 def _RunCommand(command, working_dir=None, ignore_exit_code=False, function
136 lines = _RunCommand(['git', 'branch'])[0].split('\n')
250 stdout, _ = _RunCommand(['git', 'ls-remote', libyuv_deps_entry.url,
343 _, stderr = _RunCommand(
351 stdout, _ = _RunCommand(['git', 'status', '--porcelain'])
360 current_branch = _RunCommand(
368 _RunCommand(['git', 'pull'])
374 _RunCommand(['git', 'checkout', '-b', ROLL_BRANCH_NAME])
384 _RunCommand(['git', 'checkout', active_branch])
385 _RunCommand(['git', 'branch', '-D', ROLL_BRANCH_NAME])
[all …]
/external/webrtc/tools/autoroller/
Droll_chromium_revision.py86 def _RunCommand(command, working_dir=None, ignore_exit_code=False, function
124 lines = _RunCommand(['git', 'branch'])[0].split('\n')
304 stdout, _ = _RunCommand(['git', 'status', '--porcelain'])
313 current_branch = _RunCommand(
321 _RunCommand(['git', 'pull'])
327 _RunCommand(['git', 'checkout', '-b', ROLL_BRANCH_NAME])
337 _RunCommand(['git', 'checkout', active_branch])
338 _RunCommand(['git', 'branch', '-D', ROLL_BRANCH_NAME])
344 _RunCommand(['git', 'add', '--update', '.'])
345 _RunCommand(['git', 'commit', '-m', commit_msg])
[all …]
/external/chromium-trace/catapult/common/py_utils/py_utils/
Dcloud_storage.py126 def _RunCommand(args): function
197 stdout = _RunCommand(['ls', query])
203 _RunCommand(['ls', 'gs://%s/%s' % (bucket, remote_path)])
213 _RunCommand(['mv', url1, url2])
231 _RunCommand(['cp', url1, url2])
237 _RunCommand(['rm', url])
354 _RunCommand(['cp', url, partial_download_path.name])
357 _RunCommand(['cp', url, partial_download_path.name])
384 _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
145 orig_run_command = cloud_storage._RunCommand
149 cloud_storage._RunCommand = AssertCorrectRunCommandArgs
155 cloud_storage._RunCommand = orig_run_command