Home
last modified time | relevance | path

Searched defs:path (Results 1 – 25 of 60) sorted by relevance

123

/rocksdb-6.9/tools/
Ddb_sanity_test.cc27 explicit SanityTest(const std::string& path) in SanityTest()
87 explicit SanityTestBasic(const std::string& path) : SanityTest(path) {} in SanityTestBasic()
98 explicit SanityTestSpecialComparator(const std::string& path) in SanityTestSpecialComparator()
128 explicit SanityTestZlibCompression(const std::string& path) in SanityTestZlibCompression()
141 explicit SanityTestZlibCompressionVersion2(const std::string& path) in SanityTestZlibCompressionVersion2()
161 explicit SanityTestLZ4Compression(const std::string& path) in SanityTestLZ4Compression()
174 explicit SanityTestLZ4HCCompression(const std::string& path) in SanityTestLZ4HCCompression()
187 explicit SanityTestZSTDCompression(const std::string& path) in SanityTestZSTDCompression()
201 explicit SanityTestPlainTableFactory(const std::string& path) in SanityTestPlainTableFactory()
232 bool RunSanityTests(const std::string& command, const std::string& path) { in RunSanityTests()
[all …]
/rocksdb-6.9/java/src/main/java/org/rocksdb/
DDbPath.java14 final Path path; field in DbPath
17 public DbPath(final Path path, final long targetSize) { in DbPath()
DSstFileMetaData.java13 private final String path; field in SstFileMetaData
41 final String path, in SstFileMetaData()
78 public String path() { in path() method in SstFileMetaData
DPersistentCache.java14 public PersistentCache(final Env env, final String path, final long size, in PersistentCache()
22 final String path, final long size, final long loggerHandle, in newPersistentCache()
DOptimisticTransactionDB.java39 final String path) throws RocksDBException { in open()
66 final String path, in open()
209 final String path) throws RocksDBException; in open()
210 protected static native long[] open(final long handle, final String path, in open()
DTransactionDB.java44 final TransactionDBOptions transactionDbOptions, final String path) in open()
76 final String path, in open()
351 final DeadlockInfo[] path; field in TransactionDB.DeadlockPath
354 public DeadlockPath(final DeadlockInfo[] path, final boolean limitExceeded) { in DeadlockPath()
380 final long transactionDbOptionsHandle, final String path) in open()
383 final long transactionDbOptionsHandle, final String path, in open()
DBackupableDBOptions.java33 public BackupableDBOptions(final String path) { in BackupableDBOptions()
37 private static String ensureWritableFile(final String path) { in ensureWritableFile()
437 private native static long newBackupableDBOptions(final String path); in newBackupableDBOptions()
DLiveFileMetaData.java22 final String path, in LiveFileMetaData()
DRocksDB.java202 public static RocksDB open(final String path, in open()
234 public static RocksDB open(final Options options, final String path) in open()
318 public static RocksDB openReadOnly(final String path) in openReadOnly()
341 public static RocksDB openReadOnly(final String path, in openReadOnly()
489 final String path) throws RocksDBException { in listColumnFamilies()
4233 final String path) throws RocksDBException; in open()
4248 final String path, final byte[][] columnFamilyNames, in open()
4252 final String path) throws RocksDBException; in openROnly()
4267 final String path, final byte[][] columnFamilyNames, in openROnly()
4276 final String path) throws RocksDBException; in listColumnFamilies()
[all …]
/rocksdb-6.9/env/
Denv_chroot.cc44 for (auto& path : paths) { in RegisterDbPaths() local
57 for (auto& path : paths) { in UnregisterDbPaths() local
251 Status GetTestDirectory(std::string* path) override { in GetTestDirectory()
285 std::pair<Status, std::string> EncodePath(const std::string& path) { in EncodePath()
316 const std::string& path) { in EncodePathWithNewBasename()
/rocksdb-6.9/java/src/test/java/org/rocksdb/
DNativeLibraryLoaderTest.java27 final Path path = Paths.get(temporaryFolder.getRoot().getAbsolutePath(), in tempFolder() local
DOptionsUtilTest.java81 String path = dbPath; in verifyOptions() local
/rocksdb-6.9/build_tools/
Dprecommit_checker.py58 def shell(self, cmd, path=os.getcwd()): argument
70 def GetOutput(self, cmd, path=os.getcwd()): argument
/rocksdb-6.9/java/jmh/src/main/java/org/rocksdb/util/
DFileUtils.java34 public static void delete(final Path path) throws IOException { in delete()
/rocksdb-6.9/file/
Dfilename.cc31 static size_t GetInfoLogPrefix(const std::string& path, char* dest, int len) { in GetInfoLogPrefix()
102 std::string MakeTableFileName(const std::string& path, uint64_t number) { in MakeTableFileName()
133 std::string path; in TableFileName() local
456 std::string NormalizePath(const std::string& path) { in NormalizePath()
Ddelete_scheduler.cc116 const std::string& path) { in CleanupDirectory()
/rocksdb-6.9/db/db_impl/
Ddb_impl_files.cc125 auto& path = cfd->ioptions()->cf_paths[path_id].path; in FindObsoleteFiles() local
133 for (auto& path : paths) { in FindObsoleteFiles() local
687 for (const auto& path : paths) { in CleanupFilesAfterRecovery() local
/rocksdb-6.9/java/rocksjni/
Dpersistent_cache.cc27 std::string path = in Java_org_rocksdb_PersistentCache_newPersistentCache() local
/rocksdb-6.9/port/win/
Dport_win.cc208 int truncate(const char* path, int64_t length) { in truncate()
216 int Truncate(std::string path, int64_t len) { in Truncate()
/rocksdb-6.9/buckifier/
Dtargets_builder.py28 def __init__(self, path): argument
/rocksdb-6.9/db/
Dwal_manager_test.cc124 std::string path = dbname_ + "/000001.log"; in TEST_F() local
182 Env* env, const std::string& path, const FileType expected_file_type) { in ListSpecificFiles()
/rocksdb-6.9/utilities/persistent_cache/
Dpersistent_cache_tier.h134 std::string path; member
Dpersistent_cache_test.cc107 Env* env, const std::string& path, in NewBlockCache()
124 Env* env, const std::string& path, const uint64_t max_volatile_cache_size, in NewTieredCache()
/rocksdb-6.9/test_util/
Dfault_injection_test_env.h157 virtual Status GetFreeSpace(const std::string& path, in GetFreeSpace()
Dfault_injection_test_fs.h179 virtual IOStatus GetFreeSpace(const std::string& path, in GetFreeSpace()

123