Lines Matching defs:value
55 void *value;
71 /** Destroy a (key, value) pair */
72 void (*destroy)(void *key, void *value);
95 * hashing keys, comparing keys and destroying (key,value) pairs.
100 void (*destroy)(void *key, void *value),
174 void *value = entry->value;
177 entry->value = NULL;
184 cache->destroy(key, value);
192 * Insert an entry in the cache, given the key and value.
197 void *value)
221 entry->value = value;
232 * value or NULL if not found.
253 return entry->value;
259 * for each entry's (key, value).