Home
last modified time | relevance | path

Searched refs:next_update (Results 1 – 3 of 3) sorted by relevance

/Zephyr-4.1.0/subsys/net/ip/
Droute.c490 uint32_t next_update = UINT32_MAX; in route_lifetime_timeout() local
509 if (this_update < next_update) { in route_lifetime_timeout()
510 next_update = this_update; in route_lifetime_timeout()
514 if (next_update != UINT32_MAX) { in route_lifetime_timeout()
515 k_work_reschedule(&route_lifetime_timer, K_MSEC(next_update)); in route_lifetime_timeout()
Dnet_if.c1751 uint32_t next_update = UINT32_MAX; in address_lifetime_timeout() local
1770 if (this_update < next_update) { in address_lifetime_timeout()
1771 next_update = this_update; in address_lifetime_timeout()
1779 if (next_update != UINT32_MAX) { in address_lifetime_timeout()
1780 NET_DBG("Waiting for %d ms", (int32_t)next_update); in address_lifetime_timeout()
1782 k_work_reschedule(&address_lifetime_timer, K_MSEC(next_update)); in address_lifetime_timeout()
2600 uint32_t next_update = UINT32_MAX; in prefix_lifetime_timeout() local
2626 if (this_update < next_update) { in prefix_lifetime_timeout()
2627 next_update = this_update; in prefix_lifetime_timeout()
2635 if (next_update != UINT32_MAX) { in prefix_lifetime_timeout()
[all …]
/Zephyr-4.1.0/subsys/net/lib/lwm2m/
Dlwm2m_rd_client.c1124 static int64_t next_update(void) in next_update() function
1148 return next_update(); in next_rx_off()
1155 return Z_MIN(next_update(), next_rx_off()); in calc_next_event()
1166 now >= next_update())) { in sm_registration_done()
1172 next_event_at(next_update()); in sm_registration_done()