Home | History | Annotate | Download | only in oatdump

Lines Matching refs:oat_file_

143     : oat_file_(oat_file),
146 instruction_set_(oat_file_.GetOatHeader().GetInstructionSet()),
164 const OatHeader& oat_header = oat_file_.GetOatHeader();
185 os << StringPrintf(" (%p)", oat_file_.Begin() + oat_header.offset()); \
238 os << reinterpret_cast<const void*>(oat_file_.Begin()) << "\n\n";
241 os << reinterpret_cast<const void*>(oat_file_.End()) << "\n\n";
245 os << oat_file_.Size() << "\n\n";
261 if (reinterpret_cast<const byte*>(oat_data) < oat_file_.Begin() ||
262 reinterpret_cast<const byte*>(oat_data) > oat_file_.End()) {
266 reinterpret_cast<uintptr_t>(oat_file_.Begin());
274 return oat_file_.GetOatHeader().GetInstructionSet();
343 offsets_.insert(oat_file_.Size());
352 if (oat_file_.GetOatHeader().GetInstructionSet() == kThumb2) {
481 if (oat_method_offsets_offset > oat_file_.Size()) {
484 oat_method_offsets_offset, oat_file_.Size());
493 if (aligned_code_begin > oat_file_.Size()) {
496 aligned_code_begin, oat_file_.Size());
507 if (gc_map_offset > oat_file_.Size()) {
510 gc_map_offset, oat_file_.Size());
527 if (method_header_offset > oat_file_.Size()) {
530 method_header_offset, oat_file_.Size());
542 if (mapping_table_offset > oat_file_.Size()) {
546 mapping_table_offset, oat_file_.Size(),
561 if (vmap_table_offset > oat_file_.Size()) {
565 vmap_table_offset, oat_file_.Size(),
586 if (code_size_offset > oat_file_.Size()) {
589 code_size_offset, oat_file_.Size());
612 if (aligned_code_begin > oat_file_.Size()) {
615 aligned_code_begin, oat_file_.Size());
617 } else if (aligned_code_end > oat_file_.Size()) {
621 aligned_code_end, oat_file_.Size(),
625 if (code_size_offset + kPrologueBytes <= oat_file_.Size()) {
637 if (code_size_offset + kPrologueBytes <= oat_file_.Size()) {
956 const OatFile& oat_file_;