Searched refs:hash_map_t (Results 1 – 14 of 14) sorted by relevance
/system/bt/osi/include/ |
D | hash_map.h | 25 struct hash_map_t; 26 typedef struct hash_map_t hash_map_t; typedef 31 const hash_map_t *hash_map; 54 hash_map_t *hash_map_new( 63 void hash_map_free(hash_map_t *hash_map); 68 bool hash_map_is_empty(const hash_map_t *hash_map); 72 size_t hash_map_size(const hash_map_t *hash_map); 76 size_t hash_map_num_buckets(const hash_map_t *hash_map); 80 bool hash_map_has_key(const hash_map_t *hash_map, const void *key); 84 void *hash_map_get(const hash_map_t *hash_map, const void *key); [all …]
|
D | hash_map_utils.h | 32 hash_map_t *hash_map_utils_new_from_string_params(const char *params); 37 void hash_map_utils_dump_string_keys_string_values(hash_map_t *map);
|
/system/bt/osi/src/ |
D | hash_map.c | 26 struct hash_map_t; 32 typedef struct hash_map_t { struct 41 } hash_map_t; argument 53 hash_map_t *hash_map_new_internal( in hash_map_new_internal() 64 hash_map_t *hash_map = zeroed_allocator->alloc(sizeof(hash_map_t)); in hash_map_new_internal() 83 hash_map_t *hash_map_new( in hash_map_new() 92 void hash_map_free(hash_map_t *hash_map) { in hash_map_free() 100 bool hash_map_is_empty(const hash_map_t *hash_map) { in hash_map_is_empty() 105 size_t hash_map_size(const hash_map_t *hash_map) { in hash_map_size() 110 size_t hash_map_num_buckets(const hash_map_t *hash_map) { in hash_map_num_buckets() [all …]
|
D | hash_map_utils.c | 36 hash_map_t *hash_map_utils_new_from_string_params(const char *params) { in hash_map_utils_new_from_string_params() 39 hash_map_t *map = hash_map_new(BUCKETS_NUM, hash_function_string, osi_free, in hash_map_utils_new_from_string_params() 87 void hash_map_utils_dump_string_keys_string_values(hash_map_t *map) { in hash_map_utils_dump_string_keys_string_values()
|
D | allocation_tracker.c | 43 hash_map_t *hash_map_new_internal( 62 static hash_map_t *allocations;
|
D | data_dispatcher.c | 35 hash_map_t *dispatch_table;
|
/system/bt/osi/test/ |
D | hash_map_test.cpp | 46 hash_map_t *hash_map = hash_map_new(5, hash_map_fn00, NULL, NULL, NULL); in TEST_F() 52 hash_map_t *hash_map = hash_map_new(5, hash_map_fn00, NULL, NULL, NULL); in TEST_F() 85 hash_map_t *hash_map = hash_map_new(5, hash_map_fn00, NULL, NULL, NULL); in TEST_F() 116 hash_map_t *hash_map = hash_map_new(5, hash_map_fn00, key_free_fn00, data_free_fn00, NULL); in TEST_F() 186 hash_map_t *hash_map = hash_map_new(5, hash_map_fn00, key_free_fn00, data_free_fn00, NULL); in TEST_F()
|
D | hash_map_utils_test.cpp | 41 hash_map_t *map; 120 hash_map_t *map = NULL; in TEST_F()
|
/system/bt/profile/src/ |
D | manager.c | 35 static hash_map_t *profile_map;
|
/system/bt/device/src/classic/ |
D | peer.c | 42 static hash_map_t *peers_by_address;
|
/system/bt/btcore/src/ |
D | module.c | 40 static hash_map_t *metadata;
|
/system/bt/hci/src/ |
D | packet_fragmenter.c | 54 static hash_map_t *partial_packets;
|
/system/bt/stack/btm/ |
D | btm_ble_bgconn.c | 53 static hash_map_t *background_connections = NULL;
|
/system/bt/audio_a2dp_hw/ |
D | audio_a2dp_hw.c | 745 hash_map_t *params = hash_map_utils_new_from_string_params(kvpairs); in out_set_parameters() 1213 hash_map_t *params = hash_map_utils_new_from_string_params(keys); in adev_get_parameters()
|