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

  /external/smali/dexlib/src/main/java/org/jf/dexlib/
MapItem.java 76 int sectionOffset = in.readInt();
78 readContext.addSection(itemType, sectionSize, sectionOffset);
110 private void writeSectionInfo(AnnotatedOutput out, ItemType itemType, int sectionSize, int sectionOffset) {
115 out.annotate(4, "section_off: 0x" + Integer.toHexString(sectionOffset));
121 out.writeInt(sectionOffset);
HeaderItem.java 113 int sectionOffset;
116 sectionOffset = in.readInt();
117 readContext.addSection(ItemType.TYPE_MAP_LIST, 1, sectionOffset);
121 sectionOffset = in.readInt();
122 readContext.addSection(ItemType.TYPE_STRING_ID_ITEM, sectionSize, sectionOffset);
126 sectionOffset = in.readInt();
127 readContext.addSection(ItemType.TYPE_TYPE_ID_ITEM, sectionSize, sectionOffset);
131 sectionOffset = in.readInt();
132 readContext.addSection(ItemType.TYPE_PROTO_ID_ITEM, sectionSize, sectionOffset);
136 sectionOffset = in.readInt()
    [all...]
DexFile.java 427 int sectionOffset = readContext.getSectionOffset(section.ItemType);
428 if (sectionOffset > 0) {
430 in.setCursor(sectionOffset);
    [all...]
  /dalvik/libdex/
DexSwapVerify.cpp 323 static bool checkHeaderSection(const CheckState* state, u4 sectionOffset,
330 if (sectionOffset != 0) {
331 ALOGE("Header at %#x; not at start of file", sectionOffset);
526 static bool checkMapSection(const CheckState* state, u4 sectionOffset,
533 if (sectionOffset != state->pHeader->mapOff) {
535 sectionOffset, state->pHeader->mapOff);
539 const DexMapList* pMap = (const DexMapList*) filePointer(state, sectionOffset);
542 sectionOffset + sizeof(u4) + (pMap->size * sizeof(DexMapItem));
    [all...]

Completed in 85 milliseconds