Home
last modified time | relevance | path

Searched refs:tms_cutime (Results 1 – 19 of 19) sorted by relevance

/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/fork/
D8-1.c67 if (ini_tms.tms_cutime != 0 || ini_tms.tms_cstime != 0) in main()
145 (long)(parent_tms.tms_cutime - ini_tms.tms_cutime), in main()
154 if (parent_tms.tms_cutime == 0 && parent_tms.tms_cstime == 0) in main()
/third_party/ltp/testcases/kernel/syscalls/times/
Dtimes03.c128 if (buf2.tms_cutime != 0) in verify_times()
129 tst_res(TFAIL, "buf2.tms_cutime = %li", buf2.tms_cutime); in verify_times()
167 if (buf3.tms_cutime == 0) in verify_times()
170 tst_res(TPASS, "buf3.tms_cutime = %ld", buf3.tms_cutime); in verify_times()
/third_party/musl/libc-test/src/functionalext/supplement/time/
Dtimes.c43 if (buf.tms_cutime < 0) { in times_0100()
44 t_error("%s failed: buf.tms_cutime = %d\n", __func__, buf.tms_cutime); in times_0100()
/third_party/boost/tools/build/src/engine/
Dexecvms.cpp182 time_info.user = (double)( end_time.tms_cutime - in exec_cmd()
183 start_time.tms_cutime ) / 100.; in exec_cmd()
316 time_info.user = (double)( end_time.tms_cutime - in exec_cmd()
317 start_time.tms_cutime ) / 100.; in exec_cmd()
/third_party/boost/boost/chrono/detail/inlined/posix/
Dprocess_cpu_clocks.hpp134 nanoseconds((tm.tms_utime + tm.tms_cutime)*chrono_detail::tick_factor())); in now()
175 nanoseconds((tm.tms_utime + tm.tms_cutime)*chrono_detail::tick_factor())); in now()
289 (tm.tms_utime + tm.tms_cutime)*factor, in now()
329 (tm.tms_utime + tm.tms_cutime)*chrono_detail::tick_factor(), in now()
/third_party/boost/boost/chrono/detail/inlined/mac/
Dprocess_cpu_clocks.hpp191 return time_point(nanoseconds((tm.tms_utime + tm.tms_cutime) * factor)); in now()
219 return time_point(nanoseconds((tm.tms_utime + tm.tms_cutime) in now()
303 r(c * factor, (tm.tms_utime + tm.tms_cutime) * factor, (tm.tms_stime in now()
336 r(c * factor, (tm.tms_utime + tm.tms_cutime) * factor, (tm.tms_stime in now()
/third_party/musl/ndk_musl_include/sys/
Dtimes.h14 clock_t tms_cutime; member
/third_party/musl/include/sys/
Dtimes.h14 clock_t tms_cutime; member
/third_party/musl/porting/liteos_a/kernel/include/sys/
Dtimes.h14 clock_t tms_cutime; member
/third_party/musl/porting/liteos_m/kernel/include/sys/
Dtimes.h14 clock_t tms_cutime; member
/third_party/musl/porting/liteos_m_iccarm/kernel/include/sys/
Dtimes.h14 clock_t tms_cutime; member
/third_party/musl/porting/uniproton/kernel/include/sys/
Dtimes.h14 clock_t tms_cutime; member
/third_party/boost/boost/config/platform/
Dvxworks.hpp295 clock_t tms_cutime; // User CPU time of terminated child processes member
307 t->tms_cutime = 0; // vxWorks is lacking the concept of a child process! in times()
/third_party/musl/libc-test/src/api/
Dsys_times.c12 F(clock_t,tms_cutime) in f()
/third_party/ltp/pan/
Dltp-pan.c815 (int)(tms2.tms_cutime - in check_pids()
816 tms1.tms_cutime), in check_pids()
1419 (int)(tms2->tms_cutime - tms1->tms_cutime), in write_test_end()
/third_party/boost/libs/timer/src/
Dcpu_timer.cpp147 current.user = boost::timer::nanosecond_type(tm.tms_utime + tm.tms_cutime); in get_cpu_times()
/third_party/libwebsockets/lib/plat/unix/
Dunix-spawn.c225 lsp->accounting[1] = (lws_usec_t)((uint64_t)tms.tms_cutime * 1000000) / hz; in lws_spawn_reap()
/third_party/mksh/
Dmisc.c2497 u = tms.tms_cutime; in getrusage()
/third_party/python/Modules/
Dposixmodule.c8976 (double)t.tms_cutime / ticks_per_second,