Searched refs:expiration (Results 1 - 11 of 11) sorted by relevance

/openbsd-current/sbin/isakmpd/
H A Dtimer.c56 if (timespeccmp(&now, &TAILQ_FIRST(&events)->expiration, >=))
59 timespecsub(&TAILQ_FIRST(&events)->expiration, &now,
73 n && timespeccmp(&now, &n->expiration, >=);
86 struct timespec *expiration)
98 memcpy(&ev->expiration, expiration, sizeof *expiration);
100 n && timespeccmp(expiration, &n->expiration, >=);
106 "expiration i
85 timer_add_event(char *name, void (*func)(void *), void *arg, struct timespec *expiration) argument
[all...]
H A Dtimer.h44 struct timespec expiration; member in struct:event
H A Dtransport.c260 struct timespec expiration; local
338 &expiration);
345 expiration.tv_sec += expiry;
356 msg, &expiration);
H A Dsa.c683 timeout = get_timeout(&sa->soft_death->expiration);
691 timeout = get_timeout(&sa->death->expiration);
1266 * not touch a phase 2 SA where the soft expiration is not set, ie.
1343 * Setup expiration timers for SA. This is used for ISAKMP SAs, but also
1351 struct timespec expiration; local
1365 clock_gettime(CLOCK_MONOTONIC, &expiration);
1374 expiration.tv_sec += seconds;
1376 sa_soft_expire, sa, &expiration);
1385 clock_gettime(CLOCK_MONOTONIC, &expiration);
1389 expiration
[all...]
H A Dconnection.c417 (long long)(conn->ev->expiration.tv_sec - now.tv_sec)));
H A Dexchange.c590 struct timespec expiration; local
626 clock_gettime(CLOCK_MONOTONIC, &expiration);
629 expiration.tv_sec += delta;
631 exchange_free_aux, exchange, &expiration);
1179 * event. When removing an exchange from the expiration handler that event
1243 /* And two more for the expiration and SA linked list. */
/openbsd-current/sys/kern/
H A Dkern_clockintr.c274 uint64_t count, expiration; local
278 expiration = cl->cl_expiration;
279 count = nsec_advance(&expiration, period, nsecuptime());
280 clockintr_schedule_locked(cl, expiration);
391 clockintr_schedule(struct clockintr *cl, uint64_t expiration) argument
396 clockintr_schedule_locked(cl, expiration);
401 clockintr_schedule_locked(struct clockintr *cl, uint64_t expiration) argument
409 clockqueue_pend_insert(cq, cl, expiration);
490 uint64_t expiration)
497 cl->cl_expiration = expiration;
489 clockqueue_pend_insert(struct clockqueue *cq, struct clockintr *cl, uint64_t expiration) argument
[all...]
/openbsd-current/gnu/usr.bin/perl/cpan/Memoize/Memoize/
H A DExpire.pm11 # (4-byte expiration time: unsigned seconds-since-unix-epoch)
115 Memoize::Expire - Plug-in module for automatic expiration of memoized values
153 when either expiration condition holds.
165 # Memoize::Expire enforces data expiration policy
178 # Set up expiration policy, supplying persistent hash as a target
191 free to write your own expiration policy module that implements
290 To use this expiration policy, the user would say
312 work with Memoize and provides expiration of least-recently-used data.
316 Joshua Chamas's Tie::Cache module may be useful as an expiration
319 If you develop any useful expiration manager
[all...]
/openbsd-current/gnu/llvm/llvm/include/llvm-c/
H A Dlto.h872 * - The pruning expiration time indicates to the garbage collector how old an
915 * Sets the expiration (in seconds) for an entry in the cache. An unspecified
921 unsigned expiration);
/openbsd-current/gnu/llvm/llvm/tools/lto/
H A Dlto.cpp617 unsigned expiration) {
618 return unwrap(cg)->setCacheEntryExpiration(expiration);
616 thinlto_codegen_set_cache_entry_expiration(thinlto_code_gen_t cg, unsigned expiration) argument
/openbsd-current/gnu/usr.bin/perl/cpan/Memoize/
H A DMemoize.pm886 See Memoize::Expire, which is a plug-in module that adds expiration
890 several examples. An expiration manager that implements a LRU policy
930 about expiration, to Brent Powers for the Memoize::ExpireLRU module,

Completed in 259 milliseconds