Lines Matching refs:module

37  * An apreq handle associated with a module. The structure
38 * may have variable size, because the module may append its own data
42 /** the apreq module which implements this handle */
43 const struct apreq_module_t *module;
52 * @brief Vtable describing the necessary module functions.
57 /** name of this apreq module */
59 /** magic number identifying the module and version */
102 * Defines the module-specific status codes which
132 * @return APR_SUCCESS or a module-specific error status code.
137 return req->module->jar(req,t);
147 * @return APR_SUCCESS or a module-specific error status code.
152 return req->module->args(req,t);
162 * @return APR_SUCCESS or a module-specific error status code.
167 return req->module->body(req, t);
182 return req->module->jar_get(req, name);
196 return req->module->args_get(req, name);
210 return req->module->body_get(req, name);
219 * @return APR_SUCCESS or module-specific error.
226 return req->module->parser_get(req, parser);
236 * @return APR_SUCCESS or module-specific error.
242 return req->module->parser_set(req, parser);
251 * @return APR_SUCCESS or module-specific error.
256 return req->module->hook_add(req, hook);
266 * @return APR_SUCCESS or module-specific error.
273 return req->module->brigade_limit_set(req, bytes);
282 * @return APR_SUCCESS or a module-specific error,
289 return req->module->brigade_limit_get(req, bytes);
298 * @return APR_SUCCESS or a module-specific error.
305 return req->module->read_limit_set(req, bytes);
314 * @return APR_SUCCESS or a module-specific error,
321 return req->module->read_limit_get(req, bytes);
330 * @return APR_SUCCESS or a module-specific error .
335 return req->module->temp_dir_set(req, path);
345 * Any other return value is module-specific, and may leave
351 return req->module->temp_dir_get(req, path);
357 * Convenience macro for defining a module by mapping
360 * @param pre Prefix to define new module. All attributes of
364 * @param mmn Magic number (i.e. version number) of this module.