Home
last modified time | relevance | path

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

/external/deqp/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
/external/python/cpython2/Lib/multiprocessing/
D__init__.py71 class ProcessError(Exception): class
74 class BufferTooShort(ProcessError):
77 class TimeoutError(ProcessError):
80 class AuthenticationError(ProcessError):
/external/python/cpython3/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.py26 from .context import reduction, get_spawning_popen, ProcessError
498 raise ProcessError("Already started server")
500 raise ProcessError("Manager has shut down")
502 raise ProcessError(
522 raise ProcessError("Already started server")
524 raise ProcessError("Manager has shut down")
526 raise ProcessError(
625 raise ProcessError("Unable to start server")
627 raise ProcessError("Manager has shut down")
629 raise ProcessError(
/external/deqp/execserver/
DxsPosixTestProcess.cpp219 catch (const de::ProcessError& e) in start()
288 catch (const de::ProcessError& e) in cleanup()
/external/stressapptest/src/
Dworker.h316 virtual void ProcessError(struct ErrorRecord *er,
432 virtual void ProcessError(struct ErrorRecord *er,
795 void ProcessError(struct ErrorRecord *error, int priority,
Dworker.cc570 void WorkerThread::ProcessError(struct ErrorRecord *error, in ProcessError() function in WorkerThread
630 void FileThread::ProcessError(struct ErrorRecord *error, in ProcessError() function in FileThread
813 ProcessError(&recorded[0], 0, errormessage.c_str()); in CheckRegion()
831 ProcessError(&recorded[err], priority, errormessage.c_str()); in CheckRegion()
862 ProcessError(&er, 12, errormessage.c_str()); in CheckRegion()
1243 ProcessError(&er, 0, "Hardware Error"); in CrcCopyPage()
1387 ProcessError(&er, 0, "Hardware Error"); in CrcWarmCopyPage()
3291 void MemoryRegionThread::ProcessError(struct ErrorRecord *error, in ProcessError() function in MemoryRegionThread
3300 WorkerThread::ProcessError(error, priority, message); in ProcessError()
/external/python/cpython2/Modules/_multiprocessing/
Dmultiprocessing.c20 PyObject *ProcessError, *BufferTooShort; variable
/external/python/cpython2/Doc/library/
Dmultiprocessing.rst2059 .. exception:: ProcessError
/external/python/cpython3/Doc/library/
Dmultiprocessing.rst646 .. exception:: ProcessError