Home
last modified time | relevance | path

Searched refs:GetPath (Results 1 – 17 of 17) sorted by relevance

/art/compiler/
Delf_fixup.cc41 LOG(WARNING) << "Failed fo fixup .dynamic in " << file->GetPath(); in Fixup()
45 LOG(WARNING) << "Failed fo fixup section headers in " << file->GetPath(); in Fixup()
49 LOG(WARNING) << "Failed fo fixup program headers in " << file->GetPath(); in Fixup()
53 LOG(WARNING) << "Failed fo fixup .dynsym in " << file->GetPath(); in Fixup()
57 LOG(WARNING) << "Failed fo fixup .symtab in " << file->GetPath(); in Fixup()
61 LOG(WARNING) << "Failed fo fixup .rel.dyn in " << file->GetPath(); in Fixup()
76 elf_file.GetFile().GetPath().c_str(), i, in FixupDynamic()
96 elf_file.GetFile().GetPath().c_str(), i, in FixupSectionHeaders()
109 CHECK_EQ(ph->p_vaddr, ph->p_paddr) << elf_file.GetFile().GetPath() << " i=" << i; in FixupProgramHeaders()
111 << elf_file.GetFile().GetPath() << " i=" << i; in FixupProgramHeaders()
[all …]
Delf_writer_mclinker.cc125 linker_config_->options().setSOName(elf_file_->GetPath()); in Init()
162 …std::unique_ptr<OatFile> oat_file(OatFile::OpenMemory(oat_contents, elf_file_->GetPath(), &error_m… in AddOatInput()
163 CHECK(oat_file.get() != NULL) << elf_file_->GetPath() << ": " << error_msg; in AddOatInput()
328 LOG(ERROR) << "Failed to link " << elf_file_->GetPath(); in Link()
336 PLOG(ERROR) << "Failed to dup file descriptor for " << elf_file_->GetPath(); in Link()
340 LOG(ERROR) << "Failed to emit " << elf_file_->GetPath(); in Link()
344 LOG(INFO) << "ELF file written successfully: " << elf_file_->GetPath(); in Link()
351 CHECK(elf_file.get() != NULL) << elf_file_->GetPath() << ": " << error_msg; in FixupOatMethodOffsets()
Dfile_output_stream.cc26 FileOutputStream::FileOutputStream(File* file) : OutputStream(file->GetPath()), file_(file) {} in FileOutputStream()
Dimage_test.cc101 dup_oat->GetPath(), dup_oat->GetPath(), /*compile_pic*/false); in TEST_F()
Delf_stripper.cc132 file->GetPath().c_str(), strerror(errno)); in Strip()
Delf_writer_quick.cc49 << elf_file->GetPath(); in Write()
78 PLOG(ERROR) << "Failed to write " << dbg_name_ << " for " << elf_file->GetPath(); in DoActualWrite()
104 PLOG(ERROR) << "Failed to write .rodata and .text for " << elf_file->GetPath(); in DoActualWrite()
292 std::string file_name(elf_file_->GetPath()); in Write()
606 LOG(ERROR) << "Unable to write to file " << elf_file_->GetPath(); in Write()
Delf_patcher.cc303 *error_msg_ += elf_file_->GetFile().GetPath(); in WriteOutPatchData()
/art/runtime/
Delf_file.cc165 file_->GetPath().c_str(), file_->Fd(), strerror(errno)); in Setup()
172 file_->GetPath().c_str()); in Setup()
180 file_->GetPath().c_str(), error_msg), in Setup()
189 sizeof(Elf32_Ehdr), file_->GetPath().c_str()); in Setup()
193 file_->GetPath().c_str(), error_msg), in Setup()
201 file_->GetPath().c_str(), error_msg), in Setup()
224 file_->GetPath().c_str()); in Setup()
232 file_->GetPath().c_str()); in Setup()
246 i, file_->GetPath().c_str()); in Setup()
291 << file_->GetPath() << ": " << std::hex in Setup()
[all …]
Doat_file.cc212 *error_msg = StringPrintf("Failed to find oatdata symbol in '%s'", file->GetPath().c_str()); in ElfFileOpen()
224 *error_msg = StringPrintf("Failed to find oatlastword symbol in '%s'", file->GetPath().c_str()); in ElfFileOpen()
Dcommon_runtime_test.cc75 filename_ = file->GetPath(); in ScratchFile()
Djni_internal.cc367 std::string GetPath() { in GetPath() function in art::SharedLibrary
533 << " in \"" << library->GetPath() << "\"]"; in FindNativeMethod()
/art/runtime/base/unix_file/
Dmapped_file.cc51 PLOG(WARNING) << "Failed to stat file '" << GetPath() << "'"; in MapReadOnly()
59 PLOG(WARNING) << "Failed to mmap file '" << GetPath() << "' of size " in MapReadOnly()
76 PLOG(ERROR) << "Failed to truncate file '" << GetPath() in MapReadWrite()
90 PLOG(WARNING) << "Failed to mmap file '" << GetPath() << "' of size " in MapReadWrite()
102 PLOG(WARNING) << "Failed unmap file '" << GetPath() << "' of size " in Unmap()
Dfd_file_test.cc47 EXPECT_TRUE(file.GetPath().empty()); in TEST_F()
Dfd_file.h72 const std::string& GetPath() const { in GetPath() function
/art/patchoat/
Dpatchoat.cc142 LOG(ERROR) << "Unable to read image header from image file " << input_image->GetPath(); in Patch()
146 /*bool is_image_pic = */IsImagePic(image_header, input_image->GetPath()); in Patch()
171 input_image->GetPath().c_str(), in Patch()
174 LOG(ERROR) << "unable to map image file " << input_image->GetPath() << " : " << error_msg; in Patch()
183 LOG(ERROR) << "Failed to patch image file " << input_image->GetPath(); in Patch()
238 LOG(ERROR) << "Unable to read image header from image file " << input_image->GetPath(); in Patch()
241 /*bool is_image_pic = */IsImagePic(image_header, input_image->GetPath()); in Patch()
266 input_image->GetPath().c_str(), in Patch()
269 LOG(ERROR) << "unable to map image file " << input_image->GetPath() << " : " << error_msg; in Patch()
277 LOG(ERROR) << "unable to open oat file " << input_oat->GetPath() << " : " << error_msg; in Patch()
[all …]
/art/runtime/base/
Dscoped_flock.cc69 file->GetPath().c_str(), strerror(errno)); in Init()
74 …*error_msg = StringPrintf("Failed to lock file '%s': %s", file->GetPath().c_str(), strerror(errno)… in Init()
/art/dex2oat/
Ddex2oat.cc438 LOG(ERROR) << "Failed to write ELF file " << oat_file->GetPath(); in CreateOatFile()
447 PLOG(ERROR) << "Failed flushing oat file " << oat_file->GetPath(); in CreateOatFile()
456 LOG(ERROR) << "Failed to fixup ELF file " << oat_file->GetPath() << ": " << error_msg; in CreateOatFile()
493 LOG(ERROR) << "Failed to fixup ELF file " << oat_file->GetPath(); in CreateImageFile()