Home
last modified time | relevance | path

Searched refs:OperationType (Results 1 – 15 of 15) sorted by relevance

/rocksdb-6.9/java/src/main/java/org/rocksdb/
DOperationType.java14 public enum OperationType { enum
21 OperationType(final byte value) { in OperationType() method in OperationType
44 static OperationType fromValue(final byte value) in fromValue()
46 for (final OperationType threadType : OperationType.values()) { in fromValue()
DThreadStatus.java15 private final OperationType operationType;
37 this.operationType = OperationType.fromValue(operationTypeValue); in ThreadStatus()
90 public OperationType getOperationType() { in getOperationType()
153 public static String getOperationName(final OperationType operationType) { in getOperationName()
183 final OperationType operationType, final int i) { in getOperationPropertyName()
197 final OperationType operationType, final long[] operationProperties) { in interpretOperationProperties()
/rocksdb-6.9/include/rocksdb/
Dthread_status.h54 enum OperationType : int { enum
109 const OperationType _operation_type, in ThreadStatus()
144 const OperationType operation_type;
167 static const std::string& GetOperationName(OperationType op_type);
176 static const std::string& GetOperationPropertyName(OperationType op_type,
182 OperationType op_type, const uint64_t* op_properties);
/rocksdb-6.9/monitoring/
Dthread_status_impl.cc35 ThreadStatus::OperationType op_type) { in GetOperationName()
69 ThreadStatus::OperationType op_type, int i) { in GetOperationPropertyName()
88 ThreadStatus::OperationType op_type, const uint64_t* op_properties) { in InterpretOperationProperties()
128 ThreadStatus::OperationType /*op_type*/) {
151 ThreadStatus::OperationType /*op_type*/, int /*i*/) {
157 ThreadStatus::OperationType /*op_type*/,
Dthread_status_updater.h88 std::atomic<ThreadStatus::OperationType> operation_type;
132 void SetThreadOperation(const ThreadStatus::OperationType type);
Dthread_status_updater.cc67 const ThreadStatus::OperationType type) { in SetThreadOperation()
174 ThreadStatus::OperationType op_type = ThreadStatus::OP_UNKNOWN; in GetThreadList()
283 const ThreadStatus::OperationType /*type*/) {}
Dthread_status_util.cc52 void ThreadStatusUtil::SetThreadOperation(ThreadStatus::OperationType op) { in SetThreadOperation()
178 void ThreadStatusUtil::SetThreadOperation(ThreadStatus::OperationType /*op*/) {}
Dthread_status_util.h60 static void SetThreadOperation(ThreadStatus::OperationType type);
/rocksdb-6.9/util/
Dthread_list_test.cc22 const ThreadStatus::OperationType operation_type = in SimulatedBackgroundTask()
83 const ThreadStatus::OperationType operation_type_;
103 ThreadStatus::OperationType(type))); in TEST_F()
Dthread_operation.h26 const ThreadStatus::OperationType type;
/rocksdb-6.9/java/rocksjni/
Dportal.h6455 const ROCKSDB_NAMESPACE::ThreadStatus::OperationType& operation_type) { in toJavaOperationType()
6457 case ROCKSDB_NAMESPACE::ThreadStatus::OperationType::OP_UNKNOWN: in toJavaOperationType()
6459 case ROCKSDB_NAMESPACE::ThreadStatus::OperationType::OP_COMPACTION: in toJavaOperationType()
6461 case ROCKSDB_NAMESPACE::ThreadStatus::OperationType::OP_FLUSH: in toJavaOperationType()
6470 static ROCKSDB_NAMESPACE::ThreadStatus::OperationType toCppOperationType( in toCppOperationType()
6474 return ROCKSDB_NAMESPACE::ThreadStatus::OperationType::OP_UNKNOWN; in toCppOperationType()
6476 return ROCKSDB_NAMESPACE::ThreadStatus::OperationType::OP_COMPACTION; in toCppOperationType()
6478 return ROCKSDB_NAMESPACE::ThreadStatus::OperationType::OP_FLUSH; in toCppOperationType()
6481 return ROCKSDB_NAMESPACE::ThreadStatus::OperationType::OP_UNKNOWN; in toCppOperationType()
/rocksdb-6.9/docs/_posts/
D2015-10-27-getthreadlist.markdown175 const OperationType operation_type;
/rocksdb-6.9/tools/
Ddb_bench_tool.cc1810 enum OperationType : unsigned char { enum
1824 static std::unordered_map<OperationType, std::string, std::hash<unsigned char>>
1853 std::unordered_map<OperationType, std::shared_ptr<HistogramImpl>,
1968 enum OperationType op_type = kOthers) { in FinishedOps()
5808 void BGWriter(ThreadState* thread, enum OperationType write_merge) { in BGWriter()
/rocksdb-6.9/java/
DCMakeLists.txt169 src/main/java/org/rocksdb/OperationType.java
/rocksdb-6.9/db/
Ddb_test.cc4074 void VerifyOperationCount(Env* env, ThreadStatus::OperationType op_type, in VerifyOperationCount()