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
517 raise ProcessError("Already started server")
519 raise ProcessError("Manager has shut down")
521 raise ProcessError(
541 raise ProcessError("Already started server")
543 raise ProcessError("Manager has shut down")
545 raise ProcessError(
647 raise ProcessError("Unable to start server")
649 raise ProcessError("Manager has shut down")
651 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.rst659 .. exception:: ProcessError