Home
last modified time | relevance | path

Searched refs:StateType (Results 1 – 14 of 14) sorted by relevance

/rocksdb-6.9/java/src/main/java/org/rocksdb/
DStateType.java14 public enum StateType { enum
20 StateType(final byte value) { in StateType() method in StateType
43 static StateType fromValue(final byte value) in fromValue()
45 for (final StateType threadType : StateType.values()) { in fromValue()
DThreadStatus.java19 private final StateType stateType;
41 this.stateType = StateType.fromValue(stateTypeValue); in ThreadStatus()
131 public StateType getStateType() { in getStateType()
209 public static String getStateName(final StateType stateType) { in getStateName()
/rocksdb-6.9/include/rocksdb/
Dthread_status.h101 enum StateType : int { enum
112 const uint64_t _op_props[], const StateType _state_type) in ThreadStatus()
159 const StateType state_type;
185 static const std::string& GetStateName(StateType state_type);
/rocksdb-6.9/monitoring/
Dthread_status_util.h71 static void SetThreadState(ThreadStatus::StateType type);
77 const ThreadStatus::StateType state, int micro);
78 static void TEST_StateDelay(const ThreadStatus::StateType state);
Dthread_status_util_debug.cc19 const ThreadStatus::StateType state, int micro) { in TEST_SetStateDelay()
23 void ThreadStatusUtil::TEST_StateDelay(const ThreadStatus::StateType state) { in TEST_StateDelay()
Dthread_status_updater.h92 std::atomic<ThreadStatus::StateType> state_type;
164 void SetThreadState(const ThreadStatus::StateType type);
Dthread_status_updater.cc141 void ThreadStatusUpdater::SetThreadState(const ThreadStatus::StateType type) { in SetThreadState()
176 ThreadStatus::StateType state_type = ThreadStatus::STATE_UNKNOWN; in GetThreadList()
288 const ThreadStatus::StateType /*type*/) {}
Dthread_status_impl.cc51 ThreadStatus::StateType state_type) { in GetStateName()
140 ThreadStatus::StateType /*state_type*/) {
Dthread_status_util.cc102 void ThreadStatusUtil::SetThreadState(ThreadStatus::StateType state) { in SetThreadState()
186 void ThreadStatusUtil::SetThreadState(ThreadStatus::StateType /*state*/) {}
/rocksdb-6.9/util/
Dthread_list_test.cc24 const ThreadStatus::StateType state_type = in SimulatedBackgroundTask()
84 const ThreadStatus::StateType state_type_;
110 ThreadStatus::StateType(type))); in TEST_F()
Dthread_operation.h78 const ThreadStatus::StateType type;
/rocksdb-6.9/docs/_posts/
D2015-10-27-getthreadlist.markdown190 const StateType state_type;
/rocksdb-6.9/java/rocksjni/
Dportal.h6579 const ROCKSDB_NAMESPACE::ThreadStatus::StateType& state_type) { in toJavaStateType()
6581 case ROCKSDB_NAMESPACE::ThreadStatus::StateType::STATE_UNKNOWN: in toJavaStateType()
6583 case ROCKSDB_NAMESPACE::ThreadStatus::StateType::STATE_MUTEX_WAIT: in toJavaStateType()
6592 static ROCKSDB_NAMESPACE::ThreadStatus::StateType toCppStateType( in toCppStateType()
6596 return ROCKSDB_NAMESPACE::ThreadStatus::StateType::STATE_UNKNOWN; in toCppStateType()
6598 return ROCKSDB_NAMESPACE::ThreadStatus::StateType::STATE_MUTEX_WAIT; in toCppStateType()
6601 return ROCKSDB_NAMESPACE::ThreadStatus::StateType::STATE_UNKNOWN; in toCppStateType()
/rocksdb-6.9/java/
DCMakeLists.txt203 src/main/java/org/rocksdb/StateType.java