Home | History | Annotate | Download | only in platform

Lines Matching refs:fname

62   /// specified by 'fname'. The FileSystem object is used as the implementation
66 virtual Status GetFileSystemForFile(const string& fname, FileSystem** result);
91 Status NewRandomAccessFile(const string& fname,
107 Status NewWritableFile(const string& fname,
122 Status NewAppendableFile(const string& fname,
128 /// from the content of file fname. The ownership of the region is passed to
137 const string& fname, std::unique_ptr<ReadOnlyMemoryRegion>* result);
140 Status FileExists(const string& fname);
166 Status DeleteFile(const string& fname);
199 Status Stat(const string& fname, FileStatistics* stat);
208 Status IsDirectory(const string& fname);
210 /// Stores the size of `fname` in `*file_size`.
211 Status GetFileSize(const string& fname, uint64* file_size);
316 Status GetFileSystemForFile(const string& fname,
318 return target_->GetFileSystemForFile(fname, result);
393 Status ReadFileToString(Env* env, const string& fname, string* data);
395 /// A utility routine: write contents of `data` to file named `fname`
397 fname,
401 Status WriteBinaryProto(Env* env, const string& fname,
406 Status ReadBinaryProto(Env* env, const string& fname,
410 Status WriteTextProto(Env* env, const string& fname,
415 Status ReadTextProto(Env* env, const string& fname,