Lines Matching defs:value
154 int hashmap__insert(struct hashmap *map, const void *key, void *value,
173 *old_value = entry->value;
177 entry->value = value;
199 entry->value = value;
206 bool hashmap__find(const struct hashmap *map, const void *key, void **value)
215 if (value)
216 *value = entry->value;
233 *old_value = entry->value;