HomeSort by: relevance | last modified time | path
    Searched defs:expired (Results 1 - 25 of 29) sorted by relevancy

1 2

  /src/sys/net/
nd.c 233 bool expired; local
235 expired = callout_stop(&ln->la_timer);
236 if (!expired)
if_llatbl.c 390 bool expired = callout_stop(&lle->la_timer); local
391 if (!expired)
  /src/external/mpl/bind/dist/lib/dns/
skr.c 394 isc_stdtime_t expired = b->inception + sigval; local
395 if (b->inception <= time && time < expired) {
adb.c 1539 /* ... or is not yet expired. */
1616 * Remove the name if it's expired or unused, has no address data.
1628 size_t expired = 0; local
1631 adbname != NULL && expired < requested; adbname = prev)
1639 * Remove the name if it's expired or unused,
1644 expired += sizeof(*adbname);
1698 * Remove the entry if it's expired and unused.
1709 size_t expired = 0; local
1719 adbentry != NULL && expired < requested; adbentry = prev)
1727 expired += sizeof(*adbentry)
    [all...]
  /src/tests/lib/libc/sys/
t_timer_create.c 42 static sig_atomic_t expired; variable
59 expired = 1;
75 expired = 0;
226 ATF_CHECK_MSG(expired, "timer failed to fire immediately");
230 ATF_CHECK_MSG(!expired, "timer fired too soon");
236 ATF_CHECK_MSG(expired,
240 ATF_CHECK_MSG(!expired, "timer fired too soon");
  /src/crypto/external/bsd/heimdal/dist/kuser/
klist.c 98 rtbl_add_column_entry(ct, COL_EXPIRES, N_(">>>Expired<<<", ""));
204 printf(N_(" (expired)", ""));
435 strlcpy (buf2, N_(">>> Expired <<<", ""), sizeof(buf2));
534 int expired = 0; local
538 expired = check_expiration(context, id, &t);
548 if (expired)
549 str = N_(">>> Expired <<<", "");
  /src/external/bsd/am-utils/dist/amd/
map.c 1020 int expired = 0; local
1024 expired = 1;
1051 if (!mp->am_child && mf->mf_error >= 0 && expired) {
  /src/external/bsd/dhcpcd/dist/src/
ipv6nd.h 71 bool expired; member in struct:ra
ipv6nd.c 128 #define EXPIRED_MAX 5 /* Remember 5 expired routers to avoid
499 if (ra1->expired && !ra2->expired)
541 if (rap == NULL || rap->expired || rap->willexpire)
575 if (rap == NULL || rap->expired || rap->isreachable == reachable)
594 if (rapr->isreachable && !rapr->expired && rapr->lifetime)
920 rap2->expired)
1116 rap->expired = rap->willexpire = rap->doexpire = false;
1510 !rap->expired &&
1525 !rap->expired && !rap->willexpire &
1705 bool expired, valid; local
1881 bool expired = false; local
    [all...]
  /src/external/bsd/jemalloc.old/dist/include/jemalloc/internal/
prof_structs.h 151 bool expired; member in struct:prof_tdata_s
  /src/external/bsd/jemalloc.old/include/jemalloc/internal/
prof_structs.h 151 bool expired; member in struct:prof_tdata_s
  /src/external/bsd/unbound/dist/services/cache/
rrset.c 133 /* o if new data is expired, cached data is better */
154 /* o item in cache has expired */
161 * update to fetch the latest data. ttl is not expired, because
430 return; /* expired, or rrset has changed in the meantime */
471 /* looks up with a time of 0, to see expired entries */
476 int expired = (now > data->ttl); local
478 if(expired)
481 "removed (expired)",
509 /* looks up with a time of 0, to see expired entries */
515 /* it is expired, this is not wanted *
    [all...]
infra.c 596 /* it expired, try to reuse existing entry */
675 /* expired, reuse existing entry */
722 int needtoinsert = 0, expired = 0; local
732 expired = 1;
737 if(needtoinsert || expired) {
738 /* timeout on entry that has expired before the timer
869 /* expired entry */
  /src/sys/kern/
kern_timeout.c 236 "bool"/*expired*/);
247 "bool"/*expired*/);
521 bool expired; local
529 expired = ((c->c_flags & CALLOUT_FIRED) != 0);
533 c, c->c_func, c->c_arg, c->c_flags, expired);
537 return expired;
572 c, c->c_func, c->c_arg, c->c_flags, /*expired*/false);
641 c, c->c_func, c->c_arg, c->c_flags, /*expired*/true);
  /src/crypto/external/bsd/netpgp/dist/src/lib/
