Lines Matching defs:value
243 * Get a particular value from the session.
245 * @param z The current session. If this value is NULL, the session will be
249 * @param value The buffer to write the value to.
252 const char *key, const char **value)
262 *value = apr_table_get(z->entries, key);
269 * Set a particular value to the session.
274 * @param z The current session. If this value is NULL, the session will be
277 * @param key The key to set. The existing key value will be replaced.
278 * @param value The value to set.
281 const char *key, const char *value)
291 if (value) {
292 apr_table_set(z->entries, key, value);
328 * By default, the name value pairs in the session are URLEncoded, separated
360 * By default, the name value pairs in the session are URLEncoded, separated
369 * Name / value pairs that are not encoded properly are ignored.