Home
last modified time | relevance | path

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

/rocksdb-6.9/java/src/main/java/org/rocksdb/
DThreadType.java11 public enum ThreadType { enum
34 ThreadType(final byte value) { in ThreadType() method in ThreadType
56 static ThreadType fromValue(final byte value) in fromValue()
58 for (final ThreadType threadType : ThreadType.values()) { in fromValue()
DThreadStatus.java12 private final ThreadType threadType;
34 this.threadType = ThreadType.fromValue(threadTypeValue); in ThreadStatus()
58 public ThreadType getThreadType() { in getThreadType()
142 public static String getThreadTypeName(final ThreadType threadType) { in getThreadTypeName()
/rocksdb-6.9/monitoring/
Dthread_status_impl.cc18 ThreadStatus::ThreadType thread_type) { in GetThreadTypeName()
20 case ThreadStatus::ThreadType::HIGH_PRIORITY: in GetThreadTypeName()
22 case ThreadStatus::ThreadType::LOW_PRIORITY: in GetThreadTypeName()
24 case ThreadStatus::ThreadType::USER: in GetThreadTypeName()
26 case ThreadStatus::ThreadType::BOTTOM_PRIORITY: in GetThreadTypeName()
28 case ThreadStatus::ThreadType::NUM_THREAD_TYPES: in GetThreadTypeName()
122 ThreadStatus::ThreadType /*thread_type*/) {
Dthread_status_updater.h86 std::atomic<ThreadStatus::ThreadType> thread_type;
122 void RegisterThread(ThreadStatus::ThreadType ttype, uint64_t thread_id);
Dthread_status_updater.cc18 void ThreadStatusUpdater::RegisterThread(ThreadStatus::ThreadType ttype, in RegisterThread()
273 void ThreadStatusUpdater::RegisterThread(ThreadStatus::ThreadType /*ttype*/,
Dthread_status_util.h34 const Env* env, ThreadStatus::ThreadType thread_type);
Dthread_status_util.cc19 ThreadStatus::ThreadType thread_type) { in RegisterThread()
/rocksdb-6.9/include/rocksdb/
Dthread_status.h43 enum ThreadType : int { enum
107 ThreadStatus(const uint64_t _id, const ThreadType _thread_type, in ThreadStatus()
131 const ThreadType thread_type;
164 static std::string GetThreadTypeName(ThreadType thread_type);
/rocksdb-6.9/docs/_posts/
D2015-10-27-getthreadlist.markdown51 <td style="padding:3px" >ThreadType
162 const ThreadType thread_type;
/rocksdb-6.9/java/rocksjni/
Dportal.h6414 const ROCKSDB_NAMESPACE::ThreadStatus::ThreadType& thread_type) { in toJavaThreadType()
6416 case ROCKSDB_NAMESPACE::ThreadStatus::ThreadType::HIGH_PRIORITY: in toJavaThreadType()
6418 case ROCKSDB_NAMESPACE::ThreadStatus::ThreadType::LOW_PRIORITY: in toJavaThreadType()
6420 case ROCKSDB_NAMESPACE::ThreadStatus::ThreadType::USER: in toJavaThreadType()
6422 case ROCKSDB_NAMESPACE::ThreadStatus::ThreadType::BOTTOM_PRIORITY: in toJavaThreadType()
6431 static ROCKSDB_NAMESPACE::ThreadStatus::ThreadType toCppThreadType( in toCppThreadType()
6435 return ROCKSDB_NAMESPACE::ThreadStatus::ThreadType::HIGH_PRIORITY; in toCppThreadType()
6437 return ROCKSDB_NAMESPACE::ThreadStatus::ThreadType::LOW_PRIORITY; in toCppThreadType()
6439 return ThreadStatus::ThreadType::USER; in toCppThreadType()
6441 return ROCKSDB_NAMESPACE::ThreadStatus::ThreadType::BOTTOM_PRIORITY; in toCppThreadType()
[all …]
/rocksdb-6.9/util/
Dthreadpool_imp.cc285 ThreadStatus::ThreadType thread_type = ThreadStatus::NUM_THREAD_TYPES; in BGThreadWrapper()
/rocksdb-6.9/java/
DCMakeLists.txt214 src/main/java/org/rocksdb/ThreadType.java