• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/libxml2-2.7.2/

Lines Matching defs:input

147  * @input:  an xmlParserInputPtr input
149 * Displays the associated file and line informations for the current input
153 xmlParserPrintFileInfo(xmlParserInputPtr input) {
154 if (input != NULL) {
155 if (input->filename)
157 "%s:%d: ", input->filename,
158 input->line);
161 "Entity: line %d: ", input->line);
167 * @input: an xmlParserInputPtr input
169 * Displays current context within the input content for error tracking
173 xmlParserPrintFileContextInternal(xmlParserInputPtr input ,
180 if (input == NULL) return;
181 cur = input->cur;
182 base = input->base;
194 col = input->cur - cur;
223 * @input: an xmlParserInputPtr input
225 * Displays current context within the input content for error tracking
228 xmlParserPrintFileContext(xmlParserInputPtr input) {
229 xmlParserPrintFileContextInternal(input, xmlGenericError,
253 xmlParserInputPtr input = NULL;
280 input = ctxt->input;
281 if ((input != NULL) && (input->filename == NULL) &&
283 cur = input;
284 input = ctxt->inputTab[ctxt->inputNr - 2];
286 if (input != NULL) {
287 if (input->filename)
288 channel(data, "%s:%d: ", input->filename, input->line);
290 channel(data, "Entity: line %d: ", input->line);
392 xmlParserPrintFileContextInternal(input, channel, data);
451 xmlParserInputPtr input = NULL;
500 input = ctxt->input;
501 if ((input != NULL) && (input->filename == NULL) &&
503 input = ctxt->inputTab[ctxt->inputNr - 2];
505 if (input != NULL) {
506 file = input->filename;
507 line = input->line;
508 col = input->col;
673 xmlParserInputPtr input = NULL;
678 input = ctxt->input;
679 if ((input != NULL) && (input->filename == NULL) &&
681 cur = input;
682 input = ctxt->inputTab[ctxt->inputNr - 2];
684 xmlParserPrintFileInfo(input);
694 xmlParserPrintFileContext(input);
716 xmlParserInputPtr input = NULL;
721 input = ctxt->input;
722 if ((input != NULL) && (input->filename == NULL) &&
724 cur = input;
725 input = ctxt->inputTab[ctxt->inputNr - 2];
727 xmlParserPrintFileInfo(input);
737 xmlParserPrintFileContext(input);
765 xmlParserInputPtr input = NULL;
772 input = ctxt->input;
773 if ((input->filename == NULL) && (ctxt->inputNr > 1))
774 input = ctxt->inputTab[ctxt->inputNr - 2];
777 xmlParserPrintFileInfo(input);
791 if ((ctxt != NULL) && (input != NULL)) {
792 xmlParserPrintFileContext(input);
809 xmlParserInputPtr input = NULL;
814 input = ctxt->input;
815 if ((input->filename == NULL) && (ctxt->inputNr > 1))
816 input = ctxt->inputTab[ctxt->inputNr - 2];
818 xmlParserPrintFileInfo(input);
828 xmlParserPrintFileContext(input);