Lines Matching refs:severity
166 exception->severity=UndefinedException; in ClearMagickException()
217 if ((p->severity >= WarningException) && (p->severity < ErrorException)) in CatchException()
218 MagickWarning(p->severity,p->reason,p->description); in CatchException()
219 if ((p->severity >= ErrorException) && (p->severity < FatalErrorException)) in CatchException()
220 MagickError(p->severity,p->reason,p->description); in CatchException()
221 if (p->severity >= FatalErrorException) in CatchException()
222 MagickFatalError(p->severity,p->reason,p->description); in CatchException()
291 static void DefaultErrorHandler(const ExceptionType magick_unused(severity), in DefaultErrorHandler() argument
294 magick_unreferenced(severity); in DefaultErrorHandler()
333 static void DefaultFatalErrorHandler(const ExceptionType severity, in DefaultFatalErrorHandler() argument
344 exit((int) (severity-FatalErrorException)+1); in DefaultFatalErrorHandler()
375 static void DefaultWarningHandler(const ExceptionType magick_unused(severity), in DefaultWarningHandler() argument
378 magick_unreferenced(severity); in DefaultWarningHandler()
421 exception->severity=UndefinedException; in DestroyExceptionInfo()
512 static const char *ExceptionSeverityToTag(const ExceptionType severity) in ExceptionSeverityToTag() argument
514 switch (severity) in ExceptionSeverityToTag()
584 MagickExport const char *GetLocaleExceptionMessage(const ExceptionType severity, in GetLocaleExceptionMessage() argument
595 ExceptionSeverityToTag(severity),tag); in GetLocaleExceptionMessage()
647 (void) ThrowException(exception,p->severity,p->reason,p->description); in InheritException()
680 exception->severity=UndefinedException; in InitializeExceptionInfo()
922 const ExceptionType severity,const char *reason,const char *description) in ThrowException() argument
936 if (severity < ErrorException) in ThrowException()
942 if (p->severity >= ErrorException) in ThrowException()
949 if ((p != (ExceptionInfo *) NULL) && (p->severity == severity) && in ThrowException()
963 p->severity=severity; in ThrowException()
970 if (p->severity > exception->severity) in ThrowException()
972 exception->severity=p->severity; in ThrowException()
1025 const size_t line,const ExceptionType severity,const char *tag, in ThrowMagickExceptionList() argument
1048 locale=GetLocaleExceptionMessage(severity,tag); in ThrowMagickExceptionList()
1062 if ((severity >= WarningException) && (severity < ErrorException)) in ThrowMagickExceptionList()
1064 if ((severity >= ErrorException) && (severity < FatalErrorException)) in ThrowMagickExceptionList()
1066 if (severity >= FatalErrorException) in ThrowMagickExceptionList()
1070 (void) ThrowException(exception,severity,message,(char *) NULL); in ThrowMagickExceptionList()
1076 const ExceptionType severity,const char *tag,const char *format,...) in ThrowMagickException() argument
1085 status=ThrowMagickExceptionList(exception,module,function,line,severity,tag, in ThrowMagickException()