Home
last modified time | relevance | path

Searched refs:typeIds (Results 1 – 4 of 4) sorted by relevance

/art/tools/dexfuzz/src/dexfuzz/rawdex/
DRawDexFile.java34 public List<TypeIdItem> typeIds; field in RawDexFile
64 typeIds = new ArrayList<TypeIdItem>(header.typeIdsSize); in read()
125 if (mapItem.size != typeIds.size()) { in write()
126 Log.debug("Updating TypeIDs List size: " + typeIds.size()); in write()
127 mapItem.size = typeIds.size(); in write()
128 header.typeIdsSize = typeIds.size(); in write()
158 if (mapItem.size != typeIds.size()) { in write()
160 + " no longer matches TypeIDs table size " + typeIds.size()); in write()
162 for (TypeIdItem typeId : typeIds) { in write()
353 for (TypeIdItem typeId : typeIds) { in incrementIndex()
DMapList.java78 rawDexFile.typeIds.add(newTypeId); in read()
/art/tools/dexfuzz/src/dexfuzz/program/
DIdCreator.java122 for (TypeIdItem typeId : rawDexFile.typeIds) { in findTypeIdInsertionPoint()
257 if (rawDexFile.typeIds.size() >= 65536) { in createTypeId()
271 rawDexFile.typeIds.add(newTypeIdIdx, newTypeId); in createTypeId()
277 TypeIdItem prevTypeId = rawDexFile.typeIds.get(newTypeIdIdx - 1); in createTypeId()
300 for (TypeIdItem typeId : rawDexFile.typeIds) { in findTypeId()
DProgram.java264 TypeIdItem typeIdItem = rawDexFile.typeIds.get(typeIdx); in associateCodeItemsWithMethodNames()
558 return rawDexFile.typeIds.size(); in getTotalPoolIndicesByKind()