| /rocksdb-6.9/port/win/ |
| D | env_win.h | 168 #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;
|
| D | env_win.cc | 1078 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/ |
| D | fault_injection_test_env.h | 156 #undef GetFreeSpace 157 virtual Status GetFreeSpace(const std::string& path, in GetFreeSpace() function 163 return target()->GetFreeSpace(path, disk_free); in GetFreeSpace()
|
| D | fault_injection_test_fs.h | 178 #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/ |
| D | file_system.h | 513 #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()
|
| D | env.h | 535 #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/ |
| D | sst_file_manager_impl.cc | 191 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/ |
| D | composite_env_wrapper.h | 604 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()
|
| D | fs_posix.cc | 865 IOStatus GetFreeSpace(const std::string& fname, const IOOptions& /*opts*/, in GetFreeSpace() function in ROCKSDB_NAMESPACE::__anonf5554a730111::PosixFileSystem
|
| /rocksdb-6.9/db/ |
| D | error_handler.cc | 305 if (db_options_.env->GetFreeSpace(db_options_.db_paths[0].path, in OverrideNoSpaceError()
|