Home
last modified time | relevance | path

Searched refs:code_offset_ (Results 1 – 5 of 5) sorted by relevance

/art/runtime/oat/
Doat_file-inl.h95 if (code_offset_ == 0) { in GetQuickCode()
98 return reinterpret_cast<const void *>(begin_ + code_offset_); in GetQuickCode()
Doat_file.h85 explicit OatMethodOffsets(uint32_t code_offset = 0) : code_offset_(code_offset) {} in code_offset_() function
92 uint32_t code_offset_; variable
216 uint32_t GetCodeOffset() const { return code_offset_; } in GetCodeOffset()
237 : begin_(base), code_offset_(code_offset) { in OatMethod()
252 uint32_t code_offset_; variable
Doat_file.cc2439 return OatMethod(oat_file_->Begin(), oat_method_offsets->code_offset_); in GetOatMethod()
/art/dex2oat/linker/
Doat_writer.cc1260 offsets->code_offset_ = quick_code_offset; in VisitMethod()
1377 DCHECK_EQ(oat_class->method_offsets_[method_offsets_index_].code_offset_, 0u); in VisitMethod()
1491 reinterpret_cast<void*>(offsets.code_offset_), pointer_size_); in VisitMethod()
1604 if (method_offsets.code_offset_ > offset_) { in VisitMethod()
1622 method_offsets.code_offset_, in VisitMethod()
/art/runtime/
Dclass_linker.cc3773 DCHECK_NE(current_->code_offset_, 0u); in GetAndAdvance()
3774 const void* result = begin_ + current_->code_offset_; in GetAndAdvance()