Home
last modified time | relevance | path

Searched refs:Patch (Results 1 – 6 of 6) sorted by relevance

/art/compiler/
Delf_patcher.h36 static bool Patch(const CompilerDriver* driver, ElfFile* elf_file,
42 static bool Patch(const CompilerDriver* driver, ElfFile* elf_file,
48 static bool Patch(const CompilerDriver* driver, ElfFile* elf_file, in Patch() function
52 return ElfPatcher::Patch(driver, elf_file, oat_location, in Patch()
56 static bool Patch(const CompilerDriver* driver, ElfFile* elf_file, in Patch() function
60 return ElfPatcher::Patch(driver, elf_file, oat_file, oat_data_begin, in Patch()
Delf_patcher.cc39 bool ElfPatcher::Patch(const CompilerDriver* driver, ElfFile* elf_file, in Patch() function in art::ElfPatcher
55 return ElfPatcher::Patch(driver, elf_file, oat_file, in Patch()
59 bool ElfPatcher::Patch(const CompilerDriver* driver, ElfFile* elf, const OatFile* oat_file, in Patch() function in art::ElfPatcher
Dimage_writer.cc831 if (!ElfPatcher::Patch(&compiler_driver_, elf.get(), oat_file_, in PatchOatCodeAndMethods()
/art/patchoat/
Dpatchoat.h43 static bool Patch(File* oat_in, off_t delta, File* oat_out, TimingLogger* timings);
45 static bool Patch(const std::string& art_location, off_t delta, File* art_out, InstructionSet isa,
48 static bool Patch(const File* oat_in, const std::string& art_location,
Dpatchoat.cc111 bool PatchOat::Patch(const std::string& image_location, off_t delta, in Patch() function in art::PatchOat
189 bool PatchOat::Patch(const File* input_oat, const std::string& image_location, off_t delta, in Patch() function in art::PatchOat
444 bool PatchOat::Patch(File* input_oat, off_t delta, File* output_oat, TimingLogger* timings) { in Patch() function in art::PatchOat
1110 ret = PatchOat::Patch(input_oat.get(), input_image_location, base_delta, in patchoat()
1114 ret = PatchOat::Patch(input_oat.get(), base_delta, output_oat.get(), &timings); in patchoat()
1118 ret = PatchOat::Patch(input_image_location, base_delta, output_image.get(), isa, &timings); in patchoat()
/art/dex2oat/
Ddex2oat.cc340 return ElfPatcher::Patch(compiler_driver, elf_file.get(), oat_location, error_msg); in PatchOatCode()