Home
last modified time | relevance | path

Searched refs:tms (Results 1 – 25 of 39) sorted by relevance

12

/third_party/nghttp2/src/
Dutil.cc250 struct tm tms; in http_date() local
252 if (gmtime_r(&t, &tms) == nullptr) { in http_date()
258 auto s = DAY_OF_WEEK[tms.tm_wday]; in http_date()
262 p = cpydig(p, tms.tm_mday, 2); in http_date()
264 s = MONTH[tms.tm_mon]; in http_date()
267 p = cpydig(p, tms.tm_year + 1900, 4); in http_date()
269 p = cpydig(p, tms.tm_hour, 2); in http_date()
271 p = cpydig(p, tms.tm_min, 2); in http_date()
273 p = cpydig(p, tms.tm_sec, 2); in http_date()
288 struct tm tms; in common_log_date() local
[all …]
/third_party/musl/porting/liteos_a/user/src/time/
Dtimes.c4 clock_t times(struct tms *tms) in times() argument
6 return syscall(SYS_times, tms); in times()
/third_party/musl/src/time/
Dtimes.c4 clock_t times(struct tms *tms) in times() argument
6 return __syscall(SYS_times, tms); in times()
/third_party/libwebsockets/lib/plat/unix/
Dunix-spawn.c153 struct tms tms; in lws_spawn_reap() local
220 if (times(&tms) != (clock_t) -1) { in lws_spawn_reap()
224 lsp->accounting[0] = (lws_usec_t)((uint64_t)tms.tms_cstime * 1000000) / hz; in lws_spawn_reap()
225 lsp->accounting[1] = (lws_usec_t)((uint64_t)tms.tms_cutime * 1000000) / hz; in lws_spawn_reap()
226 lsp->accounting[2] = (lws_usec_t)((uint64_t)tms.tms_stime * 1000000) / hz; in lws_spawn_reap()
227 lsp->accounting[3] = (lws_usec_t)((uint64_t)tms.tms_utime * 1000000) / hz; in lws_spawn_reap()
/third_party/musl/porting/uniproton/kernel/include/sys/
Dtimes.h11 struct tms { struct
18 clock_t times (struct tms *);
/third_party/musl/porting/liteos_m_iccarm/kernel/include/sys/
Dtimes.h11 struct tms { struct
18 clock_t times (struct tms *);
/third_party/musl/porting/liteos_a/kernel/include/sys/
Dtimes.h11 struct tms { struct
18 clock_t times (struct tms *);
/third_party/musl/ndk_musl_include/sys/
Dtimes.h11 struct tms { struct
18 clock_t times (struct tms *);
/third_party/musl/include/sys/
Dtimes.h11 struct tms { struct
18 clock_t times (struct tms *);
/third_party/musl/porting/liteos_m/kernel/include/sys/
Dtimes.h11 struct tms { struct
18 clock_t times (struct tms *);
/third_party/musl/libc-test/src/api/
Dsys_times.c9 struct tms x; in f()
15 {clock_t(*p)(struct tms*) = times;} in f()
/third_party/ltp/testcases/kernel/syscalls/times/
Dtimes03.c60 struct tms buf; in generate_stime()
81 struct tms buf1, buf2, buf3; in verify_times()
Dtimes01.c18 struct tms mytimes; in verify_times()
/third_party/musl/libc-test/src/functionalext/supplement/time/
Dtimes.c28 struct tms buf; in times_0100()
/third_party/ltp/pan/
Dltp-pan.c124 int term_id, struct tms *tms1, struct tms *tms2);
727 struct tms tms1, tms2; in check_pids()
1076 struct tms notime = { 0, 0, 0, 0 }; in run_child()
1410 int term_id, struct tms *tms1, struct tms *tms2) in write_test_end()
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/fork/
D8-1.c53 struct tms ini_tms, parent_tms, child_tms; in main()
/third_party/gstreamer/gstreamer/tests/examples/adapter/
Dadapter_test.c97 struct tms time_data; in run_tests()
/third_party/mksh/
Dmisc.c2485 struct tms tms; in getrusage() local
2488 if (/* ru == NULL || */ times(&tms) == (clock_t)-1) in getrusage()
2493 u = tms.tms_utime; in getrusage()
2494 s = tms.tms_stime; in getrusage()
2497 u = tms.tms_cutime; in getrusage()
2498 s = tms.tms_cstime; in getrusage()
/third_party/flutter/skia/src/gpu/ccpr/
DGrCCFillGeometry.cpp300 Sk2f tms = tl - sl; in find_chops_around_inflection_points() local
301 Sk2f insideRightPad = pad - tms*tms*tms; in find_chops_around_inflection_points()
/third_party/ltp/testcases/kernel/sched/sched_stress/
Dsched_tc4.c116 struct tms timer_info; /* time accounting info */ in main()
Dsched_tc5.c113 struct tms timer_info; /* time accounting info */ in main()
Dsched_tc6.c143 struct tms timer_info; /* time accounting info */ in main()
/third_party/libexif/libexif/
Dexif-entry.c1686 struct tm tms; in exif_entry_initialize() local
1692 tm = localtime_r (&t, &tms); in exif_entry_initialize()
1694 localtime_s (&tms, &t); in exif_entry_initialize()
1695 tm = &tms; in exif_entry_initialize()
/third_party/rust/crates/libc/libc-test/semver/
Dunix.txt855 tms
/third_party/rust/crates/libc/src/
Dwasi.rs105 pub struct tms {
672 pub fn times(buf: *mut ::tms) -> ::clock_t; in times()

12