Home
last modified time | relevance | path

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

/Zephyr-Core-3.6.0/include/zephyr/net/
Ddhcpv4_server.h51 k_timepoint_t expiry; member
/Zephyr-Core-3.6.0/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-Core-3.6.0/subsys/net/lib/dhcpv4/
Ddhcpv4_server.c84 if (sys_timepoint_cmp(slot->expiry, next) < 0) { in dhcpv4_server_timeout_recalc()
85 next = slot->expiry; in dhcpv4_server_timeout_recalc()
766 new_slot->expiry = sys_timepoint_calc(ADDRESS_PROBE_TIMEOUT); in echo_reply_handler()
831 slot->expiry = sys_timepoint_calc(ADDRESS_RESERVED_TIMEOUT); in dhcpv4_server_probe_timeout()
951 selected->expiry = in dhcpv4_handle_discover()
959 selected->expiry = in dhcpv4_handle_discover()
1047 selected->expiry = sys_timepoint_calc( in dhcpv4_handle_request()
1095 selected->expiry = sys_timepoint_calc( in dhcpv4_handle_request()
1139 selected->expiry = sys_timepoint_calc( in dhcpv4_handle_request()
1193 slot->expiry = sys_timepoint_calc(K_FOREVER); in dhcpv4_handle_decline()
[all …]
/Zephyr-Core-3.6.0/samples/drivers/counter/alarm/
DREADME.rst11 expiry, a new alarm is configured with a delay multiplied by 2.
/Zephyr-Core-3.6.0/samples/subsys/portability/cmsis_rtos_v1/timer_synchronization/
DREADME.rst12 and on timer expiry, message is read by main thread.
/Zephyr-Core-3.6.0/samples/subsys/portability/cmsis_rtos_v2/timer_synchronization/
DREADME.rst12 and on timer expiry, message is read by main thread.
/Zephyr-Core-3.6.0/subsys/net/lib/shell/
Ddhcpv4.c144 timepoint_to_s(lease->expiry)); in dhcpv4_lease_cb()
/Zephyr-Core-3.6.0/subsys/net/lib/coap/
Dcoap.c1668 int64_t expiry, min_expiry = INT64_MAX; in coap_pending_next_to_expire() local
1675 expiry = p->t0 + p->timeout; in coap_pending_next_to_expire()
1677 if (expiry < min_expiry) { in coap_pending_next_to_expire()
1678 min_expiry = expiry; in coap_pending_next_to_expire()
/Zephyr-Core-3.6.0/include/zephyr/
Dkernel.h1477 #define Z_TIMER_INITIALIZER(obj, expiry, stop) \ argument
1485 .expiry_fn = expiry, \
/Zephyr-Core-3.6.0/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