Lines Matching refs:queue_duration
128 void DeathData::RecordDeath(const int32_t queue_duration, in RecordDeath() argument
143 queue_duration_sum_ + queue_duration); in RecordDeath()
147 if (queue_duration_max() < queue_duration) in RecordDeath()
148 base::subtle::NoBarrier_Store(&queue_duration_max_, queue_duration); in RecordDeath()
162 base::subtle::NoBarrier_Store(&queue_duration_sample_, queue_duration); in RecordDeath()
498 int32_t queue_duration, in TallyADeath() argument
504 random_number_ += queue_duration + run_duration + kSomePrimeNumber; in TallyADeath()
517 death_data->RecordDeath(queue_duration, run_duration, random_number_); in TallyADeath()
550 int32_t queue_duration = 0; in TallyRunOnNamedThreadIfTracking() local
552 queue_duration = (start_of_run - completed_task.EffectiveTimePosted()) in TallyRunOnNamedThreadIfTracking()
555 current_thread_data->TallyADeath(*births, queue_duration, stopwatch); in TallyRunOnNamedThreadIfTracking()
583 int32_t queue_duration = 0; in TallyRunOnWorkerThreadIfTracking() local
585 queue_duration = (start_of_run - time_posted).InMilliseconds(); in TallyRunOnWorkerThreadIfTracking()
587 current_thread_data->TallyADeath(*births, queue_duration, stopwatch); in TallyRunOnWorkerThreadIfTracking()
604 int32_t queue_duration = 0; in TallyRunInAScopedRegionIfTracking() local
605 current_thread_data->TallyADeath(*births, queue_duration, stopwatch); in TallyRunInAScopedRegionIfTracking()