/Zephyr-latest/soc/nxp/imxrt/imxrt6xx/cm33/ |
D | flash_clock_setup.c | 31 uint32_t retry; in flash_init() local 44 retry = FLEXSPI_DLL_LOCK_RETRY; in flash_init() 60 retry = 100; in flash_init() 64 retry--; in flash_init() 66 retry = FLEXSPI_DLL_LOCK_RETRY; in flash_init() 69 } while (retry > 0); in flash_init() 73 for (; retry > 0U; retry--) { in flash_init()
|
/Zephyr-latest/soc/nxp/imxrt/imxrt5xx/cm33/ |
D | flash_clock_setup.c | 31 uint32_t retry; in flash_init() local 48 retry = FLEXSPI_DLL_LOCK_RETRY; in flash_init() 55 retry = 100; in flash_init() 59 retry--; in flash_init() 61 retry = FLEXSPI_DLL_LOCK_RETRY; in flash_init() 64 } while (retry > 0); in flash_init() 68 for (; retry > 0U; retry--) { in flash_init()
|
/Zephyr-latest/soc/st/stm32/common/ |
D | stm32_hsem.h | 116 static inline void z_stm32_hsem_lock(uint32_t hsem, uint32_t retry) in z_stm32_hsem_lock() argument 122 if (retry != HSEM_LOCK_WAIT_FOREVER) { in z_stm32_hsem_lock() 123 retry--; in z_stm32_hsem_lock() 124 if (retry == 0) { in z_stm32_hsem_lock()
|
/Zephyr-latest/soc/intel/intel_adsp/ace/ |
D | multiprocessing.c | 131 int retry = CORE_POWER_CHECK_NUM; in soc_start_core() local 183 (retry > 0)) { in soc_start_core() 185 retry--; in soc_start_core() 188 if (retry == 0) { in soc_start_core() 257 int retry = CORE_POWER_CHECK_NUM; in soc_adsp_halt_cpu() local 275 (retry > 0)) { in soc_adsp_halt_cpu() 277 retry--; in soc_adsp_halt_cpu() 280 if (retry == 0) { in soc_adsp_halt_cpu()
|
/Zephyr-latest/subsys/bluetooth/controller/ticker/shell/ |
D | ticker.c | 47 uint8_t retry; in cmd_ticker_info() local 54 retry = 4U; in cmd_ticker_info() 81 retry--; in cmd_ticker_info() 82 if (!retry) { in cmd_ticker_info() 93 "remaining.", retry); in cmd_ticker_info()
|
/Zephyr-latest/subsys/sd/ |
D | Kconfig | 44 int "Number of times to retry initialization commands" 47 Number of times to retry initialization commands in case of failure 50 int "Number of times to retry SD OCR read" 53 Number of times to retry SD OCR read command. OCR reads typically 84 int "Number of times to retry sending command to card" 87 Number of times to retry sending command to SD card in case of failure 90 int "Number of times to retry sending data to card" 93 Number of times to retry sending data to SD card in case of failure
|
/Zephyr-latest/tests/bluetooth/controller/mock_ctrl/src/ |
D | util.c | 81 uint8_t retry; in util_aa_le32() local 83 retry = 3U; in util_aa_le32() 85 if (!retry) { in util_aa_le32() 88 retry--; in util_aa_le32()
|
/Zephyr-latest/lib/os/zvfs/ |
D | zvfs_poll.c | 22 bool retry; in zvfs_poll_internal() local 116 retry = false; in zvfs_poll_internal() 144 retry = true; in zvfs_poll_internal() 156 if (retry) { in zvfs_poll_internal() 167 } while (retry); in zvfs_poll_internal()
|
/Zephyr-latest/tests/boards/espressif/wifi/src/ |
D | main.c | 242 int retry = CONFIG_WIFI_CONNECT_ATTEMPTS; in ZTEST() local 255 zassert(--retry, "Connect failed"); in ZTEST() 256 LOG_INF("Failed attempt, retry %d", CONFIG_WIFI_CONNECT_ATTEMPTS - retry); in ZTEST() 261 } while (retry); in ZTEST() 279 int retry = CONFIG_WIFI_PING_ATTEMPTS; in ZTEST() local 308 zassert(--retry, "Gateway ping (ICMP) timed out on all attempts"); in ZTEST() 309 LOG_INF("No reply, retry %d", CONFIG_WIFI_PING_ATTEMPTS - retry); in ZTEST() 313 } while (retry); in ZTEST()
|
/Zephyr-latest/drivers/rtc/ |
D | rtc_ifx_cat1.c | 216 uint32_t retry = 0; in ifx_cat1_rtc_set_time() local 225 if (retry != 0) { in ifx_cat1_rtc_set_time() 237 ++retry; in ifx_cat1_rtc_set_time() 238 } while (rslt == CY_RTC_INVALID_STATE && retry < _IFX_CAT1_RTC_MAX_RETRY); in ifx_cat1_rtc_set_time() 240 retry = 0; in ifx_cat1_rtc_set_time() 241 while (CY_RTC_BUSY == Cy_RTC_GetSyncStatus() && retry < _IFX_CAT1_RTC_MAX_RETRY) { in ifx_cat1_rtc_set_time() 243 ++retry; in ifx_cat1_rtc_set_time()
|
/Zephyr-latest/subsys/bluetooth/controller/util/ |
D | util.c | 80 uint8_t retry; in util_aa_le32() local 82 retry = 3U; in util_aa_le32() 84 if (!retry) { in util_aa_le32() 87 retry--; in util_aa_le32()
|
/Zephyr-latest/tests/bsim/bluetooth/mesh/src/ |
D | friendship_common.c | 93 static void lpn_polled(uint16_t net_idx, uint16_t friend_addr, bool retry) in lpn_polled() argument 96 retry ? "retry" : "initial"); in lpn_polled()
|
/Zephyr-latest/boards/shields/wnc_m14a2a/ |
D | Kconfig.defconfig | 20 # extend retry timing to 20 seconds for LTE/LTE-M
|
/Zephyr-latest/boards/shields/sparkfun_sara_r4/ |
D | Kconfig.defconfig | 27 # extend retry timing to 20 seconds for LTE/LTE-M
|
/Zephyr-latest/subsys/logging/backends/ |
D | Kconfig.ws | 31 Sleep period between TX retry attempts.
|
/Zephyr-latest/drivers/sensor/bosch/bmp180/ |
D | bmp180.c | 135 uint8_t retry = 2; in bmp180_conv_ready() local 156 --retry; in bmp180_conv_ready() 157 if (retry == 0) { in bmp180_conv_ready()
|
/Zephyr-latest/subsys/bluetooth/controller/ll_sw/ |
D | ull_sched.c | 411 uint8_t retry; in after_match_slot_get() local 430 retry = UINT8_MAX; in after_match_slot_get() 484 LL_ASSERT(retry); in after_match_slot_get() 485 retry--; in after_match_slot_get()
|
/Zephyr-latest/drivers/disk/nvme/ |
D | nvme_cmd.c | 381 bool error, retriable, retry; in nvme_cmd_request_complete() local 385 retry = error && retriable && in nvme_cmd_request_complete() 388 if (retry) { in nvme_cmd_request_complete() 403 if (retry) { in nvme_cmd_request_complete()
|
/Zephyr-latest/subsys/bluetooth/audio/ |
D | Kconfig | 33 retry to send notification that failed due to lack of TX buffers
|
/Zephyr-latest/tests/bsim/bluetooth/host/misc/conn_stress/central/src/ |
D | main.c | 248 goto retry; in discover_func() 263 goto retry; in discover_func() 275 goto retry; in discover_func() 294 retry: in discover_func()
|
/Zephyr-latest/drivers/wifi/simplelink/ |
D | Kconfig.simplelink | 40 The number of times, separated by a one second interval, to retry
|
/Zephyr-latest/include/zephyr/bluetooth/mesh/ |
D | blob_cli.h | 303 struct k_work_delayable retry; member
|
/Zephyr-latest/drivers/sdhc/ |
D | intel_emmc_host.c | 361 int32_t retry = time_out; in poll_cmd_complete() local 363 while (retry > 0) { in poll_cmd_complete() 371 retry--; in poll_cmd_complete() 577 int32_t retry = time_out; in wait_xfr_poll_complete() local 581 while (retry > 0) { in wait_xfr_poll_complete() 589 retry--; in wait_xfr_poll_complete()
|
/Zephyr-latest/subsys/net/lib/mqtt_sn/ |
D | Kconfig | 71 int "Number of times to retry messages"
|
/Zephyr-latest/drivers/gnss/ |
D | gnss_u_blox_m8.c | 292 uint8_t retry) in ubx_m8_ubx_cfg_prt_set() argument 310 data->script.retry_count = retry; in ubx_m8_ubx_cfg_prt_set() 408 int ret, retry = 2; in ubx_m8_configure_gnss_device_baudrate_prerequisite() local 429 ret = ubx_m8_ubx_cfg_prt_set(dev, target_baudrate, retry); in ubx_m8_configure_gnss_device_baudrate_prerequisite()
|