Searched refs:next_timeout (Results 1 – 7 of 7) sorted by relevance
57 int64_t next_timeout; /* timeout in absolute ticks of this channel */ in schedule_next_timeout() local61 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()
168 int32_t next_timeout; in lldp_manage_timeouts() local174 next_timeout = timeout - (lldp->tx_timer_start + in lldp_manage_timeouts()177 return abs(next_timeout); in lldp_manage_timeouts()189 uint32_t next_timeout; in lldp_tx_timeout() local191 next_timeout = lldp_manage_timeouts(current, timeout); in lldp_tx_timeout()192 if (next_timeout < timeout_update) { in lldp_tx_timeout()193 timeout_update = next_timeout; in lldp_tx_timeout()
87 static int32_t next_timeout(void) in next_timeout() function142 sys_clock_set_timeout(next_timeout(), false); in z_add_timeout()158 sys_clock_set_timeout(next_timeout(), false); in z_abort_timeout()213 ret = next_timeout(); in z_get_next_timeout_expiry()260 sys_clock_set_timeout(next_timeout(), false); in sys_clock_announce()
867 uint32_t next_timeout; in dhcpv4_timeout() local869 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()
62 k_timeout_t next_timeout; in start_retry_timer() local80 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()
2160 uint64_t next_timeout; in dhcpv6_timeout() local2162 next_timeout = dhcpv6_manage_timers(iface, now); in dhcpv6_timeout()2163 if (next_timeout < timeout_update) { in dhcpv6_timeout()2164 timeout_update = next_timeout; in dhcpv6_timeout()
930 * :github:`28414` - kernel/timeout: next_timeout() is returning negative number of ticks