Home | History | Annotate | Download | only in MagickCore

Lines Matching refs:ExceptionInfo

105 %  AcquireExceptionInfo() allocates the ExceptionInfo structure.
109 % ExceptionInfo *AcquireExceptionInfo(void)
112 MagickExport ExceptionInfo *AcquireExceptionInfo(void)
114 ExceptionInfo
117 exception=(ExceptionInfo *) AcquireMagickMemory(sizeof(*exception));
118 if (exception == (ExceptionInfo *) NULL)
142 % ClearMagickException(ExceptionInfo *exception)
152 register ExceptionInfo
155 p=(ExceptionInfo *) exception;
160 p=(ExceptionInfo *) RelinquishMagickMemory(p);
164 MagickExport void ClearMagickException(ExceptionInfo *exception)
166 assert(exception != (ExceptionInfo *) NULL);
197 % CatchException(ExceptionInfo *exception)
204 MagickExport void CatchException(ExceptionInfo *exception)
206 register const ExceptionInfo
212 assert(exception != (ExceptionInfo *) NULL);
218 p=(const ExceptionInfo *) GetNextValueInLinkedList((LinkedListInfo *)
220 for (i=0; p != (const ExceptionInfo *) NULL; i++)
236 p=(const ExceptionInfo *) GetNextValueInLinkedList((LinkedListInfo *)
255 % CloneExceptionInfo() clones the ExceptionInfo structure.
259 % ExceptionInfo *CloneException(ExceptionInfo *exception)
266 MagickExport ExceptionInfo *CloneExceptionInfo(ExceptionInfo *exception)
268 ExceptionInfo
271 clone_exception=(ExceptionInfo *) AcquireMagickMemory(sizeof(*exception));
272 if (clone_exception == (ExceptionInfo *) NULL)
425 % ExceptionInfo *DestroyExceptionInfo(ExceptionInfo *exception)
432 MagickExport ExceptionInfo *DestroyExceptionInfo(ExceptionInfo *exception)
437 assert(exception != (ExceptionInfo *) NULL);
458 exception=(ExceptionInfo *) RelinquishMagickMemory(exception);
642 % InheritException(ExceptionInfo *exception,const ExceptionInfo *relative)
651 MagickExport void InheritException(ExceptionInfo *exception,
652 const ExceptionInfo *relative)
654 register const ExceptionInfo
657 assert(exception != (ExceptionInfo *) NULL);
659 assert(relative != (ExceptionInfo *) NULL);
666 p=(const ExceptionInfo *) GetNextValueInLinkedList((LinkedListInfo *)
668 while (p != (const ExceptionInfo *) NULL)
671 p=(const ExceptionInfo *) GetNextValueInLinkedList((LinkedListInfo *)
693 % InitializeExceptionInfo(ExceptionInfo *exception)
700 MagickPrivate void InitializeExceptionInfo(ExceptionInfo *exception)
702 assert(exception != (ExceptionInfo *) NULL);
937 % MagickBooleanType ThrowException(ExceptionInfo *exception,
952 MagickExport MagickBooleanType ThrowException(ExceptionInfo *exception,
955 register ExceptionInfo
958 assert(exception != (ExceptionInfo *) NULL);
961 p=(ExceptionInfo *) GetLastValueInLinkedList((LinkedListInfo *)
963 if ((p != (ExceptionInfo *) NULL) && (p->severity == severity) &&
970 p=(ExceptionInfo *) AcquireMagickMemory(sizeof(*p));
971 if (p == (ExceptionInfo *) NULL)
1012 % MagickBooleanType ThrowFileException(ExceptionInfo *exception,
1035 ExceptionInfo *exception,const char *module,const char *function,
1057 assert(exception != (ExceptionInfo *) NULL);
1085 MagickExport MagickBooleanType ThrowMagickException(ExceptionInfo *exception,