Home
last modified time | relevance | path

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

/hal_espressif-latest/components/bt/common/osi/
Dhash_map.c45 static hash_map_entry_t *find_bucket_entry_(list_t *hash_bucket_list,
120 list_t *hash_bucket_list = hash_map->bucket[hash_key].list; in hash_map_has_key() local
122 hash_map_entry_t *hash_map_entry = find_bucket_entry_(hash_bucket_list, key); in hash_map_has_key()
139 list_t *hash_bucket_list = hash_map->bucket[hash_key].list; in hash_map_set() local
141 hash_map_entry_t *hash_map_entry = find_bucket_entry_(hash_bucket_list, key); in hash_map_set()
145 bool rc = list_remove(hash_bucket_list, hash_map_entry); in hash_map_set()
160 return list_append(hash_bucket_list, hash_map_entry); in hash_map_set()
168 list_t *hash_bucket_list = hash_map->bucket[hash_key].list; in hash_map_erase() local
170 hash_map_entry_t *hash_map_entry = find_bucket_entry_(hash_bucket_list, key); in hash_map_erase()
176 bool remove = list_remove(hash_bucket_list, hash_map_entry); in hash_map_erase()
[all …]