Home
last modified time | relevance | path

Searched refs:orig_header (Results 1 – 3 of 3) sorted by relevance

/art/dexlayout/
Ddex_verify.cc33 bool VerifyOutputDexFile(dex_ir::Header* orig_header, in VerifyOutputDexFile() argument
37 if (!VerifyIds(orig_header->StringIds(), output_header->StringIds(), "string ids", error_msg) || in VerifyOutputDexFile()
38 !VerifyIds(orig_header->TypeIds(), output_header->TypeIds(), "type ids", error_msg) || in VerifyOutputDexFile()
39 !VerifyIds(orig_header->ProtoIds(), output_header->ProtoIds(), "proto ids", error_msg) || in VerifyOutputDexFile()
40 !VerifyIds(orig_header->FieldIds(), output_header->FieldIds(), "field ids", error_msg) || in VerifyOutputDexFile()
41 !VerifyIds(orig_header->MethodIds(), output_header->MethodIds(), "method ids", error_msg)) { in VerifyOutputDexFile()
45 if (!VerifyClassDefs(orig_header->ClassDefs(), output_header->ClassDefs(), error_msg)) { in VerifyOutputDexFile()
Ddex_verify.h29 bool VerifyOutputDexFile(dex_ir::Header* orig_header,
Ddexlayout.cc1973 std::unique_ptr<dex_ir::Header> orig_header( in ProcessDexFile() local
1977 CHECK(VerifyOutputDexFile(output_header.get(), orig_header.get(), error_msg)) << *error_msg; in ProcessDexFile()