Home
last modified time | relevance | path

Searched refs:getNewOffset (Results 1 – 13 of 13) sorted by relevance

/art/tools/dexfuzz/src/dexfuzz/rawdex/
DHeaderItem.java64 linkOff = file.getOffsetTracker().getNewOffset(file.readUInt()); in read()
65 mapOff = file.getOffsetTracker().getNewOffset(file.readUInt()); in read()
67 stringIdsOff = file.getOffsetTracker().getNewOffset(file.readUInt()); in read()
69 typeIdsOff = file.getOffsetTracker().getNewOffset(file.readUInt()); in read()
71 protoIdsOff = file.getOffsetTracker().getNewOffset(file.readUInt()); in read()
73 fieldIdsOff = file.getOffsetTracker().getNewOffset(file.readUInt()); in read()
75 methodIdsOff = file.getOffsetTracker().getNewOffset(file.readUInt()); in read()
77 classDefsOff = file.getOffsetTracker().getNewOffset(file.readUInt()); in read()
79 dataOff = file.getOffsetTracker().getNewOffset(file.readUInt()); in read()
DClassDefItem.java45 interfacesOff = file.getOffsetTracker().getNewOffset(file.readUInt()); in read()
47 annotationsOff = file.getOffsetTracker().getNewOffset(file.readUInt()); in read()
48 classDataOff = file.getOffsetTracker().getNewOffset(file.readUInt()); in read()
49 staticValuesOff = file.getOffsetTracker().getNewOffset(file.readUInt()); in read()
DAnnotationOffItem.java26 annotationOff = file.getOffsetTracker().getNewOffset(file.readUInt()); in read()
DAnnotationSetRefItem.java26 annotationsOff = file.getOffsetTracker().getNewOffset(file.readUInt()); in read()
DStringIdItem.java27 stringDataOff = file.getOffsetTracker().getNewOffset(file.readUInt()); in read()
DFieldAnnotation.java28 annotationsOff = file.getOffsetTracker().getNewOffset(file.readUInt()); in read()
DParameterAnnotation.java28 annotationsOff = file.getOffsetTracker().getNewOffset(file.readUInt()); in read()
DMethodAnnotation.java28 annotationsOff = file.getOffsetTracker().getNewOffset(file.readUInt()); in read()
DProtoIdItem.java31 parametersOff = file.getOffsetTracker().getNewOffset(file.readUInt()); in read()
DMapItem.java53 offset = file.getOffsetTracker().getNewOffset(file.readUInt()); in read()
DEncodedMethod.java32 codeOff = file.getOffsetTracker().getNewOffset(file.readUleb128()); in read()
DAnnotationsDirectoryItem.java34 classAnnotationsOff = file.getOffsetTracker().getNewOffset(file.readUInt()); in read()
DOffsetTracker.java140 public Offset getNewOffset(int originalOffset) throws IOException { in getNewOffset() method in OffsetTracker