Searched refs:ProcessError (Results 1 – 11 of 11) sorted by relevance
/external/deqp/framework/delibs/decpp/ |
D | deProcess.cpp | 46 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()
|
D | deProcess.hpp | 35 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__.py | 71 class ProcessError(Exception): class 74 class BufferTooShort(ProcessError): 77 class TimeoutError(ProcessError): 80 class AuthenticationError(ProcessError):
|
/external/python/cpython3/Lib/multiprocessing/ |
D | context.py | 14 class ProcessError(Exception): class 17 class BufferTooShort(ProcessError): 20 class TimeoutError(ProcessError): 23 class AuthenticationError(ProcessError): 32 ProcessError = ProcessError variable in BaseContext
|
D | managers.py | 26 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/ |
D | xsPosixTestProcess.cpp | 219 catch (const de::ProcessError& e) in start() 288 catch (const de::ProcessError& e) in cleanup()
|
/external/stressapptest/src/ |
D | worker.h | 316 virtual void ProcessError(struct ErrorRecord *er, 432 virtual void ProcessError(struct ErrorRecord *er, 795 void ProcessError(struct ErrorRecord *error, int priority,
|
D | worker.cc | 570 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/ |
D | multiprocessing.c | 20 PyObject *ProcessError, *BufferTooShort; variable
|
/external/python/cpython2/Doc/library/ |
D | multiprocessing.rst | 2059 .. exception:: ProcessError
|
/external/python/cpython3/Doc/library/ |
D | multiprocessing.rst | 646 .. exception:: ProcessError
|