Home
last modified time | relevance | path

Searched refs:stime (Results 1 – 13 of 13) sorted by relevance

/kernel/
Dposix-cpu-timers.c172 return cputime_add(p->utime, p->stime); in prof_ticks()
251 times->stime = cputime_add(times->stime, t->stime); in thread_group_cputime()
258 times->stime = cputime_add(times->stime, sig->stime); in thread_group_cputime()
269 if (cputime_gt(b->stime, a->stime)) in update_gt_cputime()
270 a->stime = b->stime; in update_gt_cputime()
313 cpu->cpu = cputime_add(cputime.utime, cputime.stime); in cpu_clock_sample_group()
473 cputime_t utime, cputime_t stime, in cleanup_timers() argument
477 cputime_t ptime = cputime_add(utime, stime); in cleanup_timers()
519 tsk->utime, tsk->stime, tsk->se.sum_exec_runtime); in posix_cpu_timers_exit()
528 cputime.utime, cputime.stime, cputime.sum_exec_runtime); in posix_cpu_timers_exit_group()
[all …]
Dtsacct.c66 stats->ac_stime = cputime_to_msecs(tsk->stime) * USEC_PER_MSEC; in bacct_add_tsk()
129 time = tsk->stime + tsk->utime; in acct_update_integrals()
Dsys.c927 tms->tms_stime = cputime_to_clock_t(cputime.stime); in do_sys_times()
1628 cputime_t utime, stime; in k_getrusage() local
1632 utime = stime = cputime_zero; in k_getrusage()
1636 stime = task_stime(current); in k_getrusage()
1648 stime = p->signal->cstime; in k_getrusage()
1662 stime = cputime_add(stime, cputime.stime); in k_getrusage()
1683 cputime_to_timeval(stime, &r->ru_stime); in k_getrusage()
Dsched_stats.h341 cputimer->cputime.stime = in account_group_system_time()
342 cputime_add(cputimer->cputime.stime, cputime); in account_group_system_time()
Ddelayacct.c114 cputime_to_timespec(tsk->utime + tsk->stime, &ts); in __delayacct_add_tsk()
Ditimer.c86 ptime = cputime_add(times.utime, times.stime); in do_getitimer()
Dexit.c127 sig->stime = cputime_add(sig->stime, task_stime(tsk)); in __exit_signal()
1351 cputime_add(cputime.stime, in wait_task_zombie()
Dcpu.c159 !cputime_eq(p->stime, cputime_zero))) in check_for_tasks()
Dtime.c82 SYSCALL_DEFINE1(stime, time_t __user *, tptr) in SYSCALL_DEFINE1() argument
Dacct.c627 pacct->ac_stime = cputime_add(pacct->ac_stime, current->stime); in acct_collect()
Dsignal.c1401 info.si_stime = cputime_to_clock_t(cputime_add(tsk->stime, in do_notify_parent()
1402 tsk->signal->stime)); in do_notify_parent()
1471 info.si_stime = cputime_to_clock_t(tsk->stime); in do_notify_parent_cldstop()
Dfork.c854 sig->utime = sig->stime = sig->cutime = sig->cstime = cputime_zero; in copy_signal()
1035 p->stime = cputime_zero; in copy_process()
Dsched.c4291 p->stime = cputime_add(p->stime, cputime); in account_system_time()
4390 return p->stime; in task_stime()
4396 total = utime + cputime_to_clock_t(p->stime); in task_utime()
4416 clock_t stime; in task_stime() local
4423 stime = nsec_to_clock_t(p->se.sum_exec_runtime) - in task_stime()
4426 if (stime >= 0) in task_stime()
4427 p->prev_stime = max(p->prev_stime, clock_t_to_cputime(stime)); in task_stime()