| /freebsd/contrib/libarchive/libarchive/ |
| H A D | archive_parse_date.c | 695 struct tm *ltime; in Convert() local 724 ltime = localtime_s(&tmbuf, &Julian) ? NULL : &tmbuf; in Convert() 726 ltime = localtime_r(&Julian, &tmbuf); in Convert() 728 ltime = localtime(&Julian); in Convert() 731 || (DSTmode == DSTmaybe && ltime->tm_isdst)) in Convert() 741 struct tm *ltime; in DSTcorrect() local 746 ltime = localtime_s(&tmbuf, &Start) ? NULL : &tmbuf; in DSTcorrect() 748 ltime = localtime_r(&Start, &tmbuf); in DSTcorrect() 750 ltime = localtime(&Start); in DSTcorrect() 752 StartDay = (ltime->tm_hour + 1) % 24; in DSTcorrect() [all …]
|
| /freebsd/contrib/libarchive/tar/ |
| H A D | util.c | 693 struct tm *ltime; local 769 ltime = localtime_s(&tmbuf, &tim) ? NULL : &tmbuf; 771 ltime = localtime_r(&tim, &tmbuf); 773 ltime = localtime(&tim); 775 if (ltime) 776 sw = strftime(tmp, sizeof(tmp), fmt, ltime); 777 if (!ltime || !sw)
|
| /freebsd/crypto/openssh/ |
| H A D | sftp-common.c | 221 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/usr.sbin/rtadvctl/ |
| H A D | rtadvctl.c | 733 printf("\t %s/%d (pref: %s, ltime: %s)\n", in action_show_rtinfo() 825 uint32_t ltime; in action_show_rdnss() local 836 ltime = rdn->rd_ltime; in action_show_rdnss() 844 printf("\t %s (ltime=%s)\n", 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() 889 printf("\t %s (ltime=%s)\n", in action_show_dnssl() 890 hbuf, sec2str(ltime, ssbuf)); in action_show_dnssl()
|
| /freebsd/contrib/libarchive/cpio/ |
| H A D | cpio.c | 1154 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 D | pfkey.c | 844 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 D | t_ps.sh | 97 s_keywords='uid pid ppid cpu lid nlwp pri nice vsz rss wchan lstate tt ltime command'
|
| H A D | keywords | 59 ltime LTIME
|
| /freebsd/sys/netinet6/ |
| H A D | icmp6.c | 1755 u_int32_t ltime; in ni6_store_addrs() local 1844 ltime = ND6_INFINITE_LIFETIME; in ni6_store_addrs() 1848 ltime = htonl(ifa6->ia6_lifetime.ia6t_expire - time_uptime); in ni6_store_addrs() 1850 ltime = 0; in ni6_store_addrs() 1853 bcopy(<ime, cp, sizeof(u_int32_t)); in ni6_store_addrs()
|
| H A D | in6.c | 1032 in6_expire_time(uint32_t ltime) in in6_expire_time() argument 1034 if (ltime == ND6_INFINITE_LIFETIME) in in6_expire_time() 1037 return (time_uptime + ltime); in in6_expire_time()
|
| /freebsd/crypto/krb5/src/lib/krb5/ccache/ |
| H A D | cc_mslsa.c | 253 FileTimeToUnixTime(LARGE_INTEGER *ltime) in FileTimeToUnixTime() argument 258 filetime.dwLowDateTime=ltime->LowPart; in FileTimeToUnixTime() 259 filetime.dwHighDateTime=ltime->HighPart; in FileTimeToUnixTime()
|
| /freebsd/sys/cam/ |
| H A D | cam_periph.c | 1220 struct bintime ltime; in cam_periph_runccb() local 1239 starttime = <ime; in cam_periph_runccb()
|
| /freebsd/contrib/llvm-project/openmp/runtime/src/ |
| H A D | kmp_runtime.cpp | 6749 long ltime; in __kmp_register_library_startup() member 6755 __kmp_registration_flag = 0xCAFE0000L | (time.ltime & 0x0000FFFFL); in __kmp_register_library_startup()
|