HomeSort by relevance Sort by last modified time
    Searched refs:hash_map_entry (Results 1 - 3 of 3) sorted by null

  /system/bt/osi/src/
hash_map.c 121 hash_map_entry_t *hash_map_entry = find_bucket_entry_(hash_bucket_list, key); local
122 return (hash_map_entry != NULL);
138 hash_map_entry_t *hash_map_entry = find_bucket_entry_(hash_bucket_list, key); local
140 if (hash_map_entry) {
141 // Calls hash_map callback to delete the hash_map_entry.
142 UNUSED_ATTR bool rc = list_remove(hash_bucket_list, hash_map_entry);
147 hash_map_entry = hash_map->allocator->alloc(sizeof(hash_map_entry_t));
148 if (hash_map_entry == NULL)
151 hash_map_entry->key = key;
152 hash_map_entry->data = data
164 hash_map_entry_t *hash_map_entry = find_bucket_entry_(hash_bucket_list, key); local
180 hash_map_entry_t *hash_map_entry = find_bucket_entry_(hash_bucket_list, key); local
208 hash_map_entry_t *hash_map_entry = (hash_map_entry_t *)list_node(iter); local
217 hash_map_entry_t *hash_map_entry = (hash_map_entry_t *)data; local
236 hash_map_entry_t *hash_map_entry = (hash_map_entry_t *)list_node(iter); local
    [all...]
hash_map_utils.c 100 hash_map_entry_t *hash_map_entry = (hash_map_entry_t *)entry; local
101 LOG_INFO(LOG_TAG, "key: '%s' value: '%s'\n", (char *)hash_map_entry->key,
102 (char *)hash_map_entry->data);
  /system/bt/osi/test/
hash_map_test.cpp 168 bool hash_test_iter_ro_cb(hash_map_entry_t *hash_map_entry, void *context) {
169 const char *key = (const char *)hash_map_entry->key;
170 char *data = (char *)hash_map_entry->data;

Completed in 214 milliseconds