Home
last modified time | relevance | path

Searched refs:stub_type (Results 1 – 2 of 2) sorted by relevance

/aosp12/art/dex2oat/linker/
H A Dimage_writer.h240 friend std::ostream& operator<<(std::ostream& stream, StubType stub_type);
295 size_t GetStubOffset(StubType stub_type) const { in GetStubOffset()
296 DCHECK_LT(static_cast<size_t>(stub_type), kNumberOfStubTypes); in GetStubOffset()
297 return stub_offsets_[static_cast<size_t>(stub_type)]; in GetStubOffset()
300 void SetStubOffset(StubType stub_type, size_t offset) { in SetStubOffset()
301 DCHECK_LT(static_cast<size_t>(stub_type), kNumberOfStubTypes); in SetStubOffset()
302 stub_offsets_[static_cast<size_t>(stub_type)] = offset; in SetStubOffset()
711 std::ostream& operator<<(std::ostream& stream, ImageWriter::StubType stub_type);
H A Dimage_writer.cc3322 StubType stub_type = orig->IsCriticalNative() ? StubType::kJNIDlsymLookupCriticalTrampoline in CopyAndFixupMethod() local
3324 copy->SetEntryPointFromJniPtrSize(GetOatAddress(stub_type), target_ptr_size_); in CopyAndFixupMethod()