Home
last modified time | relevance | path

Searched refs:GetFreeSpace (Results 1 – 10 of 10) sorted by relevance

/rocksdb-6.9/port/win/
Denv_win.h168 #undef GetFreeSpace
171 virtual Status GetFreeSpace(const std::string& path, uint64_t* diskfree);
317 #undef GetFreeSpace
320 Status GetFreeSpace(const std::string& path, uint64_t* diskfree) override;
Denv_win.cc1078 Status WinEnvIO::GetFreeSpace(const std::string& path, uint64_t* diskfree) { in GetFreeSpace() function in ROCKSDB_NAMESPACE::port::WinEnvIO
1483 Status WinEnv::GetFreeSpace(const std::string& path, uint64_t* diskfree) { in GetFreeSpace() function in ROCKSDB_NAMESPACE::port::WinEnv
1484 return winenv_io_.GetFreeSpace(path, diskfree); in GetFreeSpace()
/rocksdb-6.9/test_util/
Dfault_injection_test_env.h156 #undef GetFreeSpace
157 virtual Status GetFreeSpace(const std::string& path, in GetFreeSpace() function
163 return target()->GetFreeSpace(path, disk_free); in GetFreeSpace()
Dfault_injection_test_fs.h178 #undef GetFreeSpace
179 virtual IOStatus GetFreeSpace(const std::string& path, in GetFreeSpace() function
186 return target()->GetFreeSpace(path, options, disk_free, dbg); in GetFreeSpace()
/rocksdb-6.9/include/rocksdb/
Dfile_system.h513 #ifdef GetFreeSpace
514 #undef GetFreeSpace
518 virtual IOStatus GetFreeSpace(const std::string& /*path*/, in GetFreeSpace() function
1192 IOStatus GetFreeSpace(const std::string& path, const IOOptions& options, in GetFreeSpace() function
1194 return target_->GetFreeSpace(path, options, diskfree, dbg); in GetFreeSpace()
Denv.h535 #undef GetFreeSpace
538 virtual Status GetFreeSpace(const std::string& /*path*/, in GetFreeSpace() function
1394 Status GetFreeSpace(const std::string& path, uint64_t* diskfree) override { in GetFreeSpace() function
1395 return target_->GetFreeSpace(path, diskfree); in GetFreeSpace()
/rocksdb-6.9/file/
Dsst_file_manager_impl.cc191 fs_->GetFreeSpace(fn, IOOptions(), &free_space, nullptr); in EnoughRoomForCompaction()
274 Status s = fs_->GetFreeSpace(path_, IOOptions(), &free_space, nullptr); in ClearError()
/rocksdb-6.9/env/
Dcomposite_env_wrapper.h604 Status GetFreeSpace(const std::string& path, uint64_t* diskfree) override { in GetFreeSpace() function
607 return file_system_->GetFreeSpace(path, io_opts, diskfree, &dbg); in GetFreeSpace()
1080 IOStatus GetFreeSpace(const std::string& path, const IOOptions& /*options*/, in GetFreeSpace() function
1082 return status_to_io_status(target_->GetFreeSpace(path, diskfree)); in GetFreeSpace()
Dfs_posix.cc865 IOStatus GetFreeSpace(const std::string& fname, const IOOptions& /*opts*/, in GetFreeSpace() function in ROCKSDB_NAMESPACE::__anonf5554a730111::PosixFileSystem
/rocksdb-6.9/db/
Derror_handler.cc305 if (db_options_.env->GetFreeSpace(db_options_.db_paths[0].path, in OverrideNoSpaceError()