/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/uw-imap/uw-imap/ |
H A D | uw-imap-fix-incompatible-pointer-types.patch | 4 mx.c:1286:15: error: passing argument 2 of 'utime' from incompatible pointer type [-Wincompatible-p… 5 1286 | utime (file,tp); /* set the times */ 34 - utime (tmp,tp); /* set the times */ 35 + utime (tmp, (const struct utimbuf *)tp); /* set the times */ 43 - utime (stream->mailbox,tp); 44 + utime (stream->mailbox, (const struct utimbuf *)tp); 52 - utime (file,tp); /* set the times */ 53 + utime (file, (const struct utimbuf *)tp); /* set the times */ 61 - utime (file,tp); /* set the times */ 62 + utime (file, (const struct utimbuf *)tp); /* set the times */ [all …]
|
H A D | 0001-Define-prototype-for-safe_flock.patch | 38 +#include <utime.h> 70 +#include <utime.h> /* for struct tm */ 89 +#include <utime.h>
|
/openbmc/linux/kernel/sched/ |
H A D | cputime.c | 126 p->utime += cputime; in account_user_time() 148 p->utime += cputime; in account_guest_time() 315 u64 utime, stime; in thread_group_cputime() local 337 times->utime = sig->utime; in thread_group_cputime() 342 task_cputime(t, &utime, &stime); in thread_group_cputime() 343 times->utime += utime; in thread_group_cputime() 459 *ut = curr->utime; in cputime_adjust() 465 *ut = p->utime; in task_cputime_adjusted() 476 *ut = cputime.utime; in thread_group_cputime_adjusted() 561 u64 rtime, stime, utime; in cputime_adjust() local [all …]
|
/openbmc/linux/kernel/ |
H A D | tsacct.c | 25 u64 utime, stime, utimescaled, stimescaled; in bacct_add_tsk() local 68 task_cputime(tsk, &utime, &stime); in bacct_add_tsk() 69 stats->ac_utime = div_u64(utime, NSEC_PER_USEC); in bacct_add_tsk() 125 u64 utime, u64 stime) in __acct_update_integrals() argument 132 time = stime + utime; in __acct_update_integrals() 154 u64 utime, stime; in acct_update_integrals() local 158 task_cputime(tsk, &utime, &stime); in acct_update_integrals() 159 __acct_update_integrals(tsk, utime, stime); in acct_update_integrals() 169 __acct_update_integrals(tsk, tsk->utime, tsk->stime); in acct_account_cputime()
|
H A D | delayacct.c | 131 u64 utime, stime, stimescaled, utimescaled; in delayacct_add_tsk() local 136 task_cputime(tsk, &utime, &stime); in delayacct_add_tsk() 138 tmp += utime + stime; in delayacct_add_tsk()
|
/openbmc/linux/include/linux/sched/ |
H A D | cputime.h | 13 u64 *utime, u64 *stime); 17 u64 *utime, u64 *stime) in task_cputime() argument 19 *utime = t->utime; in task_cputime() 127 atomic64_add(cputime, &cputimer->cputime_atomic.utime); in account_group_user_time() 175 prev->utime = prev->stime = 0; in prev_cputime_init()
|
H A D | types.h | 19 u64 utime; member
|
/openbmc/linux/kernel/cgroup/ |
H A D | rstat.c | 324 dst_bstat->cputime.utime += src_bstat->cputime.utime; in cgroup_base_stat_add() 335 dst_bstat->cputime.utime -= src_bstat->cputime.utime; in cgroup_base_stat_sub() 422 rstatc->bstat.cputime.utime += delta_exec; in __cgroup_account_cputime_field() 463 cputime->utime += user; in root_cgroup_cputime() 482 u64 usage, utime, stime; in cgroup_base_stat_cputime_show() local 492 &utime, &stime); in cgroup_base_stat_cputime_show() 500 utime = bstat.cputime.utime; in cgroup_base_stat_cputime_show() 508 do_div(utime, NSEC_PER_USEC); in cgroup_base_stat_cputime_show() 517 usage, utime, stime); in cgroup_base_stat_cputime_show()
|
/openbmc/google-misc/subprojects/metrics-ipmi-blobs/ |
H A D | metric.cpp | 87 float utime; member 94 const float negTime = -(utime + stime); in operator <() 95 const float negOtherTime = -(other.utime + other.stime); in operator <() 127 entry.utime = t.utime; in getProcStatMetric() 144 others.utime = others.stime = 0; in getProcStatMetric() 167 others.utime += entry.utime; in getProcStatMetric() 181 .utime = entry.utime, in getProcStatMetric() 191 .utime = others.utime, in getProcStatMetric()
|
H A D | util.hpp | 27 float utime; member
|
H A D | README.md | 11 4. Status of the top 10 processes: cmdline, utime, stime
|
/openbmc/linux/kernel/futex/ |
H A D | syscalls.c | 165 const struct __kernel_timespec __user *, utime, in SYSCALL_DEFINE6() argument 172 if (utime && futex_cmd_has_timeout(cmd)) { in SYSCALL_DEFINE6() 175 if (get_timespec64(&ts, utime)) in SYSCALL_DEFINE6() 183 return do_futex(uaddr, op, val, tp, uaddr2, (unsigned long)utime, val3); in SYSCALL_DEFINE6() 360 const struct old_timespec32 __user *, utime, u32 __user *, uaddr2, in SYSCALL_DEFINE6() argument 367 if (utime && futex_cmd_has_timeout(cmd)) { in SYSCALL_DEFINE6() 368 if (get_old_timespec32(&ts, utime)) in SYSCALL_DEFINE6() 376 return do_futex(uaddr, op, val, tp, uaddr2, (unsigned long)utime, val3); in SYSCALL_DEFINE6()
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/uw-imap/ |
H A D | uw-imap_2007f.bb | 57 # unix.c:235:21: error: passing argument 2 of 'utime' from incompatible pointer type [-Wincompatibl… 58 # unix.c:1002:15: error: passing argument 2 of 'utime' from incompatible pointer type [-Wincompatib… 59 # unix.c:1163:15: error: passing argument 2 of 'utime' from incompatible pointer type [-Wincompatib… 60 # unix.c:1428:40: error: passing argument 2 of 'utime' from incompatible pointer type [-Wincompatib… 61 # unix.c:2254:33: error: passing argument 2 of 'utime' from incompatible pointer type [-Wincompatib…
|
/openbmc/linux/arch/powerpc/kernel/ |
H A D | time.c | 176 unsigned long utime, utime_scaled; in vtime_delta_scaled() local 181 utime = acct->utime - acct->utime_sspurr; in vtime_delta_scaled() 182 acct->utime_sspurr = acct->utime; in vtime_delta_scaled() 195 utime_scaled = utime; in vtime_delta_scaled() 196 if (deltascaled != stime + utime) { in vtime_delta_scaled() 197 if (utime) { in vtime_delta_scaled() 198 stime_scaled = deltascaled * stime / (stime + utime); in vtime_delta_scaled() 323 if (acct->utime) in vtime_flush() 324 account_user_time(tsk, cputime_to_nsecs(acct->utime)); in vtime_flush() 350 acct->utime = 0; in vtime_flush()
|
/openbmc/linux/kernel/time/ |
H A D | posix-cpu-timers.c | 196 u64 utime, stime; in cpu_clock_sample() local 201 task_cputime(p, &utime, &stime); in cpu_clock_sample() 205 return utime + stime; in cpu_clock_sample() 207 return utime; in cpu_clock_sample() 214 static inline void store_samples(u64 *samples, u64 stime, u64 utime, u64 rtime) in store_samples() argument 216 samples[CPUCLOCK_PROF] = stime + utime; in store_samples() 217 samples[CPUCLOCK_VIRT] = utime; in store_samples() 223 u64 stime, utime; in task_sample_cputime() local 225 task_cputime(p, &utime, &stime); in task_sample_cputime() 226 store_samples(samples, stime, utime, p->se.sum_exec_runtime); in task_sample_cputime() [all …]
|
/openbmc/qemu/target/i386/kvm/ |
H A D | vmsr_energy.h | 52 unsigned long long *utime; member 79 unsigned long long *utime,
|
H A D | vmsr_energy.c | 260 unsigned long long *utime, in vmsr_read_thread_stat() argument 280 utime, stime, cpu_id) != 3) in vmsr_read_thread_stat() 327 thd_stat[i].delta_ticks = (thd_stat[i].utime[1] + thd_stat[i].stime[1]) in vmsr_delta_ticks() 328 - (thd_stat[i].utime[0] + thd_stat[i].stime[0]); in vmsr_delta_ticks()
|
/openbmc/openbmc/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
|
H A D | 0001-fix-building-on-macOS.patch | 17 #include <utime.h>
|
/openbmc/google-misc/subprojects/metrics-ipmi-blobs/test/ |
H A D | util_test.cpp | 71 EXPECT_LT(std::abs(t.utime - 3330.37), EPS); in TEST() 87 EXPECT_EQ(t.utime, 0); in TEST()
|
/openbmc/linux/arch/powerpc/include/asm/ |
H A D | accounting.h | 12 unsigned long utime; member
|
H A D | cputime.h | 63 acct->utime += (tb - acct->starttime_user); in account_cpu_user_entry()
|
/openbmc/linux/arch/ia64/kernel/ |
H A D | time.c | 74 if (ti->utime) in vtime_flush() 75 account_user_time(tsk, cycle_to_nsec(ti->utime)); in vtime_flush() 98 ti->utime = 0; in vtime_flush()
|
/openbmc/qemu/tests/migration/guestperf/ |
H A D | engine.py | 63 utime = int(fields[14]) 64 records.append(TimingRecord(tid, now, 1000 * (stime + utime) / jiffies_per_sec)) 76 utime = int(fields[14]) 77 return TimingRecord(pid, now, 1000 * (stime + utime) / jiffies_per_sec)
|
/openbmc/linux/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
|