Searched refs:ProcessError (Results 1 – 10 of 10) 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 | 31 from .context import reduction, get_spawning_popen, ProcessError 508 raise ProcessError("Already started server") 510 raise ProcessError("Manager has shut down") 512 raise ProcessError( 532 raise ProcessError("Already started server") 534 raise ProcessError("Manager has shut down") 536 raise ProcessError( 638 raise ProcessError("Unable to start server") 640 raise ProcessError("Manager has shut down") 642 raise ProcessError( [all …]
|
/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() 1389 ProcessError(&er, 0, "Hardware Error"); in CrcWarmCopyPage() 3295 void MemoryRegionThread::ProcessError(struct ErrorRecord *error, in ProcessError() function in MemoryRegionThread 3304 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
|