Home
last modified time | relevance | path

Searched refs:timeptr (Results 1 – 3 of 3) sorted by relevance

/illumos-gate/usr/src/lib/libc/port/locale/
H A Dwcsftime.c67 const struct tm *timeptr) in __wcsftime_xpg5() argument
69 return (wcsftime_l(wcs, maxsize, format, timeptr, in __wcsftime_xpg5()
76 const struct tm *timeptr, locale_t loc) in wcsftime_l() argument
115 if (strftime_l(dst, maxsize, sformat, timeptr, loc) == 0) in wcsftime_l()
137 const struct tm *timeptr) in wcsftime() argument
151 rv = wcsftime_l(wcs, maxsize, wfmt, timeptr, loc); in wcsftime()
/illumos-gate/usr/src/uts/common/gssapi/mechs/krb5/krb5/os/
H A Dc_ustime.c55 struct _timeb timeptr; in get_time_now() local
56 _ftime(&timeptr); in get_time_now()
57 n->sec = timeptr.time; in get_time_now()
58 n->usec = timeptr.millitm * 1000; in get_time_now()
/illumos-gate/usr/src/cmd/zdump/
H A Dzdump.c1217 dumptime(register const struct tm *timeptr) in dumptime() argument
1236 ((0 <= timeptr->tm_wday in dumptime()
1237 && timeptr->tm_wday < sizeof wday_name / sizeof wday_name[0]) in dumptime()
1238 ? wday_name[timeptr->tm_wday] : "???"), in dumptime()
1239 ((0 <= timeptr->tm_mon in dumptime()
1240 && timeptr->tm_mon < sizeof mon_name / sizeof mon_name[0]) in dumptime()
1241 ? mon_name[timeptr->tm_mon] : "???"), in dumptime()
1242 timeptr->tm_mday, timeptr->tm_hour, in dumptime()
1243 timeptr->tm_min, timeptr->tm_sec); in dumptime()
1244 trail = timeptr->tm_year % DIVISOR + TM_YEAR_BASE % DIVISOR; in dumptime()
[all …]