Searched defs:tms (Results 1 - 16 of 16) sorted by relevance

/illumos-gate/usr/src/lib/libbc/inc/include/sys/
H A Dtimes.h33 struct tms { struct
41 clock_t times(/* struct tms *tmsp */);
/illumos-gate/usr/src/uts/common/sys/
H A Dtimes.h41 struct tms { struct
62 clock_t times(struct tms *);
/illumos-gate/usr/src/cmd/sh/
H A Dbltin.c88 struct tms tms; local
90 times(&tms);
91 prt(tms.tms_cutime);
93 prt(tms.tms_cstime);
/illumos-gate/usr/src/lib/libsip/common/
H A Dsip_logging.c270 struct tm tms; local
291 localtime_r(&msg_chain->msg_timestamp, &tms));
322 struct tm tms; local
342 localtime_r(&msg_chain->msg_timestamp, &tms));
/illumos-gate/usr/src/cmd/fm/modules/SUNW,SPARC-Enterprise/event-transport/
H A Dex_dscp.c675 struct timespec tms; local
688 tms.tv_sec = 0;
689 tms.tv_nsec = sleeptime;
700 (void) nanosleep(&tms, 0);
734 struct timespec tms; local
747 tms.tv_sec = 0;
748 tms.tv_nsec = sleeptime;
759 (void) nanosleep(&tms, 0);
/illumos-gate/usr/src/cmd/latencytop/common/
H A Dutil.c113 struct tm tms; local
118 (void) gmtime_r(&t, &tms);
119 (void) asctime_r(&tms, buffer, len);
/illumos-gate/usr/src/cmd/fm/fmd/common/
H A Dfmd_module.c1336 struct timespec tms; local
1340 tms.tv_sec = 0;
1341 tms.tv_nsec = 10000000;
1342 (void) nanosleep(&tms, NULL);
/illumos-gate/usr/src/cmd/fm/modules/sun4v/etm/
H A Detm_xport_api_dd.c264 struct timespec tms; /* for nanosleep() */ local
266 tms.tv_sec = 0;
267 tms.tv_nsec = 0;
287 tms.tv_sec = ETM_SLEEP_QUIK;
288 tms.tv_nsec = 0;
289 if ((n = nanosleep(&tms, NULL)) < 0) {
905 struct timespec tms; /* for nanosleep() */ local
912 tms.tv_sec = ETM_SLEEP_QUIK;
913 tms.tv_nsec = 0;
946 (void) nanosleep(&tms, NUL
[all...]
H A Detm.c735 struct timespec tms; /* for nanosleep() */ local
737 tms.tv_sec = sleep_sec;
738 tms.tv_nsec = 0;
740 if (nanosleep(&tms, NULL) < 0) {
/illumos-gate/usr/src/cmd/lp/model/
H A Dlp.cat.c404 struct tms tms; local
570 epoch_start = times(&tms);
597 epoch_end = times(&tms);
687 struct termios tms; local
690 if (ioctl(1, TCGETS, &tms) < 0) {
696 speed = cfgetospeed(&tms);
/illumos-gate/usr/src/cmd/fm/modules/common/event-transport/
H A Detm.c1142 struct timespec tms; local
1164 tms.tv_sec = 0;
1165 tms.tv_nsec = (cnt * 10000);
1166 (void) nanosleep(&tms, NULL);
/illumos-gate/usr/src/lib/libshell/common/sh/
H A Dinit.c533 # define tms timeval macro
542 struct tms tp;
567 struct tms tp;
578 struct tms tp;
/illumos-gate/usr/src/cmd/cmd-inet/usr.lib/in.ndpd/
H A Dmain.c2111 struct tm tms; local
2115 (void) localtime_r(&now, &tms);
2116 (void) strftime(buf, sizeof (buf), "%h %d %X", &tms);
/illumos-gate/usr/src/cmd/truss/
H A Dmain.c254 struct tms tms; local
280 starttime = times(&tms); /* for elapsed timing */
786 struct tms tms; local
854 report(pri, times(&tms) - starttime);
H A Dexpound.c331 struct tms tms; local
337 if (Pread(Proc, &tms, sizeof (tms), offset)
338 != sizeof (tms))
353 tms.tms_utime = (unsigned)tms32.tms_utime;
354 tms.tms_stime = (unsigned)tms32.tms_stime;
355 tms.tms_cutime = (unsigned)tms32.tms_cutime;
356 tms.tms_cstime = (unsigned)tms32.tms_cstime;
362 tms
[all...]
/illumos-gate/usr/src/lib/libkmf/plugins/kmf_pkcs11/common/
H A Dpkcs11_spi.c3170 struct tm tms; local
3173 (void) strptime(fulldate, "%b %d %T %Y %Z", &tms);
3175 if (tms.tm_year < 69)
3176 tms.tm_year += 100;
3178 (void) strftime(newtime, sizeof (newtime), "m%d", &tms);

Completed in 121 milliseconds