Lines Matching defs:name
57 /** name of this apreq module */
58 const char *name;
69 /** get a cookie by its name */
71 /** get a query string parameter by its name */
73 /** get a body parameter by its name */
172 * Fetch the first cookie with the given name.
175 * @param name Case-insensitive cookie name.
180 apreq_cookie_t *apreq_jar_get(apreq_handle_t *req, const char *name)
182 return req->module->jar_get(req, name);
186 * Fetch the first query string param with the given name.
189 * @param name Case-insensitive param name.
194 apreq_param_t *apreq_args_get(apreq_handle_t *req, const char *name)
196 return req->module->args_get(req, name);
200 * Fetch the first body param with the given name.
203 * @param name Case-insensitive cookie name.
208 apreq_param_t *apreq_body_get(apreq_handle_t *req, const char *name)
210 return req->module->body_get(req, name);
413 * specified name. The match is case-insensitive.
416 * @param key desired parameter name
423 * Find the first cookie with the specified name.
427 * @param name desired cookie name
431 #define apreq_cookie(req, name) apreq_jar_get(req, name)