Home
last modified time | relevance | path

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

/rocksdb-6.9/monitoring/
Dthread_status_impl.cc88 ThreadStatus::OperationType op_type, const uint64_t* op_properties) { in InterpretOperationProperties() argument
104 property_map.insert({"BaseInputLevel", op_properties[i] >> 32}); in InterpretOperationProperties()
106 {"OutputLevel", op_properties[i] % (uint64_t(1) << 32U)}); in InterpretOperationProperties()
108 property_map.insert({"IsManual", ((op_properties[i] & 2) >> 1)}); in InterpretOperationProperties()
109 property_map.insert({"IsDeletion", ((op_properties[i] & 4) >> 2)}); in InterpretOperationProperties()
110 property_map.insert({"IsTrivialMove", ((op_properties[i] & 8) >> 3)}); in InterpretOperationProperties()
113 {GetOperationPropertyName(op_type, i), op_properties[i]}); in InterpretOperationProperties()
Dthread_status_updater.cc90 data->op_properties[i].store(value, std::memory_order_relaxed); in SetThreadOperationProperty()
99 data->op_properties[i].fetch_add(delta, std::memory_order_relaxed); in IncreaseThreadOperationProperty()
128 data->op_properties[i].store(0, std::memory_order_relaxed); in ClearThreadOperationProperties()
191 thread_data->op_properties[i].load(std::memory_order_relaxed); in GetThreadList()
Dthread_status_updater.h91 std::atomic<uint64_t> op_properties[ThreadStatus::kNumOperationProperties]; member
/rocksdb-6.9/include/rocksdb/
Dthread_status.h122 op_properties[i] = _op_props[i]; in ThreadStatus()
156 uint64_t op_properties[kNumOperationProperties]; member
182 OperationType op_type, const uint64_t* op_properties);
/rocksdb-6.9/java/rocksjni/
Dthread_status.cc90 const std::unique_ptr<uint64_t[]> op_properties(new uint64_t[len]); in Java_org_rocksdb_ThreadStatus_interpretOperationProperties() local
97 op_properties[i] = static_cast<uint64_t>(jop[i]); in Java_org_rocksdb_ThreadStatus_interpretOperationProperties()
105 op_properties.get()); in Java_org_rocksdb_ThreadStatus_interpretOperationProperties()
Dportal.h6682 body[i] = static_cast<jlong>(thread_status->op_properties[i]); in construct()
/rocksdb-6.9/docs/_posts/
D2015-10-27-getthreadlist.markdown185 // operation. Same field in op_properties[] might have different
187 uint64_t op_properties[kNumOperationProperties];
/rocksdb-6.9/tools/
Ddb_bench_tool.cc1940 auto op_properties = ThreadStatus::InterpretOperationProperties( in PrintThreadStatus() local
1941 ts.operation_type, ts.op_properties); in PrintThreadStatus()
1942 for (const auto& op_prop : op_properties) { in PrintThreadStatus()