Searched refs:hashmap__insert (Results 1 – 2 of 2) sorted by relevance
/third_party/libbpf/src/ |
D | hashmap.h | 133 #define hashmap__insert(map, key, value, strategy, old_key, old_value) \ macro 139 hashmap__insert((map), (key), (value), HASHMAP_ADD, NULL, NULL) 142 hashmap__insert((map), (key), (value), HASHMAP_SET, (old_key), (old_value)) 145 hashmap__insert((map), (key), (value), HASHMAP_UPDATE, (old_key), (old_value)) 148 hashmap__insert((map), (key), (value), HASHMAP_APPEND, NULL, NULL)
|
D | strset.c | 168 err = hashmap__insert(set->strs_hash, new_off, new_off, in strset__add_str()
|