Home
last modified time | relevance | path

Searched refs:state_type (Results 1 – 8 of 8) sorted by relevance

/rocksdb-6.9/monitoring/
Dthread_status_updater.cc146 data->state_type.store(type, std::memory_order_relaxed); in SetThreadState()
154 data->state_type.store(ThreadStatus::STATE_UNKNOWN, in ClearThreadState()
176 ThreadStatus::StateType state_type = ThreadStatus::STATE_UNKNOWN; in GetThreadList() local
188 state_type = thread_data->state_type.load(std::memory_order_relaxed); in GetThreadList()
200 op_elapsed_micros, op_stage, op_props, state_type); in GetThreadList()
Dthread_status_impl.cc51 ThreadStatus::StateType state_type) { in GetStateName() argument
52 if (state_type < 0 || state_type >= NUM_STATE_TYPES) { in GetStateName()
55 return global_state_table[state_type].name; in GetStateName()
Dthread_status_updater.h73 state_type.store(ThreadStatus::STATE_UNKNOWN); in ThreadStatusData()
92 std::atomic<ThreadStatus::StateType> state_type; member
/rocksdb-6.9/include/rocksdb/
Dthread_status.h120 state_type(_state_type) { in ThreadStatus()
159 const StateType state_type; member
185 static const std::string& GetStateName(StateType state_type);
/rocksdb-6.9/util/
Dthread_list_test.cc24 const ThreadStatus::StateType state_type = in SimulatedBackgroundTask() argument
28 operation_type_(operation_type), state_type_(state_type), in SimulatedBackgroundTask()
195 state_counts[thread_status.state_type]++; in UpdateStatusCounts()
/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() argument
6580 switch (state_type) { in toJavaStateType()
6695 StateTypeJni::toJavaStateType(thread_status->state_type)); in construct()
/rocksdb-6.9/tools/
Ddb_bench_tool.cc1938 ThreadStatus::GetStateName(ts.state_type).c_str()); in PrintThreadStatus()