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()
162 int32_t next_timeout; in lldp_manage_timeouts() local168 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() local185 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()
83 static int32_t next_timeout(void) in next_timeout() function139 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()
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()
2055 uint64_t next_timeout; in dhcpv6_timeout() local2057 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()
930 * :github:`28414` - kernel/timeout: next_timeout() is returning negative number of ticks