HomeSort by relevance Sort by last modified time
    Searched refs:WriteThunks (Results 1 - 16 of 16) sorted by null

  /art/compiler/linker/x86/
relative_patcher_x86_base.h 31 uint32_t WriteThunks(OutputStream* out, uint32_t offset) OVERRIDE;
relative_patcher_x86_base.cc 33 uint32_t X86BaseRelativePatcher::WriteThunks(OutputStream* out ATTRIBUTE_UNUSED, uint32_t offset) {
  /art/compiler/linker/mips/
relative_patcher_mips.h 35 uint32_t WriteThunks(OutputStream* out, uint32_t offset) OVERRIDE;
relative_patcher_mips.cc 35 uint32_t MipsRelativePatcher::WriteThunks(OutputStream* out ATTRIBUTE_UNUSED, uint32_t offset) {
  /art/compiler/linker/mips64/
relative_patcher_mips64.h 33 uint32_t WriteThunks(OutputStream* out, uint32_t offset) OVERRIDE;
relative_patcher_mips64.cc 35 uint32_t Mips64RelativePatcher::WriteThunks(OutputStream* out ATTRIBUTE_UNUSED, uint32_t offset) {
  /art/compiler/linker/
multi_oat_relative_patcher.h 52 // GetOffset() and an error indication in WriteThunks(). Additionally, it must be
85 // Wrapper around RelativePatcher::WriteThunks(), doing offset adjustment.
86 uint32_t WriteThunks(OutputStream* out, uint32_t offset) {
88 offset = relative_patcher_->WriteThunks(out, offset);
relative_patcher.h 97 virtual uint32_t WriteThunks(OutputStream* out, uint32_t offset) = 0;
multi_oat_relative_patcher_test.cc 55 uint32_t WriteThunks(OutputStream* out, uint32_t offset) OVERRIDE {
220 uint32_t method1_offset_check = patcher_.WriteThunks(&vos, method1_offset);
230 uint32_t method2_offset_adjusted = patcher_.WriteThunks(&vos, method2_offset);
247 uint32_t method3_offset_adjusted = patcher_.WriteThunks(&vos, method3_offset);
relative_patcher.cc 60 uint32_t WriteThunks(OutputStream* out ATTRIBUTE_UNUSED, uint32_t offset) OVERRIDE {
relative_patcher_test.h 140 offset = patcher_->WriteThunks(&out_, offset);
186 offset = patcher_->WriteThunks(&out_, offset);
  /art/compiler/linker/arm/
relative_patcher_arm_base.h 36 uint32_t WriteThunks(OutputStream* out, uint32_t offset) OVERRIDE;
relative_patcher_arm_base.cc 158 // We also need to delay initiating the pending_thunks_ until the call to WriteThunks().
159 // Check that the `pending_thunks_.capacity()` indicates that no WriteThunks() has taken place.
164 uint32_t ArmBaseRelativePatcher::WriteThunks(OutputStream* out, uint32_t offset) {
169 // First call to WriteThunks(), prepare the thunks for writing.
  /art/compiler/linker/arm64/
relative_patcher_arm64.h 57 uint32_t WriteThunks(OutputStream* out, uint32_t offset) OVERRIDE;
relative_patcher_arm64.cc 156 uint32_t Arm64RelativePatcher::WriteThunks(OutputStream* out, uint32_t offset) {
180 return ArmBaseRelativePatcher::WriteThunks(out, offset);
  /art/compiler/
oat_writer.cc     [all...]

Completed in 674 milliseconds