Searched refs:sectionSize (Results 1 - 4 of 4) sorted by relevance

/external/smali/dexlib/src/main/java/org/jf/dexlib/
H A DMapItem.java75 int sectionSize = in.readInt();
78 readContext.addSection(itemType, sectionSize, sectionOffset);
110 private void writeSectionInfo(AnnotatedOutput out, ItemType itemType, int sectionSize, int sectionOffset) { argument
114 out.annotate(4, "section_size: 0x" + Integer.toHexString(sectionSize) + " (" + sectionSize + ")");
120 out.writeInt(sectionSize);
H A DHeaderItem.java87 int sectionSize;
95 sectionSize = in.readInt();
97 readContext.addSection(ItemType.TYPE_STRING_ID_ITEM, sectionSize, sectionOffset);
100 sectionSize = in.readInt();
102 readContext.addSection(ItemType.TYPE_TYPE_ID_ITEM, sectionSize, sectionOffset);
105 sectionSize = in.readInt();
107 readContext.addSection(ItemType.TYPE_PROTO_ID_ITEM, sectionSize, sectionOffset);
110 sectionSize = in.readInt();
112 readContext.addSection(ItemType.TYPE_FIELD_ID_ITEM, sectionSize, sectionOffset);
115 sectionSize
[all...]
H A DReadContext.java143 * @param sectionSize the size of the section
146 public void addSection(final ItemType itemType, int sectionSize, int sectionOffset) { argument
149 sectionSizes[itemType.SectionIndex] = sectionSize;
151 if (storedSectionSize != sectionSize) {
H A DDexFile.java429 int sectionSize = readContext.getSectionSize(section.ItemType);
431 section.readFrom(sectionSize, in, readContext);

Completed in 62 milliseconds