Searched refs:ltime (Results 1 - 9 of 9) sorted by relevance

/freebsd-current/crypto/openssh/
H A Dsftp-common.c221 struct tm *ltime = localtime(&st->st_mtime); local
242 if (ltime != NULL) {
246 sz = strftime(tbuf, sizeof tbuf, "%b %e %H:%M", ltime);
248 sz = strftime(tbuf, sizeof tbuf, "%b %e %Y", ltime);
/freebsd-current/contrib/libarchive/libarchive/
H A Darchive_getdate.c696 struct tm *ltime; local
727 ltime = localtime_s(&tmbuf, &Julian) ? NULL : &tmbuf;
729 ltime = localtime_r(&Julian, &tmbuf);
731 ltime = localtime(&Julian);
734 || (DSTmode == DSTmaybe && ltime->tm_isdst))
744 struct tm *ltime; local
749 ltime = localtime_s(&tmbuf, &Start) ? NULL : &tmbuf;
751 ltime = localtime_r(&Start, &tmbuf);
753 ltime = localtime(&Start);
755 StartDay = (ltime
[all...]
/freebsd-current/contrib/libarchive/tar/
H A Dutil.c669 struct tm *ltime; local
745 ltime = localtime_s(&tmbuf, &tim) ? NULL : &tmbuf;
747 ltime = localtime_r(&tim, &tmbuf);
749 ltime = localtime(&tim);
751 strftime(tmp, sizeof(tmp), fmt, ltime);
/freebsd-current/usr.sbin/rtadvctl/
H A Drtadvctl.c733 printf("\t %s/%d (pref: %s, ltime: %s)\n",
825 uint32_t ltime; local
836 ltime = rdn->rd_ltime;
844 printf("\t %s (ltime=%s)\n",
849 sec2str(ltime, ssbuf));
868 uint32_t ltime; local
879 ltime = dns->dn_ltime;
889 printf("\t %s (ltime=%s)\n",
890 hbuf, sec2str(ltime, ssbuf));
/freebsd-current/lib/libipsec/
H A Dpfkey.c844 struct sockaddr *dst, u_int prefd, u_int proto, u_int64_t ltime,
851 ltime, vtime,
888 struct sockaddr *dst, u_int prefd, u_int proto, u_int64_t ltime,
895 ltime, vtime,
1353 struct sockaddr *dst, u_int prefd, u_int proto, u_int64_t ltime,
1420 0, 0, ltime, vtime);
843 pfkey_send_spdadd2(int so, struct sockaddr *src, u_int prefs, struct sockaddr *dst, u_int prefd, u_int proto, u_int64_t ltime, u_int64_t vtime, caddr_t policy, int policylen, u_int32_t seq) argument
887 pfkey_send_spdupdate2(int so, struct sockaddr *src, u_int prefs, struct sockaddr *dst, u_int prefd, u_int proto, u_int64_t ltime, u_int64_t vtime, caddr_t policy, int policylen, u_int32_t seq) argument
1352 pfkey_send_x4(int so, u_int type, struct sockaddr *src, u_int prefs, struct sockaddr *dst, u_int prefd, u_int proto, u_int64_t ltime, u_int64_t vtime, char *policy, int policylen, u_int32_t seq) argument
/freebsd-current/contrib/libarchive/cpio/
H A Dcpio.c1154 struct tm *ltime; local
1206 ltime = localtime_s(&tmbuf, &mtime) ? NULL : &tmbuf;
1208 ltime = localtime_r(&mtime, &tmbuf);
1210 ltime = localtime(&mtime);
1212 if (ltime != NULL)
1213 strftime(date, sizeof(date), fmt, ltime);
/freebsd-current/sys/netinet6/
H A Dicmp6.c1781 u_int32_t ltime; local
1870 ltime = ND6_INFINITE_LIFETIME;
1874 ltime = htonl(ifa6->ia6_lifetime.ia6t_expire - time_uptime);
1876 ltime = 0;
1879 bcopy(&ltime, cp, sizeof(u_int32_t));
/freebsd-current/sys/cam/
H A Dcam_periph.c1233 struct bintime ltime; local
1252 starttime = &ltime;
/freebsd-current/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_runtime.cpp6734 long ltime;
6740 __kmp_registration_flag = 0xCAFE0000L | (time.ltime & 0x0000FFFFL);

Completed in 253 milliseconds