Home
last modified time | relevance | path

Searched refs:PLAIN_HASHMAP (Results 1 – 2 of 2) sorted by relevance

/systemd-251/src/basic/
Dhashmap.h72 #define PLAIN_HASHMAP(h) \ macro
157 return hashmap_put(PLAIN_HASHMAP(h), key, value); in ordered_hashmap_put()
166 return hashmap_update(PLAIN_HASHMAP(h), key, value); in ordered_hashmap_update()
171 return hashmap_replace(PLAIN_HASHMAP(h), key, value); in ordered_hashmap_replace()
184 return hashmap_get2(PLAIN_HASHMAP(h), key, rkey); in ordered_hashmap_get2()
205 return hashmap_remove2(PLAIN_HASHMAP(h), key, rkey); in ordered_hashmap_remove2()
214 return hashmap_remove_value(PLAIN_HASHMAP(h), key, value); in ordered_hashmap_remove_value()
219 return hashmap_remove_and_put(PLAIN_HASHMAP(h), old_key, new_key, value); in ordered_hashmap_remove_and_put()
224 return hashmap_remove_and_replace(PLAIN_HASHMAP(h), old_key, new_key, value); in ordered_hashmap_remove_and_replace()
230 #define hashmap_merge(h, other) _hashmap_merge(PLAIN_HASHMAP(h), PLAIN_HASHMAP(other))
Dstrv.c961 return string_strv_hashmap_put_internal(PLAIN_HASHMAP(*h), key, value); in _string_strv_ordered_hashmap_put()