Lines Matching defs:val
35 * @param val The value to place in 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,
77 * @param val The value to place in the cookie.
82 AP_DECLARE(apr_status_t) ap_cookie_write2(request_rec * r, const char *name2, const char *val,
98 rfc2965 = apr_pstrcat(r->pool, name2, "=", val, ";", buffer,
177 static int extract_cookie_line(ap_cookie_do * v, const char *key, const char *val)
180 char *cookie = apr_pstrdup(v->r->pool, val);
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,
271 *val = v.encoded;