Lines Matching defs:value
59 const void *next_key; /* expected value of that entry's key pointer */
181 int hashmap_put(Hashmap *h, const void *key, void *value);
182 static inline int ordered_hashmap_put(OrderedHashmap *h, const void *key, void *value) {
183 return hashmap_put(PLAIN_HASHMAP(h), key, value);
186 int hashmap_update(Hashmap *h, const void *key, void *value);
187 static inline int ordered_hashmap_update(OrderedHashmap *h, const void *key, void *value) {
188 return hashmap_update(PLAIN_HASHMAP(h), key, value);
191 int hashmap_replace(Hashmap *h, const void *key, void *value);
192 static inline int ordered_hashmap_replace(OrderedHashmap *h, const void *key, void *value) {
193 return hashmap_replace(PLAIN_HASHMAP(h), key, value);
230 void *hashmap_remove_value(Hashmap *h, const void *key, void *value);
231 static inline void *ordered_hashmap_remove_value(OrderedHashmap *h, const void *key, void *value) {
232 return hashmap_remove_value(PLAIN_HASHMAP(h), key, value);
235 int hashmap_remove_and_put(Hashmap *h, const void *old_key, const void *new_key, void *value);
236 static inline int ordered_hashmap_remove_and_put(OrderedHashmap *h, const void *old_key, const void *new_key, void *value) {
237 return hashmap_remove_and_put(PLAIN_HASHMAP(h), old_key, new_key, value);
240 int hashmap_remove_and_replace(Hashmap *h, const void *old_key, const void *new_key, void *value);
241 static inline int ordered_hashmap_remove_and_replace(OrderedHashmap *h, const void *old_key, const void *new_key, void *value) {
242 return hashmap_remove_and_replace(PLAIN_HASHMAP(h), old_key, new_key, value);