Lines Matching refs:parser
76 /** gets the parser associated with the request body */
78 /** manually set a parser for the request body */
88 /** determine the maximum amount of data that will be fed into a parser */
90 /** set the maximum amount of data that will be fed into a parser */
93 /** determine the directory used by the parser for temporary files */
95 /** set the directory used by the parser for temporary files */
214 * Fetch the active body parser.
217 * @param parser Points to the active parser on return.
224 const apreq_parser_t **parser)
226 return req->module->parser_get(req, parser);
231 * Set the body parser for this request.
234 * @param parser New parser to use.
240 apreq_parser_t *parser)
242 return req->module->parser_set(req, parser);
246 * Add a parser hook for this request.
392 * values. Useful if you want to test the parser code or if you have
398 * @param parser parses the request body
407 apreq_parser_t *parser,