Home
last modified time | relevance | path

Searched refs:ProcessError (Results 1 – 7 of 7) 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/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