Home
last modified time | relevance | path

Searched refs:file_path_ (Results 1 – 4 of 4) sorted by relevance

/art/libartbase/base/unix_file/
Dfd_file.cc54 fd_(fd), file_path_(path), auto_close_(true), read_only_mode_(read_only_mode) { in FdFile()
68 LOG(ERROR) << "File " << file_path_ << " wasn't explicitly flushed before destruction."; in Destroy()
71 LOG(ERROR) << "File " << file_path_ << " wasn't explicitly closed before destruction."; in Destroy()
77 PLOG(WARNING) << "Failed to close file with fd=" << fd_ << " path=" << file_path_; in Destroy()
93 file_path_ = std::move(other.file_path_); in operator =()
144 file_path_ = path; in Open()
161 DCHECK_GE(guard_state_, GuardState::kFlushed) << "File " << file_path_ in Close()
176 file_path_ = ""; in Close()
357 if (file_path_.empty()) { in Unlink()
365 int cur_fd = TEMP_FAILURE_RETRY(open(file_path_.c_str(), O_RDONLY)); in Unlink()
[all …]
Dfd_file.h52 file_path_(std::move(other.file_path_)), in FdFile()
122 return file_path_; in GetPath()
184 std::string file_path_; variable
/art/runtime/
Delf_file.cc296 file_path_.c_str()); in CheckAndSet()
590 CHECK(IsSymbolSectionType(section_type)) << file_path_ << " " << section_type; in GetSymbolSectionStart()
610 CHECK(IsSymbolSectionType(section_type)) << file_path_ << " " << section_type; in GetStringSectionStart()
628 CHECK(IsSymbolSectionType(section_type)) << file_path_ << " " << section_type; in GetString()
686 CHECK_LT(i, GetProgramHeaderNum()) << file_path_; // Sanity check for caller. in GetProgramHeader()
714 CHECK(!program_header_only_) << file_path_; in GetSectionHeader()
729 CHECK(!program_header_only_) << file_path_; in FindSectionByType()
815 << file_path_ << " " << section_header.sh_type; in GetSymbolNum()
816 CHECK_NE(0U, section_header.sh_entsize) << file_path_; in GetSymbolNum()
832 CHECK(IsSymbolSectionType(section_type)) << file_path_ << " " << section_type; in GetSymbolTable()
[all …]
Delf_file_impl.h61 return file_path_; in GetFilePath()
190 const std::string file_path_; variable