Lines Matching refs:Header

33 static uint32_t HeaderOffset(const dex_ir::Header* header ATTRIBUTE_UNUSED) {  in HeaderOffset()
37 static uint32_t HeaderSize(const dex_ir::Header* header ATTRIBUTE_UNUSED) { in HeaderSize()
48 std::function<uint32_t(dex_ir::Header*)> size_fn;
50 std::function<uint32_t(dex_ir::Header*)> offset_fn;
62 [](const dex_ir::Header* h) { return h->StringIds().Size(); }, in __anonf33c4afe0102()
63 [](const dex_ir::Header* h) { return h->StringIds().GetOffset(); } in __anonf33c4afe0202()
67 [](const dex_ir::Header* h) { return h->TypeIds().Size(); }, in __anonf33c4afe0302()
68 [](const dex_ir::Header* h) { return h->TypeIds().GetOffset(); } in __anonf33c4afe0402()
72 [](const dex_ir::Header* h) { return h->ProtoIds().Size(); }, in __anonf33c4afe0502()
73 [](const dex_ir::Header* h) { return h->ProtoIds().GetOffset(); } in __anonf33c4afe0602()
77 [](const dex_ir::Header* h) { return h->FieldIds().Size(); }, in __anonf33c4afe0702()
78 [](const dex_ir::Header* h) { return h->FieldIds().GetOffset(); } in __anonf33c4afe0802()
82 [](const dex_ir::Header* h) { return h->MethodIds().Size(); }, in __anonf33c4afe0902()
83 [](const dex_ir::Header* h) { return h->MethodIds().GetOffset(); } in __anonf33c4afe0a02()
87 [](const dex_ir::Header* h) { return h->ClassDefs().Size(); }, in __anonf33c4afe0b02()
88 [](const dex_ir::Header* h) { return h->ClassDefs().GetOffset(); } in __anonf33c4afe0c02()
92 [](const dex_ir::Header* h) { return h->CallSiteIds().Size(); }, in __anonf33c4afe0d02()
93 [](const dex_ir::Header* h) { return h->CallSiteIds().GetOffset(); } in __anonf33c4afe0e02()
97 [](const dex_ir::Header* h) { return h->MethodHandleItems().Size(); }, in __anonf33c4afe0f02()
98 [](const dex_ir::Header* h) { return h->MethodHandleItems().GetOffset(); } in __anonf33c4afe1002()
102 [](const dex_ir::Header* h) { return h->StringDatas().Size(); }, in __anonf33c4afe1102()
103 [](const dex_ir::Header* h) { return h->StringDatas().GetOffset(); } in __anonf33c4afe1202()
107 [](const dex_ir::Header* h) { return h->TypeLists().Size(); }, in __anonf33c4afe1302()
108 [](const dex_ir::Header* h) { return h->TypeLists().GetOffset(); } in __anonf33c4afe1402()
112 [](const dex_ir::Header* h) { return h->EncodedArrayItems().Size(); }, in __anonf33c4afe1502()
113 [](const dex_ir::Header* h) { return h->EncodedArrayItems().GetOffset(); } in __anonf33c4afe1602()
117 [](const dex_ir::Header* h) { return h->AnnotationItems().Size(); }, in __anonf33c4afe1702()
118 [](const dex_ir::Header* h) { return h->AnnotationItems().GetOffset(); } in __anonf33c4afe1802()
122 [](const dex_ir::Header* h) { return h->AnnotationSetItems().Size(); }, in __anonf33c4afe1902()
123 [](const dex_ir::Header* h) { return h->AnnotationSetItems().GetOffset(); } in __anonf33c4afe1a02()
127 [](const dex_ir::Header* h) { return h->AnnotationSetRefLists().Size(); }, in __anonf33c4afe1b02()
128 [](const dex_ir::Header* h) { return h->AnnotationSetRefLists().GetOffset(); } in __anonf33c4afe1c02()
132 [](const dex_ir::Header* h) { return h->AnnotationsDirectoryItems().Size(); }, in __anonf33c4afe1d02()
133 [](const dex_ir::Header* h) { return h->AnnotationsDirectoryItems().GetOffset(); } in __anonf33c4afe1e02()
137 [](const dex_ir::Header* h) { return h->DebugInfoItems().Size(); }, in __anonf33c4afe1f02()
138 [](const dex_ir::Header* h) { return h->DebugInfoItems().GetOffset(); } in __anonf33c4afe2002()
142 [](const dex_ir::Header* h) { return h->CodeItems().Size(); }, in __anonf33c4afe2102()
143 [](const dex_ir::Header* h) { return h->CodeItems().GetOffset(); } in __anonf33c4afe2202()
147 [](const dex_ir::Header* h) { return h->ClassDatas().Size(); }, in __anonf33c4afe2302()
148 [](const dex_ir::Header* h) { return h->ClassDatas().GetOffset(); } in __anonf33c4afe2402()
152 std::vector<dex_ir::DexFileSection> GetSortedDexFileSections(dex_ir::Header* header, in GetSortedDexFileSections()