Home
last modified time | relevance | path

Searched refs:thread_type (Results 1 – 12 of 12) sorted by relevance

/rocksdb-6.9/util/
Dthreadpool_imp.cc285 ThreadStatus::ThreadType thread_type = ThreadStatus::NUM_THREAD_TYPES; in BGThreadWrapper() local
288 thread_type = ThreadStatus::HIGH_PRIORITY; in BGThreadWrapper()
291 thread_type = ThreadStatus::LOW_PRIORITY; in BGThreadWrapper()
294 thread_type = ThreadStatus::BOTTOM_PRIORITY; in BGThreadWrapper()
297 thread_type = ThreadStatus::USER; in BGThreadWrapper()
303 assert(thread_type != ThreadStatus::NUM_THREAD_TYPES); in BGThreadWrapper()
304 ThreadStatusUtil::RegisterThread(tp->GetHostEnv(), thread_type); in BGThreadWrapper()
Dthread_list_test.cc153 running_count[thread_status.thread_type]++; in TEST_F()
177 running_count[thread_status.thread_type]++; in TEST_F()
/rocksdb-6.9/include/rocksdb/
Dthread_status.h114 thread_type(_thread_type), in ThreadStatus()
131 const ThreadType thread_type; member
164 static std::string GetThreadTypeName(ThreadType thread_type);
/rocksdb-6.9/monitoring/
Dthread_status_updater.cc22 thread_status_data_->thread_type = ttype; in RegisterThread()
168 auto thread_type = thread_data->thread_type.load(std::memory_order_relaxed); in GetThreadList() local
197 thread_id, thread_type, in GetThreadList()
Dthread_status_updater.h69 thread_type.store(ThreadStatus::USER); in ThreadStatusData()
86 std::atomic<ThreadStatus::ThreadType> thread_type; member
Dthread_status_impl.cc18 ThreadStatus::ThreadType thread_type) { in GetThreadTypeName() argument
19 switch (thread_type) { in GetThreadTypeName()
Dthread_status_util.cc19 ThreadStatus::ThreadType thread_type) { in RegisterThread() argument
24 thread_updater_local_cache_->RegisterThread(thread_type, env->GetThreadID()); in RegisterThread()
Dthread_status_util.h34 const Env* env, ThreadStatus::ThreadType thread_type);
/rocksdb-6.9/docs/_posts/
D2015-10-27-getthreadlist.markdown162 const ThreadType thread_type;
/rocksdb-6.9/java/rocksjni/
Dportal.h6414 const ROCKSDB_NAMESPACE::ThreadStatus::ThreadType& thread_type) { in toJavaThreadType() argument
6415 switch (thread_type) { in toJavaThreadType()
6688 ThreadTypeJni::toJavaThreadType(thread_status->thread_type), in construct()
/rocksdb-6.9/db/
Ddb_test.cc4120 ASSERT_LT(thread.thread_type, ThreadStatus::NUM_THREAD_TYPES); in TEST_F()
4121 thread_type_counts[thread.thread_type]++; in TEST_F()
/rocksdb-6.9/tools/
Ddb_bench_tool.cc1933 ThreadStatus::GetThreadTypeName(ts.thread_type).c_str(), in PrintThreadStatus()