Lines Matching refs:pHeader
44 const DexHeader* pHeader; in allocateAuxStructures() local
47 pHeader = pDexFile->pHeader; in allocateAuxStructures()
49 stringSize = pHeader->stringIdsSize * sizeof(struct StringObject*); in allocateAuxStructures()
50 classSize = pHeader->typeIdsSize * sizeof(struct ClassObject*); in allocateAuxStructures()
51 methodSize = pHeader->methodIdsSize * sizeof(struct Method*); in allocateAuxStructures()
52 fieldSize = pHeader->fieldIdsSize * sizeof(struct Field*); in allocateAuxStructures()
66 pDvmDex->pHeader = pHeader; in allocateAuxStructures()
187 totalSize = pDvmDex->pHeader->stringIdsSize * sizeof(struct StringObject*); in dvmDexFileFree()
188 totalSize += pDvmDex->pHeader->typeIdsSize * sizeof(struct ClassObject*); in dvmDexFileFree()
189 totalSize += pDvmDex->pHeader->methodIdsSize * sizeof(struct Method*); in dvmDexFileFree()
190 totalSize += pDvmDex->pHeader->fieldIdsSize * sizeof(struct Field*); in dvmDexFileFree()