Home | History | Annotate | Download | only in libxml

Lines Matching full:error

39  * Raises an error.
43 if ((ctxt) != NULL) (ctxt)->error = (err); }
49 * Raises an XPATH_INVALID_ARITY error.
58 * Raises an XPATH_INVALID_TYPE error.
67 * Get the error code of an XPath context.
69 * Returns the context error.
71 #define xmlXPathGetError(ctxt) ((ctxt)->error)
77 * Check if an XPath error was raised.
79 * Returns true if an error has been raised, false otherwise.
81 #define xmlXPathCheckError(ctxt) ((ctxt)->error != XPATH_EXPRESSION_OK)
237 * Macro to return from the function if an XPath error was detected.
240 if (ctxt->error != XPATH_EXPRESSION_OK) return
245 * Macro to return 0 from the function if an XPath error was detected.
248 if (ctxt->error != XPATH_EXPRESSION_OK) return(0)
252 * @X: the error code
254 * Macro to raise an XPath error and return.
261 * @X: the error code
263 * Macro to raise an XPath error and return 0.
347 * Error reporting.
357 int error);