Home
last modified time | relevance | path

Searched refs:ErrorPolicy (Results 1 – 7 of 7) sorted by relevance

/external/ImageMagick/Magick++/lib/
DException.cpp273 Magick::ErrorPolicy::ErrorPolicy(const std::string& what_) in ErrorPolicy() function in Magick::ErrorPolicy
278 Magick::ErrorPolicy::ErrorPolicy(const std::string& what_,Exception *nested_) in ErrorPolicy() function in Magick::ErrorPolicy
283 Magick::ErrorPolicy::~ErrorPolicy() throw() in ~ErrorPolicy()
774 return new ErrorPolicy(message); in createException()
957 throw ErrorPolicy(message,nestedException); in throwException()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/DWARF/
DDWARFContext.h53 enum class ErrorPolicy { Halt, Continue }; enum
348 static ErrorPolicy defaultErrorHandler(Error E);
351 function_ref<ErrorPolicy(Error)> HandleError = defaultErrorHandler,
/external/ImageMagick/Magick++/lib/Magick++/
DException.h176 class MagickPPExport ErrorPolicy: public Error
179 explicit ErrorPolicy(const std::string& what_);
180 explicit ErrorPolicy(const std::string& what_,Exception *nested_);
181 ~ErrorPolicy() throw();
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/
DDWARFContext.cpp1421 ErrorPolicy DWARFContext::defaultErrorHandler(Error E) { in defaultErrorHandler()
1423 return ErrorPolicy::Continue; in defaultErrorHandler()
1577 function_ref<ErrorPolicy(Error)> HandleError) in DWARFObjInMemory()
1604 ErrorPolicy EP = HandleError(createError( in DWARFObjInMemory()
1606 if (EP == ErrorPolicy::Halt) in DWARFObjInMemory()
1625 ErrorPolicy EP = HandleError(createError( in DWARFObjInMemory()
1627 if (EP == ErrorPolicy::Halt) in DWARFObjInMemory()
1729 if (HandleError(SymInfoOrErr.takeError()) == ErrorPolicy::Halt) in DWARFObjInMemory()
1750 ErrorPolicy EP = HandleError(createError( in DWARFObjInMemory()
1752 if (EP == ErrorPolicy::Halt) in DWARFObjInMemory()
[all …]
/external/libcups/scheduler/
Dconf.c86 { "ErrorPolicy", &ErrorPolicy, CUPSD_VARTYPE_STRING },
755 cupsdSetString(&ErrorPolicy, "stop-printer"); in cupsdReadConfiguration()
1229 if (strcmp(ErrorPolicy, "retry-current-job") && in cupsdReadConfiguration()
1230 strcmp(ErrorPolicy, "abort-job") && in cupsdReadConfiguration()
1231 strcmp(ErrorPolicy, "retry-job") && in cupsdReadConfiguration()
1232 strcmp(ErrorPolicy, "stop-printer")) in cupsdReadConfiguration()
1234 …essage(CUPSD_LOG_ALERT, "Invalid ErrorPolicy \"%s\", resetting to \"stop-printer\".", ErrorPolicy); in cupsdReadConfiguration()
1235 cupsdSetString(&ErrorPolicy, "stop-printer"); in cupsdReadConfiguration()
Dconf.h140 *ErrorPolicy VALUE(NULL),
Dprinters.c104 cupsdSetString(&p->error_policy, ErrorPolicy); in cupsdAddPrinter()
1366 …(CUPSD_LOG_ALERT, "Invalid ErrorPolicy \"%s\" on line %d or printers.conf.", ErrorPolicy, linenum); in cupsdLoadAllPrinters()