Lines Matching refs:file_name
45 const char* IncFsFileMap::file_name() const { in file_name() function in android::incfs::IncFsFileMap
49 bool IncFsFileMap::Create(int fd, off64_t offset, size_t length, const char* file_name) { in Create() argument
50 return Create(fd, offset, length, file_name, true /* verify */); in Create()
64 bool IncFsFileMap::Create(int fd, off64_t offset, size_t length, const char* file_name, in Create() argument
66 return CreateForceVerification(fd, offset, length, file_name, in Create()
71 const char* file_name, bool verify) { in CreateForceVerification() argument
73 if (!map_->create(file_name, fd, offset, length, true /* readOnly */)) { in CreateForceVerification()
124 std::string location = file_name() ? base::StringPrintf("path %s", file_name()) in Verify()
139 bool IncFsFileMap::Create(int fd, off64_t offset, size_t length, const char* file_name, in Create() argument
141 return CreateForceVerification(fd, offset, length, file_name, verify); in Create()
145 const char* file_name, bool /* verify */) { in CreateForceVerification() argument
147 return map_->create(file_name, fd, offset, length, true /* readOnly */); in CreateForceVerification()