Searched defs:CalledProcessError (Results 1 - 4 of 4) sorted by relevance

/external/libmojo/build/android/gyp/util/
H A Dbuild_utils.py130 class CalledProcessError(Exception): class in inherits:Exception
135 super(CalledProcessError, self).__init__()
150 # If the command fails, raises a build_utils.CalledProcessError.
170 raise CalledProcessError(cwd, args, stdout + stderr)
/external/clang/utils/analyzer/
H A DSATestBuild.py55 from subprocess import check_call, check_output, CalledProcessError namespace
388 except CalledProcessError, e:
/external/python/cpython2/Lib/
H A Dsubprocess.py21 check_call(...): Same as call() but raises CalledProcessError()
44 class CalledProcessError(Exception): class in inherits:Exception
84 "check_output", "CalledProcessError"]
174 CalledProcessError. The CalledProcessError object will have the
186 raise CalledProcessError(retcode, cmd)
193 If the exit code was non-zero it raises a CalledProcessError. The
194 CalledProcessError object will have the return code in the returncode
219 raise CalledProcessError(retcode, cmd, output=output)
/external/python/cpython3/Lib/
H A Dsubprocess.py34 check_call(...): Same as call() but raises CalledProcessError()
60 class CalledProcessError(SubprocessError): class in inherits:SubprocessError
159 "getoutput", "check_output", "run", "CalledProcessError", "DEVNULL",
279 CalledProcessError. The CalledProcessError object will have the
291 raise CalledProcessError(retcode, cmd)
298 If the exit code was non-zero it raises a CalledProcessError. The
299 CalledProcessError object will have the return code in the returncode
366 """Raise CalledProcessError if the exit code is non-zero."""
368 raise CalledProcessError(sel
[all...]

Completed in 197 milliseconds