Lines Matching refs:severity
167 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) && in CatchException()
220 (p->severity < FatalErrorException)) in CatchException()
221 MagickError(p->severity,p->reason,p->description); in CatchException()
227 if (p->severity >= FatalErrorException) in CatchException()
228 MagickFatalError(p->severity,p->reason,p->description); in CatchException()
300 static void DefaultErrorHandler(const ExceptionType magick_unused(severity), in DefaultErrorHandler() argument
303 magick_unreferenced(severity); in DefaultErrorHandler()
342 static void DefaultFatalErrorHandler(const ExceptionType severity, in DefaultFatalErrorHandler() argument
353 exit((int) (severity-FatalErrorException)+1); in DefaultFatalErrorHandler()
384 static void DefaultWarningHandler(const ExceptionType magick_unused(severity), in DefaultWarningHandler() argument
387 magick_unreferenced(severity); in DefaultWarningHandler()
430 exception->severity=UndefinedException; in DestroyExceptionInfo()
520 static const char *ExceptionSeverityToTag(const ExceptionType severity) in ExceptionSeverityToTag() argument
522 switch (severity) in ExceptionSeverityToTag()
592 MagickExport const char *GetLocaleExceptionMessage(const ExceptionType severity, in GetLocaleExceptionMessage() argument
603 ExceptionSeverityToTag(severity),tag); in GetLocaleExceptionMessage()
655 (void) ThrowException(exception,p->severity,p->reason,p->description); in InheritException()
688 exception->severity=UndefinedException; in InitializeExceptionInfo()
930 const ExceptionType severity,const char *reason,const char *description) in ThrowException() argument
940 if ((p != (ExceptionInfo *) NULL) && (p->severity == severity) && in ThrowException()
954 p->severity=severity; in ThrowException()
961 if (p->severity >= exception->severity) in ThrowException()
963 exception->severity=p->severity; in ThrowException()
1012 const size_t line,const ExceptionType severity,const char *tag, in ThrowMagickExceptionList() argument
1035 locale=GetLocaleExceptionMessage(severity,tag); in ThrowMagickExceptionList()
1049 if ((severity >= WarningException) && (severity < ErrorException)) in ThrowMagickExceptionList()
1051 if ((severity >= ErrorException) && (severity < FatalErrorException)) in ThrowMagickExceptionList()
1053 if (severity >= FatalErrorException) in ThrowMagickExceptionList()
1057 (void) ThrowException(exception,severity,message,(char *) NULL); in ThrowMagickExceptionList()
1063 const ExceptionType severity,const char *tag,const char *format,...) in ThrowMagickException() argument
1072 status=ThrowMagickExceptionList(exception,module,function,line,severity,tag, in ThrowMagickException()