Lines Matching defs:val
125 const char *val;
130 val = apr_table_get(req->jar, name);
132 if (val == NULL)
135 return apreq_value_to_cookie(val);
141 const char *val;
146 val = apr_table_get(req->args, name);
148 if (val == NULL)
151 return apreq_value_to_param(val);
157 const char *val;
163 *(const char **)&val = apr_table_get(req->body, name);
164 if (val != NULL)
173 return apreq_value_to_param(val);