Searched refs:DexDataMap (Results 1 – 4 of 4) sorted by relevance
/dalvik/libdex/ |
D | DexDataMap.h | 26 struct DexDataMap { struct 36 DexDataMap* dexDataMapAlloc(u4 maxCount); 41 void dexDataMapFree(DexDataMap* map); 47 void dexDataMapAdd(DexDataMap* map, u4 offset, u2 type); 53 int dexDataMapGet(DexDataMap* map, u4 offset); 60 bool dexDataMapVerify(DexDataMap* map, u4 offset, u2 type); 65 DEX_INLINE bool dexDataMapVerify0Ok(DexDataMap* map, u4 offset, u2 type) { in dexDataMapVerify0Ok()
|
D | DexDataMap.cpp | 28 DexDataMap* dexDataMapAlloc(u4 maxCount) { in dexDataMapAlloc() 34 DexDataMap* map = NULL; in dexDataMapAlloc() 40 !safe_add(&size, size, sizeof(DexDataMap))) { in dexDataMapAlloc() 44 map = (DexDataMap*) malloc(size); in dexDataMapAlloc() 61 void dexDataMapFree(DexDataMap* map) { in dexDataMapFree() 74 void dexDataMapAdd(DexDataMap* map, u4 offset, u2 type) { in dexDataMapAdd() 94 int dexDataMapGet(DexDataMap* map, u4 offset) { in dexDataMapGet() 125 bool dexDataMapVerify(DexDataMap* map, u4 offset, u2 type) { in dexDataMapVerify()
|
D | Android.mk | 21 DexDataMap.cpp \
|
D | DexSwapVerify.cpp | 50 DexDataMap* pDataMap; // set after map verification
|