Home
last modified time | relevance | path

Searched refs:ProcessError (Results 1 – 6 of 6) sorted by relevance

/third_party/vk-gl-cts/framework/delibs/decpp/
DdeProcess.cpp46 throw ProcessError(deProcess_getLastError(m_process)); in start()
52 throw ProcessError(deProcess_getLastError(m_process)); in waitForFinish()
58 throw ProcessError(deProcess_getLastError(m_process)); in terminate()
64 throw ProcessError(deProcess_getLastError(m_process)); in kill()
70 throw ProcessError(deProcess_getLastError(m_process)); in closeStdIn()
76 throw ProcessError(deProcess_getLastError(m_process)); in closeStdOut()
82 throw ProcessError(deProcess_getLastError(m_process)); in closeStdErr()
DdeProcess.hpp35 class ProcessError : public std::runtime_error class
38 ProcessError (const std::string& message) : std::runtime_error(message) {} in ProcessError() function in de::ProcessError
/third_party/python/Lib/multiprocessing/
Dcontext.py14 class ProcessError(Exception): class
17 class BufferTooShort(ProcessError):
20 class TimeoutError(ProcessError):
23 class AuthenticationError(ProcessError):
32 ProcessError = ProcessError variable in BaseContext
Dmanagers.py30 from .context import reduction, get_spawning_popen, ProcessError
518 raise ProcessError("Already started server")
520 raise ProcessError("Manager has shut down")
522 raise ProcessError(
542 raise ProcessError("Already started server")
544 raise ProcessError("Manager has shut down")
546 raise ProcessError(
648 raise ProcessError("Unable to start server")
650 raise ProcessError("Manager has shut down")
652 raise ProcessError(
[all …]
/third_party/vk-gl-cts/execserver/
DxsPosixTestProcess.cpp219 catch (const de::ProcessError& e) in start()
288 catch (const de::ProcessError& e) in cleanup()
/third_party/python/Doc/library/
Dmultiprocessing.rst692 .. exception:: ProcessError