Lines Matching refs:oat_index

83       size_t oat_index = GetOatIndex(object);  in GetImageAddress()  local
84 const ImageInfo& image_info = GetImageInfo(oat_index); in GetImageAddress()
104 size_t GetOatFileOffset(size_t oat_index) const { in GetOatFileOffset() argument
105 return GetImageInfo(oat_index).oat_offset_; in GetOatFileOffset()
108 const uint8_t* GetOatFileBegin(size_t oat_index) const { in GetOatFileBegin() argument
109 return GetImageInfo(oat_index).oat_file_begin_; in GetOatFileBegin()
121 uintptr_t GetOatDataBegin(size_t oat_index) { in GetOatDataBegin() argument
122 return reinterpret_cast<uintptr_t>(GetImageInfo(oat_index).oat_data_begin_); in GetOatDataBegin()
138 void UpdateOatFileLayout(size_t oat_index,
143 void UpdateOatFileHeader(size_t oat_index, const OatHeader& oat_header);
340 size_t oat_index = GetOatIndex(object); in GetLocalAddress() local
341 const ImageInfo& image_info = GetImageInfo(oat_index); in GetLocalAddress()
378 void CreateHeader(size_t oat_index)
380 mirror::ObjectArray<mirror::Object>* CreateImageRoots(size_t oat_index) const
397 void CopyAndFixupNativeData(size_t oat_index) SHARED_REQUIRES(Locks::mutator_lock_);
433 size_t oat_index)
438 void TryAssignConflictTableOffset(ImtConflictTable* table, size_t oat_index)
485 ImageInfo& GetImageInfo(size_t oat_index) { in GetImageInfo() argument
486 return image_infos_[oat_index]; in GetImageInfo()
489 const ImageInfo& GetImageInfo(size_t oat_index) const { in GetImageInfo() argument
490 return image_infos_[oat_index]; in GetImageInfo()
530 size_t oat_index; member