Lines Matching refs:parser
38 apr_xml_parser *parser;
47 parser = apr_xml_parser_create(r->pool);
56 /* read the body, stuffing it into the parser */
96 status = apr_xml_parser_feed(parser, data, len);
107 /* tell the parser that we're done */
108 status = apr_xml_parser_done(parser, pdoc);
116 "XML parser error (at end). status=%d", status);
126 (void) apr_xml_parser_geterror(parser, errbuf, sizeof(errbuf));
133 /* make sure the parser is terminated */
134 (void) apr_xml_parser_done(parser, NULL);