Home | History | Annotate | Download | only in libxml2

Lines Matching defs:file

78     vfprintf((FILE *)xmlGenericErrorContext, msg, args);
108 * One can simply force messages to be emitted to another FILE * than
109 * stderr by setting @ctx to this file handle and @handler to NULL.
149 * Displays the associated file and line informations for the current input
246 char *file = NULL;
263 file = err->file;
293 if (file != NULL)
294 channel(data, "%s:%d: ", file, line);
438 * @file: the file source of the error (or NULL)
456 const char *file, int line, const char *str1,
506 if (file == NULL) {
513 file = input->filename;
519 } else if ((node != NULL) && (file == NULL)) {
524 /* file = (const char *) node->doc->URL; */
548 if (file != NULL)
549 to->file = (char *) xmlStrdup((const xmlChar *) file);
574 to->file = (char *) xmlGetProp(prev, BAD_CAST "href");
577 to->file = (char *) xmlGetProp(prev, BAD_CAST "href");
581 to->file = (char *) xmlStrdup(baseptr->doc->URL);
582 if ((to->file == NULL) && (node != NULL) && (node->doc != NULL)) {
583 to->file = (char *) xmlStrdup(node->doc->URL);
675 * Display and format an error messages, gives file, line, position and
718 * Display and format a warning messages, gives file, line, position and
767 * Display and format an validity error messages, gives file,
811 * Display and format a validity warning messages, gives file, line,
879 if (err->file != NULL)
880 xmlFree(err->file);
956 char *message, *file, *str1, *str2, *str3;
962 file = (char *) xmlStrdup ((xmlChar *) from->file);
969 if (to->file != NULL)
970 xmlFree(to->file);
987 to->file = file;