Home
last modified time | relevance | path

Searched defs:mutex_stat (Results 1 – 1 of 1) sorted by relevance

/aosp_15_r20/system/media/audio_utils/include/audio_utils/
H A Dmutex.h590 struct mutex_stat { struct
595 stats_atomic<CounterType> locks = 0; // number of times locked
596 stats_atomic<CounterType> unlocks = 0; // number of times unlocked
597 stats_atomic<CounterType> waits = 0; // number of locks that waited
598 stats_atomic<AccumulatorType> wait_sum_ns = 0.; // sum of time waited.
599 stats_atomic<AccumulatorType> wait_sumsq_ns = 0.; // sumsq of time waited.
602 void add_wait_time(WaitTimeType wait_ns) { in add_wait_time()
608 std::string to_string() const { in to_string()