Home
last modified time | relevance | path

Searched refs:mapOff (Results 1 – 5 of 5) sorted by relevance

/dalvik/dexgen/src/com/android/dexgen/dex/file/
DHeaderItem.java67 int mapOff = file.getMap().getFileOffset(); in writeTo() local
84 out.annotate(4, "map_off: " + Hex.u4(mapOff)); in writeTo()
105 out.writeInt(mapOff); in writeTo()
/dalvik/dx/src/com/android/dx/dex/file/
DHeaderItem.java57 int mapOff = file.getMap().getFileOffset(); in writeTo() local
76 out.annotate(4, "map_off: " + Hex.u4(mapOff)); in writeTo()
97 out.writeInt(mapOff); in writeTo()
/dalvik/libdex/
DDexFile.h276 u4 mapOff; member
672 u4 mapOff = pDexFile->pHeader->mapOff; in dexGetMap() local
674 if (mapOff == 0) { in dexGetMap()
677 return (const DexMapList*) (pDexFile->baseAddr + mapOff); in dexGetMap()
DDexSwapVerify.cpp261 SWAP_OFFSET4(pHeader->mapOff); in swapDexHeader()
517 if (sectionOffset != state->pHeader->mapOff) { in checkMapSection()
519 sectionOffset, state->pHeader->mapOff); in checkMapSection()
3022 if (pHeader->mapOff != 0) { in dexSwapAndVerify()
3024 DexMapList* pDexMap = (DexMapList*) (addr + pHeader->mapOff); in dexSwapAndVerify()
/dalvik/dexdump/
DDexDump.cpp1850 const u4 offset = pDexFile->pHeader->mapOff; in findMapItem()