Home
last modified time | relevance | path

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

/netbsd-src/external/bsd/dhcpcd/dist/hooks/
H A D20-resolv.conf85 ltime=$(($rdnsstime - $offset))
86 if [ "$ltime" -gt 0 ]; then
93 ltime=$(($dnssltime - $offset))
94 if [ "$ltime" -gt 0 ]; then
/netbsd-src/external/bsd/libarchive/dist/libarchive/
H A Darchive_getdate.c696 struct tm *ltime; in Convert() local
727 ltime = localtime_s(&tmbuf, &Julian) ? NULL : &tmbuf; in Convert()
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
749 ltime = localtime_s(&tmbuf, &Start) ? NULL : &tmbuf; in DSTcorrect()
751 ltime = localtime_r(&Start, &tmbuf); in DSTcorrect()
753 ltime = localtime(&Start); in DSTcorrect()
755 StartDay = (ltime->tm_hour + 1) % 24; in DSTcorrect()
[all …]
/netbsd-src/crypto/external/bsd/openssh/dist/
H A Dsftp-common.c224 struct tm *ltime = localtime(&st->st_mtime); in ls_file() local
245 if (ltime != NULL) { in ls_file()
249 sz = strftime(tbuf, sizeof tbuf, "%b %e %H:%M", ltime); in ls_file()
251 sz = strftime(tbuf, sizeof tbuf, "%b %e %Y", ltime); in ls_file()
/netbsd-src/external/bsd/dhcpcd/dist/src/
H A Dipv6nd.c1877 unsigned int next = 0, ltime; in ipv6nd_expirera() local
1901 ltime = rap->lifetime - elapsed; in ipv6nd_expirera()
1902 if (next == 0 || ltime < next) in ipv6nd_expirera()
1903 next = ltime; in ipv6nd_expirera()
1939 ltime = ia->prefix_vltime - elapsed; in ipv6nd_expirera()
1940 if (next == 0 || ltime < next) in ipv6nd_expirera()
1941 next = ltime; in ipv6nd_expirera()
1985 ltime = pi.nd_opt_pi_valid_time; in ipv6nd_expirera()
1992 ltime = dnssl.nd_opt_dnssl_lifetime; in ipv6nd_expirera()
1998 ltime = rdnss.nd_opt_rdnss_lifetime; in ipv6nd_expirera()
[all …]
/netbsd-src/games/phantasia/
H A Dgamesupport.c498 time_t ltime; /* time in seconds */ in purgeoldplayers() local
501 time(&ltime); in purgeoldplayers()
502 today = localtime(&ltime)->tm_yday; in purgeoldplayers()
/netbsd-src/usr.sbin/rtadvd/
H A Ddump.c221 if (rti->ltime == ND6_INFINITE_LIFETIME) in if_dump()
224 fprintf(fp, "lifetime: %ld", (long)rti->ltime); in if_dump()
H A Drtadvd.h96 uint32_t ltime; /* route lifetime */ member
H A Dconfig.c646 rti->ltime = (uint32_t)val64; in getconfig()
1176 ndopt_rti->nd_opt_rti_lifetime = htonl(rti->ltime); in make_packet()
/netbsd-src/share/man/tools/
H A Dbadcref333 ltime(3F)
H A Dnewsp.errs2217 ltime
/netbsd-src/sys/netinet6/
H A Dicmp6.c1806 u_int32_t ltime; in ni6_store_addrs() local
1895 ltime = ND6_INFINITE_LIFETIME; in ni6_store_addrs()
1899 ltime = ia6->ia6_lifetime.ia6t_expire - in ni6_store_addrs()
1902 ltime = 0; in ni6_store_addrs()
1904 if (ltime > 0x7fffffff) in ni6_store_addrs()
1905 ltime = 0x7fffffff; in ni6_store_addrs()
1906 ltime = htonl(ltime); in ni6_store_addrs()
1908 memcpy(cp, &ltime, sizeof(u_int32_t)); in ni6_store_addrs()
/netbsd-src/external/gpl2/gmake/dist/
H A Dremake.c1392 FILE_TIMESTAMP ltime; in name_mtime() local
1412 ltime = FILE_TIMESTAMP_STAT_MODTIME (lpath, st); in name_mtime()
1413 if (ltime > mtime) in name_mtime()
1414 mtime = ltime; in name_mtime()
/netbsd-src/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
/netbsd-src/crypto/dist/ipsec-tools/src/libipsec/
H A Dpfkey.c917 struct sockaddr *dst, u_int prefd, u_int proto, u_int64_t ltime, in pfkey_send_spdadd2() argument
924 ltime, vtime, in pfkey_send_spdadd2()
961 struct sockaddr *dst, u_int prefd, u_int proto, u_int64_t ltime, in pfkey_send_spdupdate2() argument
968 ltime, vtime, in pfkey_send_spdupdate2()
1629 struct sockaddr *dst, u_int prefd, u_int proto, u_int64_t ltime, in pfkey_send_x4() argument
1696 0, 0, (u_int)ltime, (u_int)vtime); in pfkey_send_x4()
/netbsd-src/crypto/dist/ipsec-tools/src/racoon/
H A Dpfkey.c2249 u_int64_t ltime, vtime; local
2251 ltime = iph2->approval->lifetime;
2267 ltime, vtime,
2387 u_int64_t ltime, vtime; local
2389 ltime = iph2->approval->lifetime;
2405 ltime, vtime,
/netbsd-src/usr.bin/spell/spell/
H A Dspecial.netbsd677 ltime
/netbsd-src/usr.sbin/syslogd/
H A Dsyslogd.c4765 struct tm ltime; in make_timestamp()
4781 localtime_r(&mytime, &ltime); in copy_string()
4782 len += strftime(timestamp, sizeof(timestamp), "%FT%T", &ltime); in copy_string()
4787 &ltime); in copy_string()
4733 struct tm ltime; make_timestamp() local