Searched refs:Map (Results 1 - 7 of 7) sorted by relevance
/drivers/hdf_core/interfaces/inner_api/utils/ |
H A D | hdf_map.h | 21 struct MapNode **nodes; /**< Map node bucket */ 22 uint32_t nodeSize; /**< Map node count */ 23 uint32_t bucketSize; /**< Map node bucket size */ 24 } Map; typedef 26 void MapInit(Map *map); 28 void MapDelete(Map *map); 30 int32_t MapSet(Map *map, const char *key, const void *value, uint32_t valueSize); 32 void *MapGet(const Map *map, const char *key); 34 int32_t MapErase(Map *map, const char *key);
|
/drivers/hdf_core/framework/utils/src/ |
H A D | hdf_map.c | 46 static uint32_t MapHashIdx(const Map *map, uint32_t hash) in MapHashIdx() 54 static void MapAddNode(Map *map, struct MapNode *node) in MapAddNode() 61 static int32_t MapResize(Map *map, uint32_t size) in MapResize() 123 static int32_t MapSetCheckPara(const Map *map, const char *key, const void *value, uint32_t valueSize) in MapSetCheckPara() 136 int32_t MapSet(Map *map, const char *key, const void *value, uint32_t valueSize) in MapSet() 191 void* MapGet(const Map *map, const char *key) in MapGet() 216 int32_t MapErase(Map *map, const char *key) in MapErase() 250 void MapInit(Map *map) in MapInit() 261 void MapDelete(Map *map) in MapDelete()
|
/drivers/peripheral/vibrator/hal/include/ |
H A D | vibrator_controller.h | 56 struct Map { struct 62 struct Map g_effectmap[EFFECT_TYPE_MAX] = {
|
/drivers/hdf_core/adapter/uhdf2/security/include/ |
H A D | hdf_security.h | 30 Map *HdfSecGetHashMap();
|
/drivers/hdf_core/framework/core/manager/include/ |
H A D | devhost_service_clnt.h | 22 Map *deviceHashMap;
|
/drivers/hdf_core/framework/core/manager/src/ |
H A D | devhost_service_clnt.c | 70 hostClnt->deviceHashMap = (Map *)OsalMemCalloc(sizeof(Map)); in DevHostServiceClntConstruct()
|
/drivers/hdf_core/adapter/uhdf2/security/src/ |
H A D | hdf_security.c | 76 static Map g_indexMap; 78 Map *HdfSecGetHashMap() in HdfSecGetHashMap() 80 static Map hdfHashMap = { 0 }; in HdfSecGetHashMap()
|
Completed in 3 milliseconds