Home | History | Annotate | Download | only in auto_bisect

Lines Matching refs:cmd

174 def _SubprocessCall(cmd, cwd=None):
178 cmd: The command to run.
190 return subprocess.call(cmd, shell=shell, cwd=cwd)
203 cmd = ['gclient'] + params
204 return _SubprocessCall(cmd, cwd=cwd)
221 cmd = ['init', '-u'] + REPO_PARAMS
225 if not _RunRepo(cmd):
242 cmd = ['repo'] + params
243 return _SubprocessCall(cmd)
255 cmd = ['forall', '-c', REPO_SYNC_COMMAND % timestamp]
256 return _RunRepo(cmd)