HomeSort by: relevance | last modified time | path
    Searched defs:ltime (Results 1 - 13 of 13) sorted by relevancy

  /src/games/phantasia/
gamesupport.c 498 time_t ltime; /* time in seconds */ local
501 time(&ltime);
502 today = localtime(&ltime)->tm_yday;
  /src/crypto/external/bsd/openssh/dist/
sftp-common.c 224 struct tm *ltime = localtime(&st->st_mtime); local
245 if (ltime != NULL) {
249 sz = strftime(tbuf, sizeof tbuf, "%b %e %H:%M", ltime);
251 sz = strftime(tbuf, sizeof tbuf, "%b %e %Y", ltime);
  /src/external/bsd/libarchive/dist/tar/
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)
  /src/usr.sbin/rtadvd/
rtadvd.h 96 uint32_t ltime; /* route lifetime */ member in struct:rtinfo
  /src/external/bsd/libarchive/dist/cpio/
cpio.c 1154 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);
  /src/external/bsd/libarchive/dist/libarchive/
archive_parse_date.c 695 struct tm *ltime; local
724 ltime = localtime_s(&tmbuf, &Julian) ? NULL : &tmbuf;
726 ltime = localtime_r(&Julian, &tmbuf);
728 ltime = localtime(&Julian);
731 || (DSTmode == DSTmaybe && ltime->tm_isdst))
741 struct tm *ltime; local
746 ltime = localtime_s(&tmbuf, &Start) ? NULL : &tmbuf;
748 ltime = localtime_r(&Start, &tmbuf);
750 ltime = localtime(&Start);
752 StartDay = (ltime->tm_hour + 1) % 24
    [all...]
  /src/external/gpl2/gmake/dist/
remake.c 1400 FILE_TIMESTAMP ltime;
1420 ltime = FILE_TIMESTAMP_STAT_MODTIME (lpath, st);
1421 if (ltime > mtime)
1422 mtime = ltime;
1392 FILE_TIMESTAMP ltime; local
  /src/external/gpl3/gdb/dist/sim/erc32/
sis.h 94 uint32_t ltime; /* Load interlock time */ member in struct:pstate
  /src/external/gpl3/gdb.old/dist/sim/erc32/
sis.h 94 uint32_t ltime; /* Load interlock time */ member in struct:pstate
  /src/sys/netinet6/
icmp6.c 1806 u_int32_t ltime; local
1895 ltime = ND6_INFINITE_LIFETIME;
1899 ltime = ia6->ia6_lifetime.ia6t_expire -
1902 ltime = 0;
1904 if (ltime > 0x7fffffff)
1905 ltime = 0x7fffffff;
1906 ltime = htonl(ltime);
1908 memcpy(cp, &ltime, sizeof(u_int32_t));
  /src/crypto/dist/ipsec-tools/src/racoon/
pfkey.c 2216 u_int64_t ltime, vtime; local
2218 ltime = iph2->approval->lifetime;
2234 ltime, vtime,
2352 u_int64_t ltime, vtime; local
2354 ltime = iph2->approval->lifetime;
2370 ltime, vtime,
  /src/external/bsd/dhcpcd/dist/src/
ipv6nd.c 1716 uint32_t next = 0, ltime, elapsed; local
1729 ltime = lifetime_left(rap->lifetime,
1731 if (ltime == 0 || rap->doexpire) {
1740 if (next == 0 || ltime < next)
1741 next = ltime;
1751 ltime = lifetime_left(ia->prefix_vltime,
1753 if (ltime == 0 || rap->doexpire) {
1771 if (next == 0 || ltime < next)
1772 next = ltime;
1778 ltime = lifetime_left(rinfo->lifetime
    [all...]
  /src/usr.sbin/syslogd/
syslogd.c 4765 struct tm ltime; local
4781 localtime_r(&mytime, &ltime);
4782 len += strftime(timestamp, sizeof(timestamp), "%FT%T", &ltime);
4787 &ltime);

Completed in 46 milliseconds