Lines Matching refs:NULL
88 sys_timeout(TCP_TMR_INTERVAL, tcpip_tcp_timer, NULL); in tcpip_tcp_timer()
107 sys_timeout(TCP_TMR_INTERVAL, tcpip_tcp_timer, NULL); in tcp_timer_needed()
124 sys_timeout(IP_TMR_INTERVAL, ip_reass_timer, NULL); in ip_reass_timer()
140 sys_timeout(ARP_TMR_INTERVAL, arp_timer, NULL); in arp_timer()
156 sys_timeout(DHCP_COARSE_TIMER_MSECS, dhcp_timer_coarse, NULL); in dhcp_timer_coarse()
170 sys_timeout(DHCP_FINE_TIMER_MSECS, dhcp_timer_fine, NULL); in dhcp_timer_fine()
186 sys_timeout(AUTOIP_TMR_INTERVAL, autoip_timer, NULL); in autoip_timer()
202 sys_timeout(IGMP_TMR_INTERVAL, igmp_timer, NULL); in igmp_timer()
218 sys_timeout(DNS_TMR_INTERVAL, dns_timer, NULL); in dns_timer()
226 sys_timeout(IP_TMR_INTERVAL, ip_reass_timer, NULL); in sys_timeouts_init()
229 sys_timeout(ARP_TMR_INTERVAL, arp_timer, NULL); in sys_timeouts_init()
232 sys_timeout(DHCP_COARSE_TIMER_MSECS, dhcp_timer_coarse, NULL); in sys_timeouts_init()
233 sys_timeout(DHCP_FINE_TIMER_MSECS, dhcp_timer_fine, NULL); in sys_timeouts_init()
236 sys_timeout(AUTOIP_TMR_INTERVAL, autoip_timer, NULL); in sys_timeouts_init()
239 sys_timeout(IGMP_TMR_INTERVAL, igmp_timer, NULL); in sys_timeouts_init()
242 sys_timeout(DNS_TMR_INTERVAL, dns_timer, NULL); in sys_timeouts_init()
272 if (timeout == NULL) { in sys_timeout_debug()
273 LWIP_ASSERT("sys_timeout: timeout != NULL, pool MEMP_SYS_TIMEOUT is empty", timeout != NULL); in sys_timeout_debug()
276 timeout->next = NULL; in sys_timeout_debug()
286 if (next_timeout == NULL) { in sys_timeout_debug()
296 for(t = next_timeout; t != NULL; t = t->next) { in sys_timeout_debug()
298 if (t->next == NULL || t->next->time > timeout->time) { in sys_timeout_debug()
299 if (t->next != NULL) { in sys_timeout_debug()
325 if (next_timeout == NULL) { in sys_untimeout()
329 for (t = next_timeout, prev_t = NULL; t != NULL; prev_t = t, t = t->next) { in sys_untimeout()
333 if (prev_t == NULL) { in sys_untimeout()
339 if (t->next != NULL) { in sys_untimeout()
387 if (handler != NULL) { in sys_check_timeouts()
393 if (handler != NULL) { in sys_check_timeouts()
449 if (handler != NULL) { in sys_timeouts_mbox_fetch()
455 if (handler != NULL) { in sys_timeouts_mbox_fetch()