Home
last modified time | relevance | path

Searched refs:paths (Results 1 – 23 of 23) sorted by relevance

/rocksdb-6.9/db/db_impl/
Ddb_impl_files.cc111 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 …]
Ddb_impl_open.cc1393 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 …]
Ddb_impl.cc3570 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/
Dthirdparty.inc2 # 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
DCMakeCache.txt274 //If set, runtime paths are not added when installing shared libraries,
278 //If set, runtime paths are not added when using shared libraries.
DCMakeLists.txt6 # 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
DHISTORY.md934 * 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/
Denv_chroot.cc41 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()
Dfs_posix.cc902 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()
Dcomposite_env_wrapper.h285 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/
DDBOptions.java300 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
DOptions.java359 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
DRocksDB.java94 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/
Dcoverage_test.sh30 $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/
Ddb_logical_block_size_cache_test.cc19 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()
Dcolumn_family.cc475 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()
Dc_test.c1837 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/
DCMakeDirectoryInformation.cmake8 # Force unix paths in dependencies.
/rocksdb-6.9/CMakeFiles/
DCMakeDirectoryInformation.cmake8 # Force unix paths in dependencies.
/rocksdb-6.9/tools/CMakeFiles/
DCMakeDirectoryInformation.cmake8 # Force unix paths in dependencies.
/rocksdb-6.9/docs/_data/
Dnav.yml29 # Use external for external links not associated with the paths of the current site.
/rocksdb-6.9/include/rocksdb/
Denv.h1177 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/
D2018-11-21-delete-range.markdown65 latency so it can be used in critical paths; and (4) a first-class operation