Lines Matching refs:f
71 std::unique_ptr<FSWritableFile>&& f, in TestFSWritableFile() argument
74 target_(std::move(f)), in TestFSWritableFile()
143 std::unique_ptr<FSRandomRWFile>&& f, in TestFSRandomRWFile() argument
145 : target_(std::move(f)), file_opened_(true), fs_(fs) { in TestFSRandomRWFile()
292 IOStatus FaultInjectionTestFS::DeleteFile(const std::string& f, in DeleteFile() argument
298 IOStatus io_s = FileSystemWrapper::DeleteFile(f, options, dbg); in DeleteFile()
300 fprintf(stderr, "Cannot delete file %s: %s\n", f.c_str(), in DeleteFile()
304 UntrackFile(f); in DeleteFile()
421 void FaultInjectionTestFS::UntrackFile(const std::string& f) { in UntrackFile() argument
423 auto dir_and_name = TestFSGetDirAndName(f); in UntrackFile()
426 db_file_state_.erase(f); in UntrackFile()
427 open_files_.erase(f); in UntrackFile()