| /rocksdb-6.9/db/db_impl/ |
| D | db_impl_files.cc | 111 std::set<std::string> paths; in FindObsoleteFiles() local 127 if (paths.find(path) == paths.end()) { in FindObsoleteFiles() 128 paths.insert(path); in FindObsoleteFiles() 133 for (auto& path : paths) { in FindObsoleteFiles() 670 std::vector<std::string> paths; in CleanupFilesAfterRecovery() local 671 paths.push_back(dbname_); in CleanupFilesAfterRecovery() 673 paths.push_back(db_path.path); in CleanupFilesAfterRecovery() 677 paths.push_back(cf_path.path); in CleanupFilesAfterRecovery() 681 std::sort(paths.begin(), paths.end()); in CleanupFilesAfterRecovery() 682 paths.erase(std::unique(paths.begin(), paths.end()), paths.end()); in CleanupFilesAfterRecovery() [all …]
|
| D | db_impl_open.cc | 1393 std::vector<std::string> paths; in Open() local 1395 paths.emplace_back(db_path.path); in Open() 1399 paths.emplace_back(cf_path.path); in Open() 1402 for (auto& path : paths) { in Open() 1411 if (paths.size() <= 1) { in Open() 1592 std::vector<std::string> paths; in Open() local 1593 paths.emplace_back(impl->immutable_db_options_.db_paths[0].path); in Open() 1596 paths.emplace_back(cf.options.cf_paths[0].path); in Open() 1600 std::sort(paths.begin(), paths.end()); in Open() 1601 paths.erase(std::unique(paths.begin(), paths.end()), paths.end()); in Open() [all …]
|
| D | db_impl.cc | 3570 std::set<std::string> paths; in DestroyDB() local 3572 paths.insert(db_path.path); in DestroyDB() 3576 paths.insert(cf_path.path); in DestroyDB() 3579 for (const auto& path : paths) { in DestroyDB()
|
| /rocksdb-6.9/ |
| D | thirdparty.inc | 2 # Edit definitions below to specify paths to include files and libraries of all 3rd party libraries 8 # or change the paths below to reflect where the libraries actually reside 53 # Edit these 4 lines to define paths to Snappy 92 # Edit these 4 lines to define paths to LZ4 132 # Edit these 4 lines to define paths to ZLIB 191 # Edit these 4 lines to define paths to ZSTD 230 # Edit these 4 lines to define paths to Jemalloc
|
| D | CMakeCache.txt | 274 //If set, runtime paths are not added when installing shared libraries, 278 //If set, runtime paths are not added when using shared libraries.
|
| D | CMakeLists.txt | 6 # Run the build commands from within the Developer Command Prompt window to have paths to the c… 11 # 1. Update paths to third-party libraries in thirdparty.inc file
|
| D | HISTORY.md | 934 * We now allow level-compaction to place files in different paths by 1026 * Support Multiple DB paths in universal style compactions 1056 2) It added some complexity to the important code-paths,
|
| /rocksdb-6.9/env/ |
| D | env_chroot.cc | 41 Status RegisterDbPaths(const std::vector<std::string>& paths) override { in RegisterDbPaths() argument 43 encoded_paths.reserve(paths.size()); in RegisterDbPaths() 44 for (auto& path : paths) { in RegisterDbPaths() 54 Status UnregisterDbPaths(const std::vector<std::string>& paths) override { in UnregisterDbPaths() argument 56 encoded_paths.reserve(paths.size()); in UnregisterDbPaths() 57 for (auto& path : paths) { in UnregisterDbPaths()
|
| D | fs_posix.cc | 902 Status RegisterDbPaths(const std::vector<std::string>& paths) override { in RegisterDbPaths() argument 903 return logical_block_size_cache_.RefAndCacheLogicalBlockSize(paths); in RegisterDbPaths() 905 Status UnregisterDbPaths(const std::vector<std::string>& paths) override { in UnregisterDbPaths() argument 906 logical_block_size_cache_.UnrefAndTryRemoveCachedLogicalBlockSize(paths); in UnregisterDbPaths()
|
| D | composite_env_wrapper.h | 285 Status RegisterDbPaths(const std::vector<std::string>& paths) override { in RegisterDbPaths() argument 286 return file_system_->RegisterDbPaths(paths); in RegisterDbPaths() 288 Status UnregisterDbPaths(const std::vector<std::string>& paths) override { in UnregisterDbPaths() argument 289 return file_system_->UnregisterDbPaths(paths); in UnregisterDbPaths()
|
| /rocksdb-6.9/java/src/main/java/org/rocksdb/ |
| D | DBOptions.java | 300 final String[] paths = new String[len]; in setDbPaths() local 305 paths[i] = dbPath.path.toString(); in setDbPaths() 309 setDbPaths(nativeHandle_, paths, targetSizes); in setDbPaths() 319 final String[] paths = new String[len]; in dbPaths() local 322 dbPaths(nativeHandle_, paths, targetSizes); in dbPaths() 326 dbPaths.add(new DbPath(Paths.get(paths[i]), targetSizes[i])); in dbPaths() 1219 private native void setDbPaths(final long handle, final String[] paths, in setDbPaths() argument 1222 private native void dbPaths(final long handle, final String[] paths, in dbPaths() argument
|
| D | Options.java | 359 final String paths[] = new String[len]; in setDbPaths() local 364 paths[i] = dbPath.path.toString(); in setDbPaths() 368 setDbPaths(nativeHandle_, paths, targetSizes); in setDbPaths() 378 final String paths[] = new String[len]; in dbPaths() local 381 dbPaths(nativeHandle_, paths, targetSizes); in dbPaths() 385 dbPaths.add(new DbPath(Paths.get(paths[i]), targetSizes[i])); in dbPaths() 1835 private native void setDbPaths(final long handle, final String[] paths, in setDbPaths() argument 1838 private native void dbPaths(final long handle, final String[] paths, in dbPaths() argument
|
| D | RocksDB.java | 94 public static void loadLibrary(final List<String> paths) { in loadLibrary() argument 105 for (final String path : paths) { in loadLibrary() 117 for (final String path : paths) { in loadLibrary()
|
| /rocksdb-6.9/coverage/ |
| D | coverage_test.sh | 30 $GCOV --preserve-paths --relative-only --no-output $GCNO_FILES 2>/dev/null | 46 $GCOV --preserve-paths --relative-only --no-output $GCNO_FILES 2>/dev/null |
|
| /rocksdb-6.9/db/ |
| D | db_logical_block_size_cache_test.cc | 19 Status RegisterDbPaths(const std::vector<std::string>& paths) override { in RegisterDbPaths() argument 20 return cache_->RefAndCacheLogicalBlockSize(paths); in RegisterDbPaths() 23 Status UnregisterDbPaths(const std::vector<std::string>& paths) override { in UnregisterDbPaths() argument 24 cache_->UnrefAndTryRemoveCachedLogicalBlockSize(paths); in UnregisterDbPaths()
|
| D | column_family.cc | 475 std::vector<std::string> paths; in GetDbPaths() local 476 paths.reserve(ioptions_.cf_paths.size()); in GetDbPaths() 478 paths.emplace_back(db_path.path); in GetDbPaths() 480 return paths; in GetDbPaths()
|
| D | c_test.c | 1837 const rocksdb_dbpath_t* paths[1] = {dbpath}; in main() local 1838 rocksdb_options_set_db_paths(options, paths, 1); in main()
|
| /rocksdb-6.9/db_stress_tool/CMakeFiles/ |
| D | CMakeDirectoryInformation.cmake | 8 # Force unix paths in dependencies.
|
| /rocksdb-6.9/CMakeFiles/ |
| D | CMakeDirectoryInformation.cmake | 8 # Force unix paths in dependencies.
|
| /rocksdb-6.9/tools/CMakeFiles/ |
| D | CMakeDirectoryInformation.cmake | 8 # Force unix paths in dependencies.
|
| /rocksdb-6.9/docs/_data/ |
| D | nav.yml | 29 # Use external for external links not associated with the paths of the current site.
|
| /rocksdb-6.9/include/rocksdb/ |
| D | env.h | 1177 Status RegisterDbPaths(const std::vector<std::string>& paths) override { in RegisterDbPaths() argument 1178 return target_->RegisterDbPaths(paths); in RegisterDbPaths() 1181 Status UnregisterDbPaths(const std::vector<std::string>& paths) override { in UnregisterDbPaths() argument 1182 return target_->UnregisterDbPaths(paths); in UnregisterDbPaths()
|
| /rocksdb-6.9/docs/_posts/ |
| D | 2018-11-21-delete-range.markdown | 65 latency so it can be used in critical paths; and (4) a first-class operation
|