packet-print.c 367 psubkeybinding(char *buf, size_t size, const pgp_key_t *key, const char *expired)
377 expired);
411 char expired[128]; local
422 cc = snprintf(expired, sizeof(expired),
424 "[EXPIRED " : "[EXPIRES ");
425 ptimestr(&expired[cc], sizeof(expired) - cc,
428 cc += snprintf(&expired[cc], sizeof(expired) - cc, "]")
    [all...]
  /src/external/bsd/jemalloc/dist/include/jemalloc/internal/
prof_structs.h 163 bool expired; member in struct:prof_tdata_s
  /src/external/bsd/jemalloc/include/jemalloc/internal/
prof_structs.h 163 bool expired; member in struct:prof_tdata_s
  /src/external/apache2/mDNSResponder/dist/mDNSShared/
ClientRequests.c 472 // If an expired CNAME record was encountered, then rewind back to the original QNAME.
475 "[R%u->Q%u] Restarting question that got expired CNAMEs -- current name: " PRI_DM_NAME
906 const mDNSBool expired = (inAddRecord == QC_add) && (op->gotExpiredCNAME || (inAnswer->mortality == Mortality_Ghost)); local
907 op->resultHandler(m, inQuestion, inAnswer, expired, inAddRecord, resultErr, op->resultContext);
  /src/external/bsd/tmux/dist/
tty-keys.c 611 size_t *size, int expired)
620 log_debug("%s: next key is %zu (%.*s) (expired=%d)", c->name, len,
621 (int)len, buf, expired);
630 if (tk->next != NULL && !expired)
641 if (!expired)
739 int delay, expired = 0, n; local
856 n = tty_keys_next1(tty, buf, len, &key, &size, expired);
868 n = tty_keys_next1(tty, buf + 1, len - 1, &key, &size, expired);
892 * escape). So pass it through even if the timer has not expired.
942 expired = 1
    [all...]
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/tr1/
shared_ptr.h 869 if (expired())
886 return expired() ? __shared_ptr<element_type, _Lp>()
897 expired() const // never throws function in class:tr1::__weak_ptr
1122 if (this->expired())
1134 return this->expired() ? shared_ptr<_Tp>()
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/tr1/
shared_ptr.h 869 if (expired())
886 return expired() ? __shared_ptr<element_type, _Lp>()
897 expired() const // never throws function in class:tr1::__weak_ptr
1122 if (this->expired())
1134 return this->expired() ? shared_ptr<_Tp>()
  /src/external/bsd/unbound/dist/testcode/
fake_event.c 763 time_t expired = runtime->now_secs; local
764 expired -= 3;
765 rep->ttl = expired;
766 rep->prefetch_ttl = expired;
767 rep->serve_expired_ttl = expired;
  /src/external/bsd/ntp/dist/include/
ntp_request.h 775 u_int32 expired; /* number of expired keys */ member in struct:info_auth
  /src/external/mpl/bind/dist/bin/dnssec/
dnssec-signzone.c 546 bool expired, refresh, future, offline; local
559 expired = isc_serial_gt(now, rrsig.timeexpire);
577 keep = (!expired && !remove_orphansigs);
641 expired ? "expired" : "needs refresh");
  /src/external/bsd/unbound/dist/daemon/
remote.c 817 if(!ssl_printf(ssl, "%s.num.expired"SQ"%lu\n", nm,
1867 /* If this node has data, and not expired. */
2187 time_t expired; member in struct:del_info
2216 if(d->ttl > inf->expired) {
2217 d->ttl = inf->expired;
2240 /* what we do is to set them all expired */
2245 inf.expired = *worker->env.now;
2246 inf.expired -= 3; /* handle 3 seconds skew between threads */
2276 if(d->ttl > inf->expired) {
2277 d->ttl = inf->expired;
    [all...]

Completed in 65 milliseconds

1 2