Home
last modified time | relevance | path

Searched defs:tickerType (Results 1 – 4 of 4) sorted by relevance

/rocksdb-6.9/java/src/main/java/org/rocksdb/
DStatistics.java77 public long getTickerCount(final TickerType tickerType) { in getTickerCount()
89 public long getAndResetTickerCount(final TickerType tickerType) { in getAndResetTickerCount()
146 private native long getTickerCount(final long handle, final byte tickerType); in getTickerCount()
147 private native long getAndResetTickerCount(final long handle, final byte tickerType); in getAndResetTickerCount()
DStatisticsCollectorCallback.java24 void tickerCallback(TickerType tickerType, long tickerCount); in tickerCallback()
/rocksdb-6.9/monitoring/
Dstatistics.cc277 void StatisticsImpl::setTickerCount(uint32_t tickerType, uint64_t count) { in setTickerCount()
287 void StatisticsImpl::setTickerCountLocked(uint32_t tickerType, uint64_t count) { in setTickerCountLocked()
298 uint64_t StatisticsImpl::getAndResetTickerCount(uint32_t tickerType) { in getAndResetTickerCount()
315 void StatisticsImpl::recordTick(uint32_t tickerType, uint64_t count) { in recordTick()
/rocksdb-6.9/java/src/test/java/org/rocksdb/
DStatsCallbackMock.java12 public void tickerCallback(TickerType tickerType, long tickerCount) { in tickerCallback()