Home
last modified time | relevance | path

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

/hal_espressif-latest/components/bt/common/osi/
Dhash_map.c122 hash_map_entry_t *hash_map_entry = find_bucket_entry_(hash_bucket_list, key); in hash_map_has_key() local
123 return (hash_map_entry != NULL); in hash_map_has_key()
141 hash_map_entry_t *hash_map_entry = find_bucket_entry_(hash_bucket_list, key); in hash_map_set() local
143 if (hash_map_entry) { in hash_map_set()
145 bool rc = list_remove(hash_bucket_list, hash_map_entry); in hash_map_set()
151 hash_map_entry = osi_calloc(sizeof(hash_map_entry_t)); in hash_map_set()
152 if (hash_map_entry == NULL) { in hash_map_set()
156 hash_map_entry->key = key; in hash_map_set()
157 hash_map_entry->data = data; in hash_map_set()
158 hash_map_entry->hash_map = hash_map; in hash_map_set()
[all …]
/hal_espressif-latest/components/bt/host/bluedroid/bta/sys/
Dbta_sys_main.c622 bool hash_iter_ro_cb(hash_map_entry_t *hash_map_entry, void *context) in hash_iter_ro_cb() argument
624 osi_alarm_t *alarm = (osi_alarm_t *)hash_map_entry->data; in hash_iter_ro_cb()