/external/libbrillo/brillo/ |
file_utils_unittest.cc | 22 file_path_ = temp_dir_.path().Append("test.temp"); 26 base::FilePath file_path_; member in class:brillo::FileUtilsTest 29 // Writes |contents| to |file_path_|. Pulled into a separate function just 33 base::WriteFile(file_path_, contents.c_str(), contents.length())); 36 // Verifies that the file at |file_path_| exists and contains |contents|. 38 EXPECT_TRUE(base::PathExists(file_path_)); 40 EXPECT_TRUE(base::ReadFileToString(file_path_, &new_contents)); 44 // Verifies that the file at |file_path_| has |permissions|. 47 EXPECT_TRUE(base::GetPosixFilePermissions(file_path_, &actual_permissions)); 64 EXPECT_TRUE(TouchFile(file_path_)); [all...] |
/art/runtime/base/unix_file/ |
fd_file.cc | 53 fd_(fd), file_path_(path), auto_close_(true), read_only_mode_(read_only_mode) { 67 LOG(ERROR) << "File " << file_path_ << " wasn't explicitly flushed before destruction."; 70 LOG(ERROR) << "File " << file_path_ << " wasn't explicitly closed before destruction."; 76 PLOG(WARNING) << "Failed to close file with fd=" << fd_ << " path=" << file_path_; local 92 file_path_ = std::move(other.file_path_); 142 file_path_ = path; 159 CHECK_GE(guard_state_, GuardState::kFlushed) << "File " << file_path_ 168 file_path_ = ""; 343 if (file_path_.empty()) [all...] |
fd_file.h | 52 file_path_(std::move(other.file_path_)), 121 return file_path_; 178 std::string file_path_; member in class:unix_file::FdFile
|
/art/runtime/ |
elf_file.cc | 297 file_path_.c_str()); 591 CHECK(IsSymbolSectionType(section_type)) << file_path_ << " " << section_type; 611 CHECK(IsSymbolSectionType(section_type)) << file_path_ << " " << section_type; 629 CHECK(IsSymbolSectionType(section_type)) << file_path_ << " " << section_type; 687 CHECK_LT(i, GetProgramHeaderNum()) << file_path_; // Sanity check for caller. 715 CHECK(!program_header_only_) << file_path_; 730 CHECK(!program_header_only_) << file_path_; 816 << file_path_ << " " << section_header.sh_type; 817 CHECK_NE(0U, section_header.sh_entsize) << file_path_; 833 CHECK(IsSymbolSectionType(section_type)) << file_path_ << " " << section_type [all...] |
elf_file_impl.h | 65 return file_path_; 194 const std::string file_path_; member in class:art::ElfFileImpl
|
/external/google-breakpad/src/client/mac/handler/ |
dynamic_images.h | 60 uint32_t file_path_; // char* member in struct:google_breakpad::dyld_image_info32 66 uint64_t file_path_; // char* member in struct:google_breakpad::dyld_image_info64 125 file_path_(file_path), 136 string GetFilePath() {return file_path_;} 193 string file_path_; // path dyld used to load the image member in class:google_breakpad::DynamicImage
|
dynamic_images.cc | 481 if (info.file_path_) { 485 file_path = ReadTaskString(images.task_, info.file_path_);
|
/system/tools/aidl/ |
generate_cpp_unittest.cpp | 723 : file_path_(file_path), 729 io_delegate_.SetFileContents(file_path_, file_contents_); 736 file_path_, 762 const string file_path_; member in class:android::aidl::cpp::ASTTest
|