Home
last modified time | relevance | path

Searched refs:tme (Results 1 – 7 of 7) sorted by relevance

/illumos-gate/usr/src/cmd/auditreduce/
H A Dtime.c169 int sec = tme->tm_sec; in tm_to_secs()
170 int min = tme->tm_min; in tm_to_secs()
212 if (tme->tm_sec < 0 || tme->tm_sec > 59) { in check_time()
216 } else if (tme->tm_min < 0 || tme->tm_min > 59) { in check_time()
220 } else if (tme->tm_hour < 0 || tme->tm_hour > 23) { in check_time()
224 } else if (tme->tm_mon < 0 || tme->tm_mon > 11) { in check_time()
232 } else if (tme->tm_mday < 1 || tme->tm_mday > days_month[tme->tm_mon]) { in check_time()
234 tme->tm_mon == 1 && in check_time()
240 } else if (tme->tm_wday < 0 || tme->tm_wday > 6) { in check_time()
244 } else if (tme->tm_yday < 0 || tme->tm_yday > 365) { in check_time()
[all …]
H A Doption.c971 struct tm tme; in check_file() local
1008 if (derive_date(namep, &tme)) { in check_file()
1021 fcb->fcb_start = tm_to_secs(&tme); in check_file()
1031 } else if (derive_date(&namep[15], &tme)) { in check_file()
1039 fcb->fcb_end = tm_to_secs(&tme); in check_file()
/illumos-gate/usr/src/uts/common/os/
H A Dlabelsys.c787 for (tme = mlpl->mlpl_first; tme != NULL; tme = tme->mlpe_next) { in mlp_add_del()
894 for (tme = mlpl->mlpl_first; tme != NULL; tme = tmnext) { in mlp_flush()
905 kmem_free(tme, sizeof (*tme)); in mlp_flush()
973 for (tme = mlpl->mlpl_first; tme != NULL; in tnmlp()
974 tme = tme->mlpe_next) { in tnmlp()
1287 tme = tme->mlpe_next) { in tsol_next_port()
1299 for (tme = shared_mlps.mlpl_first; tme != NULL; in tsol_next_port()
1300 tme = tme->mlpe_next) { in tsol_next_port()
1338 tme = tme->mlpe_next) { in tsol_mlp_port_type()
1358 tme = tme->mlpe_next) { in tsol_mlp_port_type()
[all …]
/illumos-gate/usr/src/cmd/sa/
H A Dtimex.c265 time_t tme; in hmstime() local
267 tme = time((time_t *)0); in hmstime()
268 ltime = ctime(&tme); in hmstime()
/illumos-gate/usr/src/lib/krb5/plugins/kdb/ldap/libkdb_ldap/
H A Dldap_misc.c1262 struct tm tme; local
1264 memset(&tme, 0, sizeof(tme));
1265 if (strptime(strtime, DATE_FORMAT, &tme) == NULL) {
1270 *epochtime = krb5int_gmt_mktime(&tme);
H A Dldap_principal2.c1311 struct tm tme; local
1319 if (gmtime_r(&posixtime, &tme) == NULL)
1322 strftime(strtime, 50, DATE_FORMAT, &tme);
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/netstat/
H A Dnetstat.c5145 mib2_transportMLPEntry_t **attrs, *tme; in gather_attrs() local
5171 for (tme = iptr->valp; in gather_attrs()
5172 (char *)tme < (char *)iptr->valp + iptr->length; in gather_attrs()
5173 tme = (mib2_transportMLPEntry_t *)((char *)tme + in gather_attrs()
5175 attrs[tme->tme_connidx] = tme; in gather_attrs()