Home
last modified time | relevance | path

Searched refs:NativeLocationInImage (Results 1 – 3 of 3) sorted by relevance

/art/dex2oat/linker/
Dimage_writer.h559 T* NativeLocationInImage(T* obj) REQUIRES_SHARED(Locks::mutator_lock_);
560 ArtField* NativeLocationInImage(ArtField* src_field) REQUIRES_SHARED(Locks::mutator_lock_);
Dimage_writer.cc2937 DCHECK_EQ(copy->Get(i, target_ptr_size_), NativeLocationInImage(method)); in CopyAndFixupImTable()
2950 NativeLocationInImage(interface_method)); in CopyAndFixupImtConflictTable()
2952 NativeLocationInImage(implementation_method)); in CopyAndFixupImtConflictTable()
3321 T* ImageWriter::NativeLocationInImage(T* obj) { in NativeLocationInImage() function in art::linker::ImageWriter
3331 ArtField* ImageWriter::NativeLocationInImage(ArtField* src_field) { in NativeLocationInImage() function in art::linker::ImageWriter
3337 LengthPrefixedArray<ArtField>* dst_fields = NativeLocationInImage(src_fields); in NativeLocationInImage()
3356 return image_writer_->NativeLocationInImage(ptr); in operator ()()
3848 void* new_value = NativeLocationInImage(src_value); in CopyAndFixupPointer()
/art/runtime/
Druntime_image.cc681 return helper_->NativeLocationInImage(ptr, /* must_have_relocation= */ true); in operator ()()
685 return helper_->NativeLocationInImage(ptr, must_have_relocation); in operator ()()
692 template <typename T> T* NativeLocationInImage(T* ptr, bool must_have_relocation) const { in NativeLocationInImage() function in art::RuntimeImageHelper