Searched defs:sectionOffset (Results 1 - 2 of 2) sorted by relevance

/external/smali/dexlib/src/main/java/org/jf/dexlib/
H A DMapItem.java76 int sectionOffset = in.readInt();
78 readContext.addSection(itemType, sectionSize, sectionOffset);
110 private void writeSectionInfo(AnnotatedOutput out, ItemType itemType, int sectionSize, int sectionOffset) { argument
115 out.annotate(4, "section_off: 0x" + Integer.toHexString(sectionOffset));
121 out.writeInt(sectionOffset);
H A DReadContext.java144 * @param sectionOffset the offset of the section
146 public void addSection(final ItemType itemType, int sectionSize, int sectionOffset) { argument
159 sectionOffsets[itemType.SectionIndex] = sectionOffset;
161 if (storedSectionOffset != sectionOffset) {

Completed in 389 milliseconds