Searched refs:lifetime (Results 1 - 25 of 48) sorted by relevance

12

/openbsd-current/usr.sbin/dvmrpd/
H A Dprune.c66 prune.lifetime = htonl(MAX_PRUNE_LIFETIME);
101 p.lifetime = prune->lifetime;
H A Ddvmrp.h101 u_int32_t lifetime; member in struct:prune_hdr
H A Ddvmrpd.h165 u_int32_t lifetime; member in struct:prune
/openbsd-current/regress/sbin/slaacd/
H A Dprocess_ra.py21 rdnss = ICMPv6NDOptRDNSS(lifetime=86400, dns=['2001:db8:53::a',
23 dnssl = ICMPv6NDOptDNSSL(lifetime=86400, searchlist=['invalid', 'home.invalid'])
/openbsd-current/usr.sbin/tcpdump/
H A Dprint-icmp.c286 u_int lifetime, num, size; local
292 (void)strlcat(buf, " lifetime ", sizeof(buf));
293 lifetime = EXTRACT_16BITS(&ihp->ird_lifetime);
294 if (lifetime < 60)
295 (void)snprintf(buf2, sizeof(buf2), "%u", lifetime);
296 else if (lifetime < 60 * 60)
298 lifetime / 60, lifetime % 60);
301 lifetime / 3600, (lifetime
[all...]
/openbsd-current/lib/libssl/
H A Dssl_asn1.c51 CBB peer_cert, sidctx, verify_result, hostname, lifetime, ticket, value; local
159 /* Ticket lifetime hint [9]. */
161 if (!CBB_add_asn1(&session, &lifetime, SSLASN1_LIFETIME_TAG))
163 if (!CBB_add_asn1_uint64(&lifetime,
248 uint64_t version, tls_version, stime, timeout, verify_result, lifetime; local
381 /* Ticket lifetime [9]. */
383 if (!CBS_get_optional_asn1_uint64(&session, &lifetime,
386 if (lifetime > UINT32_MAX)
388 if (lifetime > 0)
389 s->tlsext_tick_lifetime_hint = (uint32_t)lifetime;
[all...]
/openbsd-current/usr.bin/ssh/
H A Dssh-add.c89 /* Default lifetime (0 == forever) */
90 static int lifetime = 0; variable
372 lifetime, confirm, maxsign, skprovider,
378 if (lifetime != 0) {
380 "Lifetime set to %d seconds\n", lifetime);
426 lifetime, confirm, maxsign, skprovider,
436 if (lifetime != 0) {
438 lifetime);
473 lifetime, confirm, dest_constraints, ndest_constraints,
619 lifetime, confir
[all...]
H A Dssh-agent.c180 /* Default lifetime in seconds (0 == forever) */
181 static int lifetime = 0; variable
1276 error_f("lifetime already set");
1281 error_fr(r, "parse lifetime constraint");
1398 if (lifetime && !death)
1399 death = monotime() + lifetime;
1586 if (lifetime && !death)
1587 death = monotime() + lifetime;
2259 if ((lifetime = convtime(optarg)) == -1) {
2260 fprintf(stderr, "Invalid lifetime\
[all...]
/openbsd-current/gnu/llvm/llvm/include/llvm/ProfileData/
H A DMemProfData.inc135 // Lifetime access density is the access density per second of lifetime.
136 // Multiply by 1000 to convert denominator lifetime to seconds (using a
137 // minimum lifetime of 1ms to avoid divide by 0. Do the multiplication first
/openbsd-current/gnu/llvm/compiler-rt/include/profile/
H A DMemProfData.inc135 // Lifetime access density is the access density per second of lifetime.
136 // Multiply by 1000 to convert denominator lifetime to seconds (using a
137 // minimum lifetime of 1ms to avoid divide by 0. Do the multiplication first
/openbsd-current/sbin/slaacd/
H A Dengine.c771 cei_ra_rdns.lifetime = ra->rdns_lifetime;
1045 uint32_t lifetime; local
1067 lifetime = real_lifetime(&addr_proposal->uptime,
1069 if (lifetime == 0)
1070 lifetime = real_lifetime(&addr_proposal->uptime,
1072 if (lifetime > MAX_RTR_SOLICITATIONS *
1074 addr_proposal->timo.tv_sec = lifetime -
1080 lifetime = real_lifetime(&addr_proposal->uptime,
1082 if (lifetime == 0)
1083 lifetime
1124 uint32_t lifetime; local
1198 uint32_t lifetime; local
[all...]
H A Dslaacd.h117 uint32_t lifetime; member in struct:ctl_engine_info_ra_rdns
/openbsd-current/gnu/usr.bin/perl/cpan/Memoize/Memoize/
H A DExpire.pm122 LIFETIME => $lifetime, # In seconds
145 up afresh, its lifetime is reset.
180 LIFETIME => $lifetime, # In seconds
332 with a lifetime of ten seconds, and you store it at 12:00:00.998 on a
/openbsd-current/regress/sbin/ifconfig/
H A Difaddr.c1382 struct in6_addrlifetime *lifetime; local
1387 lifetime = &ifr6.ifr_ifru.ifru_lifetime;
1391 } else if (lifetime->ia6t_preferred || lifetime->ia6t_expire) {
1395 if (lifetime->ia6t_preferred) {
1396 printf("%s", lifetime->ia6t_preferred < t
1398 sec2str(lifetime->ia6t_preferred - t));
1403 if (lifetime->ia6t_expire) {
1404 printf("%s", lifetime->ia6t_expire < t
1406 : sec2str(lifetime
[all...]
/openbsd-current/lib/libtls/
H A Dtls_config.c879 tls_config_set_session_lifetime(struct tls_config *config, int lifetime) argument
881 if (lifetime > TLS_MAX_SESSION_TIMEOUT) {
883 "session lifetime too large");
886 if (lifetime != 0 && lifetime < TLS_MIN_SESSION_TIMEOUT) {
888 "session lifetime too small");
892 config->session_lifetime = lifetime;
/openbsd-current/sbin/pfctl/
H A Dpfctl_table.c261 u_int lifetime; local
267 lifetime = strtonum(*argv, 0, UINT_MAX, &errstr);
281 lifetime)
/openbsd-current/gnu/usr.bin/gcc/gcc/
H A Dloop.h125 where a giv's lifetime spans an update to
136 int lifetime; /* Length of life of this giv */ member in struct:induction
162 a substitute for the lifetime information. */
H A Ddf.h97 int lifetime; member in struct:reg_info
/openbsd-current/usr.sbin/rad/
H A Dfrontend.c1058 struct in6_addrlifetime *lifetime; local
1060 lifetime = &ifr6.ifr_ifru.ifru_lifetime;
1061 if (lifetime->ia6t_preferred)
1062 decaying_pltime = lifetime->ia6t_preferred;
1063 if (lifetime->ia6t_expire)
1064 decaying_vltime = lifetime->ia6t_expire;
1347 /* scaled lifetime in units of 8 seconds */
/openbsd-current/sys/net80211/
H A Dieee80211_crypto.c624 const u_int8_t *macaddr, const u_int8_t *key, u_int32_t lifetime)
643 pmk->pmk_lifetime = lifetime; /* XXX not used yet */
623 ieee80211_pmksa_add(struct ieee80211com *ic, enum ieee80211_akm akm, const u_int8_t *macaddr, const u_int8_t *key, u_int32_t lifetime) argument
/openbsd-current/sys/dev/ic/
H A Dacxreg.h293 uint32_t lifetime; member in struct:acx_conf_msdu_lifetime
/openbsd-current/usr.sbin/slaacctl/
H A Dslaacctl.c255 printf("\t\trdns: %s, lifetime: %u\n", inet_ntop(AF_INET6,
257 cei_ra_rdns->lifetime);
314 printf("\t\trouter lifetime: %10u\n",
346 printf("\t\trdns lifetime: %10u\n",
/openbsd-current/gnu/llvm/clang/lib/AST/
H A DTypePrinter.cpp52 /// RAII object that enables printing of the ARC __strong lifetime
2199 if (Qualifiers::ObjCLifetime lifetime = getObjCLifetime())
2200 if (!(lifetime == Qualifiers::OCL_Strong && Policy.SuppressStrongLifetime))
2287 if (Qualifiers::ObjCLifetime lifetime = getObjCLifetime()) {
2288 if (!(lifetime == Qualifiers::OCL_Strong && Policy.SuppressStrongLifetime)){
2294 switch (lifetime) {
/openbsd-current/gnu/llvm/clang/lib/CodeGen/
H A DCGDecl.cpp632 /// variable with lifetime.
635 Qualifiers::ObjCLifetime lifetime) {
636 switch (lifetime) {
780 Qualifiers::ObjCLifetime lifetime = lvalue.getObjCLifetime(); local
781 if (!lifetime) {
793 // If we're emitting a value with lifetime, we have to do the
805 if (lifetime != Qualifiers::OCL_ExplicitNone)
823 if (lifetime == Qualifiers::OCL_Weak)
834 switch (lifetime) {
885 if (accessedByInit && lifetime
633 EmitAutoVarWithLifetime(CodeGenFunction &CGF, const VarDecl &var, Address addr, Qualifiers::ObjCLifetime lifetime) argument
[all...]
/openbsd-current/gnu/llvm/llvm/lib/Support/Windows/
H A DProcess.inc103 // disabling minidumps for a particular application extends past the lifetime

Completed in 216 milliseconds

12