Lines Matching refs:oat_header

185     const OatHeader& oat_header = oat_file_->GetOatHeader();  in Symbolize()  local
187 if (oat_header.Get ## fn_name ## Offset() != 0) { \ in Symbolize()
190 info.isa = oat_header.GetInstructionSet(); \ in Symbolize()
192 size_t code_offset = oat_header.Get ## fn_name ## Offset(); \ in Symbolize()
193 code_offset -= CompiledCode::CodeDelta(oat_header.GetInstructionSet()); \ in Symbolize()
194 info.code_address = code_offset - oat_header.GetExecutableOffset(); \ in Symbolize()
294 const OatHeader& oat_header = oat_file_->GetOatHeader(); in WalkOatMethod() local
301 uint32_t entry_point = oat_method.GetCodeOffset() - oat_header.GetExecutableOffset(); in WalkOatMethod()
312 info.isa = oat_header.GetInstructionSet(); in WalkOatMethod()
314 info.is_native_debuggable = oat_header.IsNativeDebuggable(); in WalkOatMethod()
415 const OatHeader& oat_header = oat_file_.GetOatHeader(); in Dump() local
418 os << oat_header.GetMagic() << "\n\n"; in Dump()
424 os << StringPrintf("0x%08x\n\n", oat_header.GetChecksum()); in Dump()
427 os << oat_header.GetInstructionSet() << "\n\n"; in Dump()
431 InstructionSetFeatures::FromBitmap(oat_header.GetInstructionSet(), in Dump()
432 oat_header.GetInstructionSetFeaturesBitmap())); in Dump()
438 os << oat_header.GetDexFileCount() << "\n\n"; in Dump()
442 os << StringPrintf("0x%08x", oat_header.offset()); \ in Dump()
443 if (oat_header.offset() != 0 && options_.absolute_addresses_) { \ in Dump()
444 os << StringPrintf(" (%p)", oat_file_.Begin() + oat_header.offset()); \ in Dump()
469 while (oat_header.GetStoreKeyValuePairByIndex(index, &key, &value)) { in Dump()
491 resolved_addr2instr_ = options_.addr2instr_ + oat_header.GetExecutableOffset(); in Dump()