Lines Matching refs:value

60         const void *next_key; /* expected value of that entry's key pointer */
141 int hashmap_put(Hashmap *h, const void *key, void *value);
142 static inline int ordered_hashmap_put(OrderedHashmap *h, const void *key, void *value) {
143 return hashmap_put(PLAIN_HASHMAP(h), key, value);
146 int hashmap_update(Hashmap *h, const void *key, void *value);
147 static inline int ordered_hashmap_update(OrderedHashmap *h, const void *key, void *value) {
148 return hashmap_update(PLAIN_HASHMAP(h), key, value);
151 int hashmap_replace(Hashmap *h, const void *key, void *value);
152 static inline int ordered_hashmap_replace(OrderedHashmap *h, const void *key, void *value) {
153 return hashmap_replace(PLAIN_HASHMAP(h), key, value);
190 void *hashmap_remove_value(Hashmap *h, const void *key, void *value);
191 static inline void *ordered_hashmap_remove_value(OrderedHashmap *h, const void *key, void *value) {
192 return hashmap_remove_value(PLAIN_HASHMAP(h), key, value);
195 int hashmap_remove_and_put(Hashmap *h, const void *old_key, const void *new_key, void *value);
196 static inline int ordered_hashmap_remove_and_put(OrderedHashmap *h, const void *old_key, const void *new_key, void *value) {
197 return hashmap_remove_and_put(PLAIN_HASHMAP(h), old_key, new_key, value);
200 int hashmap_remove_and_replace(Hashmap *h, const void *old_key, const void *new_key, void *value);
201 static inline int ordered_hashmap_remove_and_replace(OrderedHashmap *h, const void *old_key, const void *new_key, void *value) {
202 return hashmap_remove_and_replace(PLAIN_HASHMAP(h), old_key, new_key, value);
259 bool internal_hashmap_iterate(HashmapBase *h, Iterator *i, void **value, const void **key);
260 static inline bool hashmap_iterate(Hashmap *h, Iterator *i, void **value, const void **key) {
261 return internal_hashmap_iterate(HASHMAP_BASE(h), i, value, key);
263 static inline bool ordered_hashmap_iterate(OrderedHashmap *h, Iterator *i, void **value, const void **key) {
264 return internal_hashmap_iterate(HASHMAP_BASE(h), i, value, key);