| 329 | } |
| 330 | |
| 331 | uint32_t ProfilingService::IncrementCounterValue(uint16_t counterUid) |
| 332 | { |
| 333 | CheckCounterUid(counterUid); |
| 334 | std::atomic<uint32_t>* counterValuePtr = m_CounterIndex.at(counterUid); |
| 335 | ARM_PIPE_ASSERT(counterValuePtr); |
| 336 | return counterValuePtr->operator++(std::memory_order::memory_order_relaxed); |
| 337 | } |
| 338 | |
| 339 | std::unique_ptr<ISendTimelinePacket> ProfilingService::GetSendTimelinePacket() const |
| 340 | { |
no test coverage detected