Home
last modified time | relevance | path

Searched refs:method (Results 1 – 9 of 9) sorted by relevance

/rocksdb-6.9/tools/
Ddb_bench_tool.cc2944 method = &Benchmark::WriteSeq; in Run()
2948 method = &Benchmark::WriteSeq; in Run()
3002 method = &Benchmark::MixGraph; in Run()
3062 method = &Benchmark::Compact; in Run()
3066 method = &Benchmark::Crc32c; in Run()
3068 method = &Benchmark::xxHash; in Run()
3072 method = &Benchmark::Compress; in Run()
3113 method = &Benchmark::Replay; in Run()
3125 method = nullptr; in Run()
3144 if (method != nullptr) { in Run()
[all …]
/rocksdb-6.9/tools/block_cache_analyzer/
Dblock_cache_trace_analyzer_plot.py374 corr_table["num_accesses_till_next_access"], method="spearman"
385 corr_table["num_accesses_till_next_access"], method="spearman"
396 corr_table["num_accesses_till_next_access"], method="spearman"
407 corr_table["elapsed_time_till_next_access"], method="spearman"
418 corr_table["elapsed_time_till_next_access"], method="spearman"
429 corr_table["elapsed_time_till_next_access"], method="spearman"
/rocksdb-6.9/tools/rdb/
DAPI.md63 # a value, this will still return true. Use the `get` method prior to
64 # this method to check if a value existed before the call to `delete`.
107 # In addition to the endpoints of the range, the method is overloaded to
/rocksdb-6.9/table/
Dmeta_blocks.cc139 Logger* info_log, const std::string& method, const std::string& name) { in LogPropertiesCollectionError() argument
140 assert(method == "Add" || method == "Finish"); in LogPropertiesCollectionError()
144 method + "() with collector name: " + name; in LogPropertiesCollectionError()
Dmeta_blocks.h74 Logger* info_log, const std::string& method, const std::string& name);
/rocksdb-6.9/java/
DHISTORY-JAVA.md42 …llows a RocksObject to give-up the ownership of its native handle. This method is useful when sha…
54 * Added static method RocksDB.loadLibrary(), which loads necessary library files.
/rocksdb-6.9/docs/_posts/
D2014-03-27-how-to-backup-rocksdb.markdown92 `BackupableDB::CreateNewBackup()` method takes a parameter `flush_before_backup`, which is false by…
/rocksdb-6.9/third-party/gtest-1.8.1/fused-src/gtest/
Dgtest-all.cc1835 int (TestCase::*method)() const) { in SumOverTestCaseList()
1838 sum += (case_list[i]->*method)(); in SumOverTestCaseList()
3881 T* object, Result (T::*method)(), const char* location) { in HandleSehExceptionsInMethodIfSupported() argument
3884 return (object->*method)(); in HandleSehExceptionsInMethodIfSupported()
3899 return (object->*method)(); in HandleSehExceptionsInMethodIfSupported()
3908 T* object, Result (T::*method)(), const char* location) { in HandleExceptionsInMethodIfSupported() argument
3935 return HandleSehExceptionsInMethodIfSupported(object, method, location); in HandleExceptionsInMethodIfSupported()
3954 return HandleSehExceptionsInMethodIfSupported(object, method, location); in HandleExceptionsInMethodIfSupported()
3957 return (object->*method)(); in HandleExceptionsInMethodIfSupported()
/rocksdb-6.9/
DHISTORY.md191method and no longer assert if the include_flags doesn't have either of INCLUDE_MEMTABLES or INCLU…
428 …a `CreateDBStatistics()`, the format of the string returned by its `ToString()` method has changed.
465 * Add `Env::LowerThreadPoolCPUPriority(Priority)` method, which lowers the CPU priority of backgrou…
500 * Iterator::SeekForPrev is now a pure virtual method. This is to prevent user who implement the Ite…
505 * Close() method now returns a status when closing a db.
853 * CompactionFilter has a new method FilterMergeOperand() that RocksDB applies to every merge operan…
866 * Added Equal() method to the Comparator interface that can optionally be overwritten in cases wher…
952 * Logger method logv with log level parameter is now virtual