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

  /system/core/include/cutils/
hashmap.h 32 typedef struct Hashmap Hashmap;
41 Hashmap* hashmapCreate(size_t initialCapacity,
47 void hashmapFree(Hashmap* map);
62 void* hashmapPut(Hashmap* map, void* key, void* value);
68 void* hashmapGet(Hashmap* map, void* key);
73 bool hashmapContainsKey(Hashmap* map, void* key);
82 void* hashmapMemoize(Hashmap* map, void* key,
89 void* hashmapRemove(Hashmap* map, void* key);
94 size_t hashmapSize(Hashmap* map)
    [all...]
  /system/core/libcutils/
hashmap.c 17 #include <cutils/hashmap.h>
34 struct Hashmap {
43 Hashmap* hashmapCreate(size_t initialCapacity,
48 Hashmap* map = malloc(sizeof(Hashmap));
80 static inline int hashKey(Hashmap* map, void* key) {
93 size_t hashmapSize(Hashmap* map) {
101 static void expandIfNecessary(Hashmap* map) {
132 void hashmapLock(Hashmap* map) {
136 void hashmapUnlock(Hashmap* map)
    [all...]
str_parms.c 27 #include <cutils/hashmap.h>
34 Hashmap *map;
mq.c 33 #include <cutils/hashmap.h>
138 Hashmap* peerProxies;
198 Hashmap* connections;
    [all...]
  /external/webkit/Source/WebCore/platform/win/
DragDataWin.cpp 40 #include <wtf/Hashmap.h>

Completed in 911 milliseconds