Home
last modified time | relevance | path

Searched refs:retry_count (Results 1 – 13 of 13) sorted by relevance

/hardware/st/secure_element/ese-spi-driver/
DStEseApi.cc154 int retry_count = 0; in StEse_Transceive() local
183 if ((rc == -2) && (retry_count < 3)) { in StEse_Transceive()
184 retry_count++; in StEse_Transceive()
186 " = %d\n", __FUNCTION__, retry_count); in StEse_Transceive()
193 retry_count = 0; in StEse_Transceive()
198 retry_count = 0; in StEse_Transceive()
207 if ((rc == -2) && (retry_count < 3)) { in StEse_Transceive()
208 retry_count++; in StEse_Transceive()
210 __FUNCTION__, retry_count); in StEse_Transceive()
220 retry_count = 0; in StEse_Transceive()
/hardware/interfaces/wifi/aidl/vts/functional/
Dwifi_aidl_test_utils.cpp103 int retry_count = 0; in getWifiChip() local
105 while (retry_count < max_retries && !status.isOk()) { in getWifiChip()
106 retry_count++; in getWifiChip()
/hardware/interfaces/wifi/1.0/vts/functional/
Dwifi_hidl_test_utils.cpp121 uint32_t retry_count = 0; in getWifiChip() local
123 while (retry_count < kHalStartRetryMaxCount && in getWifiChip()
125 retry_count++; in getWifiChip()
/hardware/google/pixel/fastboot/
DFastboot.cpp214 const uint8_t retry_count = 5; in doOemSpecificErase() local
216 for (uint8_t i = 0; i < retry_count; i++) { in doOemSpecificErase()
DFastboot_aidl.cpp233 const uint8_t retry_count = 5; in doOemSpecificErase() local
235 for (uint8_t i = 0; i < retry_count; i++) { in doOemSpecificErase()
/hardware/qcom/sm7250/display/hdmi_cec/
Dqhdmi_cec.cpp246 int retry_count = 0; in cec_send_message() local
251 retry_count++; in cec_send_message()
252 if (err == -EAGAIN && retry_count <= MAX_SEND_MESSAGE_RETRIES) { in cec_send_message()
/hardware/qcom/display/msm8998/hdmi_cec/
Dqhdmi_cec.cpp250 int retry_count = 0; in cec_send_message() local
255 retry_count++; in cec_send_message()
256 if (err == -EAGAIN && retry_count <= MAX_SEND_MESSAGE_RETRIES) { in cec_send_message()
/hardware/qcom/display/msm8996/hdmi_cec/
Dqhdmi_cec.cpp246 int retry_count = 0; in cec_send_message() local
251 retry_count++; in cec_send_message()
252 if (err == -EAGAIN && retry_count <= MAX_SEND_MESSAGE_RETRIES) { in cec_send_message()
/hardware/qcom/sm8150/display/hdmi_cec/
Dqhdmi_cec.cpp246 int retry_count = 0; in cec_send_message() local
251 retry_count++; in cec_send_message()
252 if (err == -EAGAIN && retry_count <= MAX_SEND_MESSAGE_RETRIES) { in cec_send_message()
/hardware/qcom/display/msm8909w_3100/hdmi_cec/
Dqhdmi_cec.cpp257 int retry_count = 0; in cec_send_message() local
262 retry_count++; in cec_send_message()
263 if (err == -EAGAIN && retry_count <= MAX_SEND_MESSAGE_RETRIES) { in cec_send_message()
/hardware/qcom/display/msm8909/hdmi_cec/
Dqhdmi_cec.cpp257 int retry_count = 0; in cec_send_message() local
262 retry_count++; in cec_send_message()
263 if (err == -EAGAIN && retry_count <= MAX_SEND_MESSAGE_RETRIES) { in cec_send_message()
/hardware/google/graphics/common/libhwc2.1/libresource/
DExynosResourceManager.cpp554 int retry_count = 0; in assignResourceInternal() local
576 HDEBUGLOGD(eDebugResourceAssigning, "%s:: retry_count(%d)", __func__, retry_count); in assignResourceInternal()
587 retry_count++; in assignResourceInternal()
598 retry_count++; in assignResourceInternal()
645 retry_count++; in assignResourceInternal()
646 } while((ret == EXYNOS_ERROR_CHANGED) && (retry_count < ASSIGN_RESOURCE_TRY_COUNT)); in assignResourceInternal()
648 if (retry_count == ASSIGN_RESOURCE_TRY_COUNT) { in assignResourceInternal()
/hardware/qcom/sm7250/display/composer/
Dhwc_display_builtin.cpp131 int retry_count = 0; in WritePanelGammaTableToDriver() local
134 if ((len == -1 && errno != EINTR && errno != EAGAIN) || (++retry_count > max_retries)) { in WritePanelGammaTableToDriver()
135 DLOGE("Failed to write gamma calibration(retry %d), error = %s", retry_count, in WritePanelGammaTableToDriver()