HomeSort by relevance Sort by last modified time
    Searched defs:readContext (Results 1 - 4 of 4) sorted by null

  /external/smali/dexlib/src/main/java/org/jf/dexlib/
OffsettedSection.java 38 public void readItems(Input in, ReadContext readContext) {
48 item.readFrom(in, i, readContext);
51 readContext.setItemsForSection(ItemType, items);
MapItem.java 42 * by this item is added to the ReadContext object, which is used when reading in the other
66 protected void readItem(Input in, ReadContext readContext) {
78 readContext.addSection(itemType, sectionSize, sectionOffset);
HeaderItem.java 69 protected void readItem(Input in, ReadContext readContext) {
117 readContext.addSection(ItemType.TYPE_MAP_LIST, 1, sectionOffset);
122 readContext.addSection(ItemType.TYPE_STRING_ID_ITEM, sectionSize, sectionOffset);
127 readContext.addSection(ItemType.TYPE_TYPE_ID_ITEM, sectionSize, sectionOffset);
132 readContext.addSection(ItemType.TYPE_PROTO_ID_ITEM, sectionSize, sectionOffset);
137 readContext.addSection(ItemType.TYPE_FIELD_ID_ITEM, sectionSize, sectionOffset);
142 readContext.addSection(ItemType.TYPE_METHOD_ID_ITEM, sectionSize, sectionOffset);
147 readContext.addSection(ItemType.TYPE_CLASS_DEF_ITEM, sectionSize, sectionOffset);
DexFile.java 388 ReadContext readContext = new ReadContext();
390 HeaderItem.readFrom(in, 0, readContext);
393 int mapOffset = readContext.getSectionOffset(ItemType.TYPE_MAP_LIST);
396 MapItem.readFrom(in, 0, readContext);
427 int sectionOffset = readContext.getSectionOffset(section.ItemType);
429 int sectionSize = readContext.getSectionSize(section.ItemType);
431 section.readFrom(sectionSize, in, readContext);
    [all...]

Completed in 853 milliseconds