Home
last modified time | relevance | path

Searched refs:tickerType (Results 1 – 6 of 6) sorted by relevance

/rocksdb-6.9/monitoring/
Dstatistics.cc243 return getTickerCountLocked(tickerType); in getTickerCount()
247 assert(tickerType < TICKER_ENUM_MAX); in getTickerCountLocked()
280 setTickerCountLocked(tickerType, count); in setTickerCount()
282 if (stats_ && tickerType < TICKER_ENUM_MAX) { in setTickerCount()
283 stats_->setTickerCount(tickerType, count); in setTickerCount()
288 assert(tickerType < TICKER_ENUM_MAX); in setTickerCountLocked()
302 assert(tickerType < TICKER_ENUM_MAX); in getAndResetTickerCount()
309 if (stats_ && tickerType < TICKER_ENUM_MAX) { in getAndResetTickerCount()
310 stats_->setTickerCount(tickerType, 0); in getAndResetTickerCount()
316 assert(tickerType < TICKER_ENUM_MAX); in recordTick()
[all …]
/rocksdb-6.9/java/src/main/java/org/rocksdb/
DStatistics.java77 public long getTickerCount(final TickerType tickerType) { in getTickerCount() argument
79 return getTickerCount(nativeHandle_, tickerType.getValue()); in getTickerCount()
89 public long getAndResetTickerCount(final TickerType tickerType) { in getAndResetTickerCount() argument
91 return getAndResetTickerCount(nativeHandle_, tickerType.getValue()); in getAndResetTickerCount()
146 private native long getTickerCount(final long handle, final byte tickerType); in getTickerCount() argument
147 private native long getAndResetTickerCount(final long handle, final byte tickerType); in getAndResetTickerCount() argument
DTickerType.java752 for (final TickerType tickerType : TickerType.values()) { in getTickerType()
753 if (tickerType.getValue() == value) { in getTickerType()
754 return tickerType; in getTickerType()
DStatisticsCollectorCallback.java24 void tickerCallback(TickerType tickerType, long tickerCount); in tickerCallback() argument
/rocksdb-6.9/include/rocksdb/
Dstatistics.h488 virtual uint64_t getTickerCount(uint32_t tickerType) const = 0;
492 virtual void recordTick(uint32_t tickerType, uint64_t count = 0) = 0;
493 virtual void setTickerCount(uint32_t tickerType, uint64_t count) = 0;
494 virtual uint64_t getAndResetTickerCount(uint32_t tickerType) = 0;
/rocksdb-6.9/java/src/test/java/org/rocksdb/
DStatsCallbackMock.java12 public void tickerCallback(TickerType tickerType, long tickerCount) { in tickerCallback() argument