Home
last modified time | relevance | path

Searched refs:expiry (Results 1 – 15 of 15) sorted by relevance

/Zephyr-latest/subsys/net/lib/dns/
Ddns_cache.c54 } else if (sys_timepoint_cmp(closest_to_expiry, cache->entries[i].expiry) > 0) { in dns_cache_add()
56 closest_to_expiry = cache->entries[i].expiry; in dns_cache_add()
67 cache->entries[index_to_replace].expiry = sys_timepoint_calc(K_SECONDS(ttl)); in dns_cache_add()
157 if (sys_timepoint_expired(cache->entries[i].expiry)) { in dns_cache_clean()
Ddns_cache.h24 k_timepoint_t expiry; member
/Zephyr-latest/include/zephyr/net/
Ddhcpv4_server.h53 k_timepoint_t expiry; member
/Zephyr-latest/subsys/net/ip/
Dipv4_acd.c130 k_timepoint_t expiry = sys_timepoint_calc(K_FOREVER); in acd_timer_reschedule() local
138 if (sys_timepoint_cmp(ifaddr->acd_timeout, expiry) < 0) { in acd_timer_reschedule()
139 expiry = ifaddr->acd_timeout; in acd_timer_reschedule()
143 timeout = sys_timepoint_timeout(expiry); in acd_timer_reschedule()
/Zephyr-latest/subsys/net/lib/dhcpv4/
Ddhcpv4_server.c91 if (sys_timepoint_cmp(slot->expiry, next) < 0) { in dhcpv4_server_timeout_recalc()
92 next = slot->expiry; in dhcpv4_server_timeout_recalc()
830 probe_ctx->slot->expiry = sys_timepoint_calc(ADDRESS_DECLINED_TIMEOUT); in echo_reply_handler()
856 new_slot->expiry = sys_timepoint_calc(ADDRESS_PROBE_TIMEOUT); in echo_reply_handler()
924 slot->expiry = sys_timepoint_calc(ADDRESS_RESERVED_TIMEOUT); in dhcpv4_server_probe_timeout()
1054 (sys_timepoint_cmp(slot->expiry, in dhcpv4_handle_discover()
1055 selected->expiry) < 0)) { in dhcpv4_handle_discover()
1077 selected->expiry = in dhcpv4_handle_discover()
1085 selected->expiry = in dhcpv4_handle_discover()
1174 selected->expiry = sys_timepoint_calc( in dhcpv4_handle_request()
[all …]
/Zephyr-latest/doc/kernel/services/timing/
Dtimers.rst36 * An **expiry function** that is executed each time the timer expires.
38 If no expiry function is required a ``NULL`` function can be specified.
48 expiry function and stop function values, sets the timer's status to zero,
53 the **running** state and begins counting down towards expiry.
63 and the timer executes its expiry function, if one exists;
132 the timer's expiry function submits a work item to the
206 /* ensure timer has expired (waiting for expiry, if necessary) */
Dclocks.rst109 within the expiry function passed to :c:func:`k_timer_init` or the work handler
/Zephyr-latest/samples/drivers/counter/alarm/
DREADME.rst11 expiry, a new alarm is configured with a delay multiplied by 2.
/Zephyr-latest/samples/subsys/portability/cmsis_rtos_v1/timer_synchronization/
DREADME.rst12 and on timer expiry, message is read by main thread.
/Zephyr-latest/samples/subsys/portability/cmsis_rtos_v2/timer_synchronization/
DREADME.rst12 and on timer expiry, message is read by main thread.
/Zephyr-latest/subsys/net/lib/shell/
Ddhcpv4.c144 timepoint_to_s(lease->expiry)); in dhcpv4_lease_cb()
/Zephyr-latest/subsys/net/lib/coap/
Dcoap.c1704 int64_t expiry, min_expiry = INT64_MAX; in coap_pending_next_to_expire() local
1711 expiry = p->t0 + p->timeout; in coap_pending_next_to_expire()
1713 if (expiry < min_expiry) { in coap_pending_next_to_expire()
1714 min_expiry = expiry; in coap_pending_next_to_expire()
/Zephyr-latest/include/zephyr/
Dkernel.h1582 #define Z_TIMER_INITIALIZER(obj, expiry, stop) \ argument
1590 .expiry_fn = expiry, \
/Zephyr-latest/doc/releases/
Drelease-notes-1.8.rst192 * Added test to verify same tick timeout expiry order
Drelease-notes-1.7.rst359 * ``ZEP-1558`` - Support of user private data pointer in Timer expiry function