Lines Matching refs:cputimer
175 struct thread_group_cputimer *cputimer = &tsk->signal->cputimer; in cputimer_running() local
177 if (!cputimer->running) in cputimer_running()
213 struct thread_group_cputimer *cputimer = &tsk->signal->cputimer; in account_group_user_time() local
218 raw_spin_lock(&cputimer->lock); in account_group_user_time()
219 cputimer->cputime.utime += cputime; in account_group_user_time()
220 raw_spin_unlock(&cputimer->lock); in account_group_user_time()
236 struct thread_group_cputimer *cputimer = &tsk->signal->cputimer; in account_group_system_time() local
241 raw_spin_lock(&cputimer->lock); in account_group_system_time()
242 cputimer->cputime.stime += cputime; in account_group_system_time()
243 raw_spin_unlock(&cputimer->lock); in account_group_system_time()
259 struct thread_group_cputimer *cputimer = &tsk->signal->cputimer; in account_group_exec_runtime() local
264 raw_spin_lock(&cputimer->lock); in account_group_exec_runtime()
265 cputimer->cputime.sum_exec_runtime += ns; in account_group_exec_runtime()
266 raw_spin_unlock(&cputimer->lock); in account_group_exec_runtime()