Lines Matching refs:timer
238 static bool get_timer_status(bool *first_iteration, struct k_timer *timer, k_timeout_t duration) in get_timer_status() argument
240 if (first_iteration == NULL || timer == NULL) { in get_timer_status()
246 k_timer_start(timer, duration, K_NO_WAIT); in get_timer_status()
255 } else if (k_timer_remaining_get(timer) > 0) { in get_timer_status()
268 struct k_timer timer; in sip_svc_open() local
277 k_timer_init(&timer, NULL, NULL); in sip_svc_open()
285 for (bool first_iteration = false; get_timer_status(&first_iteration, &timer, k_timeout); in sip_svc_open()
298 k_timer_stop(&timer); in sip_svc_open()
306 k_timer_stop(&timer); in sip_svc_open()
333 k_timer_stop(&timer); in sip_svc_open()
337 k_timer_stop(&timer); in sip_svc_open()