HomeSort by relevance Sort by last modified time
    Searched defs:hash_map_t (Results 1 - 2 of 2) sorted by null

  /system/bt/osi/include/
hash_map.h 25 struct hash_map_t;
26 typedef struct hash_map_t hash_map_t; typedef in typeref:struct:hash_map_t
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)
    [all...]
  /system/bt/osi/src/
hash_map.c 26 struct hash_map_t;
32 typedef struct hash_map_t { struct
41 } hash_map_t; typedef in typeref:struct:hash_map_t
53 hash_map_t *hash_map_new_internal(
64 hash_map_t *hash_map = zeroed_allocator->alloc(sizeof(hash_map_t));
83 hash_map_t *hash_map_new(
92 void hash_map_free(hash_map_t *hash_map) {
100 bool hash_map_is_empty(const hash_map_t *hash_map) {
105 size_t hash_map_size(const hash_map_t *hash_map)
    [all...]

Completed in 264 milliseconds