Home
last modified time | relevance | path

Searched refs:ltime (Results 1 – 11 of 11) sorted by relevance

/freebsd/contrib/libarchive/libarchive/
H A Darchive_getdate.c696 struct tm *ltime; in Convert() local
729 ltime = localtime_r(&Julian, &tmbuf); in Convert()
731 ltime = localtime(&Julian); in Convert()
734 || (DSTmode == DSTmaybe && ltime->tm_isdst)) in Convert()
744 struct tm *ltime; in DSTcorrect() local
751 ltime = localtime_r(&Start, &tmbuf); in DSTcorrect()
753 ltime = localtime(&Start); in DSTcorrect()
755 StartDay = (ltime->tm_hour + 1) % 24; in DSTcorrect()
759 ltime = localtime_r(&Future, &tmbuf); in DSTcorrect()
761 ltime = localtime(&Future); in DSTcorrect()
[all …]
/freebsd/crypto/openssh/
H A Dsftp-common.c221 struct tm *ltime = localtime(&st->st_mtime); in ls_file() local
242 if (ltime != NULL) { in ls_file()
246 sz = strftime(tbuf, sizeof tbuf, "%b %e %H:%M", ltime); in ls_file()
248 sz = strftime(tbuf, sizeof tbuf, "%b %e %Y", ltime); in ls_file()
/freebsd/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/usr.sbin/rtadvctl/
H A Drtadvctl.c825 uint32_t ltime; in action_show_rdnss() local
836 ltime = rdn->rd_ltime; in action_show_rdnss()
849 sec2str(ltime, ssbuf)); in action_show_rdnss()
868 uint32_t ltime; in action_show_dnssl() local
879 ltime = dns->dn_ltime; in action_show_dnssl()
890 hbuf, sec2str(ltime, ssbuf)); in action_show_dnssl()
/freebsd/contrib/libarchive/cpio/
H A Dcpio.c1154 struct tm *ltime; in list_item_verbose() local
1206 ltime = localtime_s(&tmbuf, &mtime) ? NULL : &tmbuf; in list_item_verbose()
1208 ltime = localtime_r(&mtime, &tmbuf); in list_item_verbose()
1210 ltime = localtime(&mtime); in list_item_verbose()
1212 if (ltime != NULL) in list_item_verbose()
1213 strftime(date, sizeof(date), fmt, ltime); in list_item_verbose()
/freebsd/lib/libipsec/
H A Dpfkey.c844 struct sockaddr *dst, u_int prefd, u_int proto, u_int64_t ltime, in pfkey_send_spdadd2() argument
851 ltime, vtime, in pfkey_send_spdadd2()
888 struct sockaddr *dst, u_int prefd, u_int proto, u_int64_t ltime, in pfkey_send_spdupdate2() argument
895 ltime, vtime, in pfkey_send_spdupdate2()
1353 struct sockaddr *dst, u_int prefd, u_int proto, u_int64_t ltime, in pfkey_send_x4() argument
1420 0, 0, ltime, vtime); in pfkey_send_x4()
/freebsd/contrib/netbsd-tests/bin/ps/
H A Dt_ps.sh97 s_keywords='uid pid ppid cpu lid nlwp pri nice vsz rss wchan lstate tt ltime command'
H A Dkeywords59 ltime LTIME
/freebsd/sys/netinet6/
H A Dicmp6.c1781 u_int32_t ltime; in ni6_store_addrs() local
1870 ltime = ND6_INFINITE_LIFETIME; in ni6_store_addrs()
1874 ltime = htonl(ifa6->ia6_lifetime.ia6t_expire - time_uptime); in ni6_store_addrs()
1876 ltime = 0; in ni6_store_addrs()
1879 bcopy(&ltime, cp, sizeof(u_int32_t)); in ni6_store_addrs()
/freebsd/sys/cam/
H A Dcam_periph.c1233 struct bintime ltime; in cam_periph_runccb() local
1252 starttime = &ltime; in cam_periph_runccb()
/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_runtime.cpp6734 long ltime; in __kmp_register_library_startup() member
6740 __kmp_registration_flag = 0xCAFE0000L | (time.ltime & 0x0000FFFFL); in __kmp_register_library_startup()