Home
last modified time | relevance | path

Searched refs:fallocate (Results 1 – 12 of 12) sorted by relevance

/rocksdb-6.9/port/win/
Dio_win.cc144 Status fallocate(const std::string& filename, HANDLE hFile, in fallocate() function
341 return fallocate(filename_, hFile_, spaceToReserve); in PreallocateInternal()
737 return fallocate(file_data_->GetName(), file_data_->GetFileHandle(), spaceToReserve); in PreallocateInternal()
Dio_win.h54 Status fallocate(const std::string& filename, HANDLE hFile, uint64_t to_size);
/rocksdb-6.9/env/
Dio_posix.cc907 int alloc_status = fallocate(fd_, 0, file_offset_, map_size_); in MapNewRegion()
1099 fallocate(fd_, fallocate_with_keep_size_ ? FALLOC_FL_KEEP_SIZE : 0, in Allocate()
1232 fallocate(fd_, FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE, filesize_, in Close()
1322 fallocate(fd_, fallocate_with_keep_size_ ? FALLOC_FL_KEEP_SIZE : 0, in Allocate()
Dfs_posix.cc570 fallocate(fd, FALLOC_FL_KEEP_SIZE, 0, 4 * 1024); in NewLogger()
Denv_test.cc956 int alloc_status = fallocate(fd, 0, 0, 1); in TEST_P()
/rocksdb-6.9/logging/
Dposix_logger.h160 fallocate( in Logv()
/rocksdb-6.9/docs/_posts/
D2017-05-26-rocksdb-5-4-5-released.markdown30 * Fix huge fallocate calls fail and make XFS unhappy.
/rocksdb-6.9/
DWINDOWS_PORT.md63 * Use `SetFileInformationByHandle` to compensate absence of `fallocate`.
73 …llocate disk space for faster I/O thus compensating for the absence of `fallocate` although some d…
DCMakeLists.txt446 option(WITH_FALLOCATE "build with fallocate" ON)
453 fallocate(fd, FALLOC_FL_KEEP_SIZE, 0, 1024);
DCMakeCache.txt361 //build with fallocate
/rocksdb-6.9/build_tools/
Dbuild_detect_platform257 fallocate(fd, FALLOC_FL_KEEP_SIZE, 0, 1024);
/rocksdb-6.9/db/
Ddb_wal_test.cc1539 int alloc_status = fallocate(fd, 0, 0, 1); in TEST_F()