Searched refs:hash_map_entry (Results 1 – 2 of 2) sorted by relevance
122 hash_map_entry_t *hash_map_entry = find_bucket_entry_(hash_bucket_list, key); in hash_map_has_key() local123 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() local143 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 …]
622 bool hash_iter_ro_cb(hash_map_entry_t *hash_map_entry, void *context) in hash_iter_ro_cb() argument624 osi_alarm_t *alarm = (osi_alarm_t *)hash_map_entry->data; in hash_iter_ro_cb()