Searched refs:backoff (Results 1 – 5 of 5) sorted by relevance
31 Use CSMA-CA mechanism (listen-before-talk with exponential backoff)59 int "CSMA MAC minimum backoff exponent"63 The minimum value of the backoff exponent (BE) in the CSMA-CA68 int "CSMA MAC maximum backoff exponent"72 The maximum value of the backoff exponent (BE) in the CSMA-CA
46 static k_timeout_t backoff[CONFIG_ZTRESS_MAX_THREADS]; variable75 uint32_t new_ticks = ratio * (uint32_t)backoff[i].ticks / 16; in adjust_load()77 backoff[i].ticks = MAX(4, new_ticks); in adjust_load()241 k_timer_start(timer, randomize_t(backoff[priority]), K_NO_WAIT); in ztress_timeout()270 sleep(backoff[priority]); in ztress_thread()356 backoff[ztress_prio] = timer_data->t; in ztress_execute()364 backoff[ztress_prio] = thread_data[i].t; in ztress_execute()416 (uint32_t)init_backoff[i].ticks, (uint32_t)backoff[i].ticks); in ztress_report()447 return backoff[id].ticks; in ztress_optimized_ticks()
561 k_timeout_t backoff = K_NO_WAIT; in z_impl_log_process() local568 msg = z_log_msg_claim(&backoff); in z_impl_log_process()574 } else if (CONFIG_LOG_PROCESSING_LATENCY_US > 0 && !K_TIMEOUT_EQ(backoff, K_NO_WAIT)) { in z_impl_log_process()579 k_timer_start(&log_process_thread_timer, backoff, K_NO_WAIT); in z_impl_log_process()718 union log_msg_generic *z_log_msg_claim_oldest(k_timeout_t *backoff) in z_log_msg_claim_oldest() argument762 *backoff = K_TICKS(diff); in z_log_msg_claim_oldest()764 *backoff = K_TICKS((diff * sys_clock_hw_cycles_per_sec()) / in z_log_msg_claim_oldest()784 union log_msg_generic *z_log_msg_claim(k_timeout_t *backoff) in z_log_msg_claim() argument792 return z_log_msg_claim_oldest(backoff); in z_log_msg_claim()
52 times with exponential backoff until the timeout is reached.63 which DNS query is re-tried. If there is no reply, the backoff
86 int "Retransmission backoff factor for ACK timeout described as percentage"
Completed in 40 milliseconds