Home
last modified time | relevance | path

Searched refs:getAndResetTickerCount (Results 1 – 10 of 10) sorted by relevance

/rocksdb-6.9/java/src/main/java/org/rocksdb/
DStatistics.java89 public long getAndResetTickerCount(final TickerType tickerType) { in getAndResetTickerCount() method in Statistics
91 return getAndResetTickerCount(nativeHandle_, tickerType.getValue()); in getAndResetTickerCount()
147 private native long getAndResetTickerCount(final long handle, final byte tickerType); in getAndResetTickerCount() method in Statistics
/rocksdb-6.9/java/src/test/java/org/rocksdb/
DStatisticsTest.java55 public void getAndResetTickerCount() throws RocksDBException { in getAndResetTickerCount() method in StatisticsTest
71 final long read = statistics.getAndResetTickerCount(TickerType.BYTES_READ); in getAndResetTickerCount()
/rocksdb-6.9/monitoring/
Dstatistics.h54 virtual uint64_t getAndResetTickerCount(uint32_t ticker_type) override;
Dstatistics.cc298 uint64_t StatisticsImpl::getAndResetTickerCount(uint32_t tickerType) { in getAndResetTickerCount() function in ROCKSDB_NAMESPACE::StatisticsImpl
/rocksdb-6.9/include/rocksdb/
Dstatistics.h494 virtual uint64_t getAndResetTickerCount(uint32_t tickerType) = 0;
/rocksdb-6.9/java/rocksjni/
Dstatistics.cc174 return pSptr_statistics->get()->getAndResetTickerCount(ticker); in Java_org_rocksdb_Statistics_getAndResetTickerCount()
/rocksdb-6.9/tools/
Dsst_dump_tool.cc238 opts.statistics->getAndResetTickerCount(NUMBER_BLOCK_COMPRESSED); in ShowAllCompressionSizes()
240 opts.statistics->getAndResetTickerCount(NUMBER_BLOCK_NOT_COMPRESSED); in ShowAllCompressionSizes()
/rocksdb-6.9/db/
Ddb_test_util.h996 return options.statistics->getAndResetTickerCount(ticker_type); in TestGetAndResetTickerCount()
Ddb_test2.cc3945 uint64_t getAndResetTickerCount(uint32_t /*ticker_type*/) override { in getAndResetTickerCount() function in ROCKSDB_NAMESPACE::__anon82d45cbc2811::DummyOldStats
/rocksdb-6.9/
DHISTORY.md724 * Added Statistics::getAndResetTickerCount().