Lines Matching refs:name
34 * @param name The name of the cookie.
40 AP_DECLARE(apr_status_t) ap_cookie_write(request_rec * r, const char *name, const char *val,
56 rfc2109 = apr_pstrcat(r->pool, name, "=", val, ";", buffer,
76 * @param name2 The name of the cookie.
118 * @param name The name of the cookie.
120 AP_DECLARE(apr_status_t) ap_cookie_remove(request_rec * r, const char *name, const char *attrs, ...)
126 const char *rfc2109 = apr_pstrcat(r->pool, name, "=;Max-Age=0;",
146 * @param name2 The name of the cookie.
181 const char *name = apr_pstrcat(v->r->pool, v->name ? v->name : "", "=", NULL);
182 apr_size_t len = strlen(name);
191 /* find the cookie called name */
201 if (!strncmp(trim, name, len)) {
236 * Read a cookie called name, placing its value in val.
244 AP_DECLARE(apr_status_t) ap_cookie_read(request_rec * r, const char *name, const char **val,
253 v.name = name;
260 "client submitted cookie '%s' more than once: %s", v.name, r->uri);