| /OK3568_Linux_fs/kernel/kernel/sched/ |
| H A D | cputime.c | 127 p->utime += cputime; in account_user_time() 152 p->utime += cputime; in account_guest_time() 307 u64 utime, stime; in thread_group_cputime() local 329 times->utime = sig->utime; in thread_group_cputime() 334 task_cputime(t, &utime, &stime); in thread_group_cputime() 335 times->utime += utime; in thread_group_cputime() 455 *ut = curr->utime; in cputime_adjust() 461 *ut = p->utime; in task_cputime_adjusted() 472 *ut = cputime.utime; in thread_group_cputime_adjusted() 559 u64 rtime, stime, utime; in cputime_adjust() local [all …]
|
| /OK3568_Linux_fs/kernel/kernel/cgroup/ |
| H A D | rstat.c | 299 dst_bstat->cputime.utime += src_bstat->cputime.utime; in cgroup_base_stat_add() 307 dst_bstat->cputime.utime -= src_bstat->cputime.utime; in cgroup_base_stat_sub() 377 rstatc->bstat.cputime.utime += delta_exec; in __cgroup_account_cputime_field() 402 cputime->utime = 0; in root_cgroup_cputime() 414 cputime->utime += user; in root_cgroup_cputime() 430 u64 usage, utime, stime; in cgroup_base_stat_cputime_show() local 437 &utime, &stime); in cgroup_base_stat_cputime_show() 442 utime = cputime.utime; in cgroup_base_stat_cputime_show() 447 do_div(utime, NSEC_PER_USEC); in cgroup_base_stat_cputime_show() 453 usage, utime, stime); in cgroup_base_stat_cputime_show()
|
| /OK3568_Linux_fs/kernel/kernel/ |
| H A D | tsacct.c | 25 u64 utime, stime, utimescaled, stimescaled; in bacct_add_tsk() local 62 task_cputime(tsk, &utime, &stime); in bacct_add_tsk() 63 stats->ac_utime = div_u64(utime, NSEC_PER_USEC); in bacct_add_tsk() 119 u64 utime, u64 stime) in __acct_update_integrals() argument 126 time = stime + utime; in __acct_update_integrals() 148 u64 utime, stime; in acct_update_integrals() local 152 task_cputime(tsk, &utime, &stime); in acct_update_integrals() 153 __acct_update_integrals(tsk, utime, stime); in acct_update_integrals() 163 __acct_update_integrals(tsk, tsk->utime, tsk->stime); in acct_account_cputime()
|
| H A D | delayacct.c | 87 u64 utime, stime, stimescaled, utimescaled; in __delayacct_add_tsk() local 92 task_cputime(tsk, &utime, &stime); in __delayacct_add_tsk() 94 tmp += utime + stime; in __delayacct_add_tsk()
|
| H A D | acct.c | 538 u64 utime, stime; in acct_collect() local 568 task_cputime(current, &utime, &stime); in acct_collect() 569 pacct->ac_utime += utime; in acct_collect()
|
| /OK3568_Linux_fs/kernel/include/linux/sched/ |
| H A D | cputime.h | 22 u64 *utime, u64 *stime); 26 u64 *utime, u64 *stime) in task_cputime() argument 28 *utime = t->utime; in task_cputime() 135 atomic64_add(cputime, &cputimer->cputime_atomic.utime); in account_group_user_time() 183 prev->utime = prev->stime = 0; in prev_cputime_init()
|
| H A D | types.h | 19 u64 utime; member
|
| H A D | signal.h | 49 atomic64_t utime; member 56 .utime = ATOMIC64_INIT(0), \ 177 u64 utime, stime, cutime, cstime; member
|
| /OK3568_Linux_fs/kernel/arch/powerpc/kernel/ |
| H A D | time.c | 246 acct->utime -= ust; in accumulate_stolen_time() 281 unsigned long utime, utime_scaled; in vtime_delta_scaled() local 286 utime = acct->utime - acct->utime_sspurr; in vtime_delta_scaled() 287 acct->utime_sspurr = acct->utime; in vtime_delta_scaled() 300 utime_scaled = utime; in vtime_delta_scaled() 301 if (deltascaled != stime + utime) { in vtime_delta_scaled() 302 if (utime) { in vtime_delta_scaled() 303 stime_scaled = deltascaled * stime / (stime + utime); in vtime_delta_scaled() 400 if (acct->utime) in vtime_flush() 401 account_user_time(tsk, cputime_to_nsecs(acct->utime)); in vtime_flush() [all …]
|
| /OK3568_Linux_fs/kernel/kernel/time/ |
| H A D | posix-cpu-timers.c | 189 u64 utime, stime; in cpu_clock_sample() local 194 task_cputime(p, &utime, &stime); in cpu_clock_sample() 198 return utime + stime; in cpu_clock_sample() 200 return utime; in cpu_clock_sample() 207 static inline void store_samples(u64 *samples, u64 stime, u64 utime, u64 rtime) in store_samples() argument 209 samples[CPUCLOCK_PROF] = stime + utime; in store_samples() 210 samples[CPUCLOCK_VIRT] = utime; in store_samples() 216 u64 stime, utime; in task_sample_cputime() local 218 task_cputime(p, &utime, &stime); in task_sample_cputime() 219 store_samples(samples, stime, utime, p->se.sum_exec_runtime); in task_sample_cputime() [all …]
|
| /OK3568_Linux_fs/kernel/tools/lib/traceevent/plugins/ |
| H A D | plugin_futex.c | 21 unsigned long long utime; /* or val2 */ member 60 trace_seq_printf(s,fop->fmt_utime, args->utime); in futex_print() 85 if (tep_get_field_val(s, event, "utime", record, &args.utime, 1)) in futex_handler()
|
| /OK3568_Linux_fs/kernel/drivers/misc/ |
| H A D | uid_sys_stats.c | 68 u64 utime; member 336 u64 utime; in uid_cputime_show() local 362 task_cputime_adjusted(task, &utime, &stime); in uid_cputime_show() 363 uid_entry->active_utime += utime; in uid_cputime_show() 370 u64 total_utime = uid_entry->utime + in uid_cputime_show() 630 u64 utime, stime; in process_notifier() local 644 task_cputime_adjusted(task, &utime, &stime); in process_notifier() 645 uid_entry->utime += utime; in process_notifier()
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/unfs3/unfs3/ |
| H A D | 0001-attr-fix-utime-for-symlink.patch | 4 Subject: [PATCH] attr: fix utime for symlink 7 symlink file because it only uses utime(), which will follow the 68 #define backend_utime utime
|
| /OK3568_Linux_fs/kernel/arch/ia64/kernel/ |
| H A D | time.c | 72 if (ti->utime) in vtime_flush() 73 account_user_time(tsk, cycle_to_nsec(ti->utime)); in vtime_flush() 96 ti->utime = 0; in vtime_flush()
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/ |
| H A D | utime.h | 44 extern int utime (const char *__file,
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/ |
| H A D | utime.h | 44 extern int utime (const char *__file,
|
| /OK3568_Linux_fs/kernel/arch/powerpc/include/asm/ |
| H A D | accounting.h | 12 unsigned long utime; member
|
| H A D | cputime.h | 77 acct->utime += (tb - acct->starttime_user); in account_cpu_user_entry()
|
| /OK3568_Linux_fs/kernel/fs/proc/ |
| H A D | array.c | 448 u64 cutime, cstime, utime, stime; in do_task_stat() local 479 cutime = cstime = utime = stime = 0; in do_task_stat() 513 thread_group_cputime_adjusted(task, &utime, &stime); in do_task_stat() 529 task_cputime_adjusted(task, &utime, &stime); in do_task_stat() 556 seq_put_decimal_ull(m, " ", nsec_to_clock_t(utime)); in do_task_stat()
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/linux/raid/ |
| H A D | md_p.h | 160 __u32 utime; /* 0 Superblock update time */ member 293 __le64 utime; /* 40 bits second, 24 bits microseconds */ member
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/linux/raid/ |
| H A D | md_p.h | 160 __u32 utime; /* 0 Superblock update time */ member 293 __le64 utime; /* 40 bits second, 24 bits microseconds */ member
|
| /OK3568_Linux_fs/kernel/include/uapi/linux/raid/ |
| H A D | md_p.h | 160 __u32 utime; /* 0 Superblock update time */ member 293 __le64 utime; /* 40 bits second, 24 bits microseconds */ member
|
| /OK3568_Linux_fs/kernel/tools/perf/scripts/python/ |
| H A D | futex-contention.py | 30 nr, uaddr, op, val, utime, uaddr2, val3): argument
|
| /OK3568_Linux_fs/yocto/poky/meta/classes/ |
| H A D | buildstats.bbclass | 14 # 13: utime, 14: stime, 15: cutime, 16: cstime 22 'utime' : fields[13], 90 f.write("utime: %s\n" % cpu['utime'])
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-devtools/android-tools/android-tools/core/ |
| H A D | 0001-adb-remove-selinux-extensions.patch | 44 utime(path, &u);
|