Home
last modified time | relevance | path

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

/art/tools/dexfuzz/src/dexfuzz/rawdex/
DProtoIdItem.java22 public int shortyIdx; field in ProtoIdItem
29 shortyIdx = file.readUInt(); in read()
37 file.writeUInt(shortyIdx); in write()
44 if (kind == IndexUpdateKind.STRING_ID && shortyIdx >= insertedIdx) { in incrementIndex()
45 shortyIdx++; in incrementIndex()
/art/tools/dexfuzz/src/dexfuzz/program/
DMutatableCode.java356 int shortyIdx = 0; in finishedUsingTemporaryVRegs() local
358 shortyIdx = 1; in finishedUsingTemporaryVRegs()
371 if (shortyIdx > 0) { in finishedUsingTemporaryVRegs()
372 type = shorty.charAt(shortyIdx); in finishedUsingTemporaryVRegs()
374 shortyIdx++; in finishedUsingTemporaryVRegs()
DIdCreator.java718 int shortyIdx = findOrCreateString(shorty); in createProtoId() local
722 newProtoId.shortyIdx = shortyIdx; in createProtoId()
758 int shortyIdx = findString(shorty); in findProtoId() local
759 if (shortyIdx == -1) { in findProtoId()
780 if (shortyIdx == protoId.shortyIdx in findProtoId()
787 if (shortyIdx == protoId.shortyIdx in findProtoId()
DProgram.java305 String shorty = rawDexFile.stringDatas.get(protoIdItem.shortyIdx).getString(); in associateMethod()