Lines Matching refs:f
109 std::unique_ptr<WritableFile>&& f, in TestWritableFile() argument
112 target_(std::move(f)), in TestWritableFile()
165 std::unique_ptr<RandomRWFile>&& f, in TestRandomRWFile() argument
167 : target_(std::move(f)), file_opened_(true), env_(env) { in TestRandomRWFile()
303 Status FaultInjectionTestEnv::DeleteFile(const std::string& f) { in DeleteFile() argument
307 Status s = EnvWrapper::DeleteFile(f); in DeleteFile()
309 fprintf(stderr, "Cannot delete file %s: %s\n", f.c_str(), in DeleteFile()
313 UntrackFile(f); in DeleteFile()
429 void FaultInjectionTestEnv::UntrackFile(const std::string& f) { in UntrackFile() argument
431 auto dir_and_name = GetDirAndName(f); in UntrackFile()
434 db_file_state_.erase(f); in UntrackFile()
435 open_files_.erase(f); in UntrackFile()