Searched refs:orig_header (Results 1 – 3 of 3) sorted by relevance
/art/dexlayout/ |
D | dex_verify.cc | 33 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()
|
D | dex_verify.h | 29 bool VerifyOutputDexFile(dex_ir::Header* orig_header,
|
D | dexlayout.cc | 1969 std::unique_ptr<dex_ir::Header> orig_header( in ProcessDexFile() local 1973 CHECK(VerifyOutputDexFile(output_header.get(), orig_header.get(), error_msg)) << *error_msg; in ProcessDexFile()
|