/art/compiler/linker/ |
D | multi_oat_relative_patcher.h | 86 uint32_t WriteThunks(OutputStream* out, uint32_t offset) { in WriteThunks() function 88 offset = relative_patcher_->WriteThunks(out, offset); in WriteThunks()
|
D | multi_oat_relative_patcher_test.cc | 55 uint32_t WriteThunks(OutputStream* out, uint32_t offset) OVERRIDE { in WriteThunks() function in art::linker::MultiOatRelativePatcherTest::MockPatcher 214 uint32_t method1_offset_check = patcher_.WriteThunks(&vos, method1_offset); in TEST_F() 224 uint32_t method2_offset_adjusted = patcher_.WriteThunks(&vos, method2_offset); in TEST_F() 241 uint32_t method3_offset_adjusted = patcher_.WriteThunks(&vos, method3_offset); in TEST_F()
|
D | relative_patcher.h | 97 virtual uint32_t WriteThunks(OutputStream* out, uint32_t offset) = 0;
|
D | relative_patcher.cc | 54 uint32_t WriteThunks(OutputStream* out ATTRIBUTE_UNUSED, uint32_t offset) OVERRIDE { in Create() function in art::linker::RelativePatcher::Create::FINAL
|
D | relative_patcher_test.h | 137 offset = patcher_->WriteThunks(&out_, offset); in Link() 179 offset = patcher_->WriteThunks(&out_, offset); in Link()
|
/art/compiler/linker/x86/ |
D | relative_patcher_x86_base.h | 31 uint32_t WriteThunks(OutputStream* out, uint32_t offset) OVERRIDE;
|
D | relative_patcher_x86_base.cc | 33 uint32_t X86BaseRelativePatcher::WriteThunks(OutputStream* out ATTRIBUTE_UNUSED, uint32_t offset) { in WriteThunks() function in art::linker::X86BaseRelativePatcher
|
/art/compiler/linker/arm/ |
D | relative_patcher_arm_base.h | 34 uint32_t WriteThunks(OutputStream* out, uint32_t offset) OVERRIDE;
|
D | relative_patcher_arm_base.cc | 54 uint32_t ArmBaseRelativePatcher::WriteThunks(OutputStream* out, uint32_t offset) { in WriteThunks() function in art::linker::ArmBaseRelativePatcher
|
/art/compiler/linker/arm64/ |
D | relative_patcher_arm64.h | 35 uint32_t WriteThunks(OutputStream* out, uint32_t offset) OVERRIDE;
|
D | relative_patcher_arm64.cc | 116 uint32_t Arm64RelativePatcher::WriteThunks(OutputStream* out, uint32_t offset) { in WriteThunks() function in art::linker::Arm64RelativePatcher 140 return ArmBaseRelativePatcher::WriteThunks(out, offset); in WriteThunks()
|
/art/compiler/ |
D | oat_writer.cc | 982 offset_ = writer_->relative_patcher_->WriteThunks(out_, offset_); in EndClass() 1008 offset_ = writer_->relative_patcher_->WriteThunks(out, offset_); in VisitMethod()
|