Lines Matching defs:key
248 * @param key The key to get.
252 const char *key, const char **value)
262 *value = apr_table_get(z->entries, key);
277 * @param key The key to set. The existing key value will be replaced.
281 const char *key, const char *value)
292 apr_table_set(z->entries, key, value);
295 apr_table_unset(z->entries, key);
302 static int identity_count(int *count, const char *key, const char *val)
304 *count += strlen(key) * 3 + strlen(val) * 3 + 1;
308 static int identity_concat(char *buffer, const char *key, const char *val)
317 ap_escape_urlencoded_buffer(slider, key);
392 char *key = apr_strtok(pair, psep, &plast);
394 if (key && *key) {
396 apr_table_unset(z->entries, key);
398 else if (!ap_unescape_urlencoded(key) && !ap_unescape_urlencoded(val)) {
399 if (!strcmp(SESSION_EXPIRY, key)) {
403 apr_table_set(z->entries, key, val);