Home
last modified time | relevance | path

Searched refs:next_timeout (Results 1 – 7 of 7) sorted by relevance

/Zephyr-latest/subsys/task_wdt/
Dtask_wdt.c57 int64_t next_timeout; /* timeout in absolute ticks of this channel */ in schedule_next_timeout() local
61 next_timeout = current_ticks + in schedule_next_timeout()
65 next_timeout = INT64_MAX; in schedule_next_timeout()
71 channels[id].timeout_abs_ticks < next_timeout) { in schedule_next_timeout()
73 next_timeout = channels[id].timeout_abs_ticks; in schedule_next_timeout()
79 k_timer_start(&timer, K_TIMEOUT_ABS_TICKS(next_timeout), K_FOREVER); in schedule_next_timeout()
/Zephyr-latest/subsys/net/l2/ethernet/lldp/
Dlldp.c162 int32_t next_timeout; in lldp_manage_timeouts() local
168 next_timeout = timeout - (lldp->tx_timer_start + in lldp_manage_timeouts()
171 return abs(next_timeout); in lldp_manage_timeouts()
183 uint32_t next_timeout; in lldp_tx_timeout() local
185 next_timeout = lldp_manage_timeouts(current, timeout); in lldp_tx_timeout()
186 if (next_timeout < timeout_update) { in lldp_tx_timeout()
187 timeout_update = next_timeout; in lldp_tx_timeout()
/Zephyr-latest/kernel/
Dtimeout.c83 static int32_t next_timeout(void) in next_timeout() function
139 sys_clock_set_timeout(next_timeout(), false); in z_add_timeout()
205 ret = next_timeout(); in z_get_next_timeout_expiry()
252 sys_clock_set_timeout(next_timeout(), false); in sys_clock_announce()
/Zephyr-latest/subsys/net/lib/dhcpv4/
Ddhcpv4.c867 uint32_t next_timeout; in dhcpv4_timeout() local
869 next_timeout = dhcpv4_manage_timers(iface, now); in dhcpv4_timeout()
870 if (next_timeout < timeout_update) { in dhcpv4_timeout()
871 timeout_update = next_timeout; in dhcpv4_timeout()
/Zephyr-latest/subsys/bluetooth/mesh/
Dblob_cli.c62 k_timeout_t next_timeout; in start_retry_timer() local
80 next_timeout = next_timeout_ms <= 0 ? K_NO_WAIT : K_MSEC(next_timeout_ms); in start_retry_timer()
82 next_timeout = K_MSEC(CLIENT_TIMEOUT_MSEC(cli) / in start_retry_timer()
86 (void)k_work_reschedule(&cli->tx.retry, next_timeout); in start_retry_timer()
/Zephyr-latest/subsys/net/lib/dhcpv6/
Ddhcpv6.c2055 uint64_t next_timeout; in dhcpv6_timeout() local
2057 next_timeout = dhcpv6_manage_timers(iface, now); in dhcpv6_timeout()
2058 if (next_timeout < timeout_update) { in dhcpv6_timeout()
2059 timeout_update = next_timeout; in dhcpv6_timeout()
/Zephyr-latest/doc/releases/
Drelease-notes-2.4.rst930 * :github:`28414` - kernel/timeout: next_timeout() is returning negative number of ticks