Searched refs:KeyCache (Results 1 – 2 of 2) sorted by relevance
| /device/qemu/riscv32_virt/liteos_m/board/driver/video/ |
| D | key_cache.c | 68 struct KeyCache *kc = NULL; in KeyCacheDump() 71 LOS_DL_LIST_FOR_EACH_ENTRY(kc, nhead, struct KeyCache, hashEntry) { in KeyCacheDump() 85 struct KeyCache *dent = NULL; in KeyCacheMemoryDump() 87 LOS_DL_LIST_FOR_EACH_ENTRY(dent, dhead, struct KeyCache, hashEntry) { in KeyCacheMemoryDump() 93 PRINTK("keyCache memory size = %d(B)\n", keyCacheNum * sizeof(struct KeyCache) + nameSum); in KeyCacheMemoryDump() 103 static void KeyCacheInsert(struct KeyCache *cache, const char* name, int len) in KeyCacheInsert() 109 struct KeyCache *KeyCacheAlloc(struct fb_mem *fbmem, const char *name, uint8_t len) in KeyCacheAlloc() 111 struct KeyCache *kc = NULL; in KeyCacheAlloc() 118 keyCacheSize = sizeof(struct KeyCache) + len + 1; in KeyCacheAlloc() 119 kc = (struct KeyCache*)zalloc(keyCacheSize); in KeyCacheAlloc() [all …]
|
| D | key_cache.h | 86 struct KeyCache { struct 97 int KeyCacheFree(struct KeyCache *cache); argument 98 struct KeyCache *KeyCacheAlloc(struct fb_mem *fbmem, const char *name, uint8_t len);
|