Home
last modified time | relevance | path

Searched refs:maxRetryTimes (Results 1 – 7 of 7) sorted by relevance

/ohos5.0/base/inputmethod/imf/common/src/
H A Dglobal.cpp34 bool BlockRetry(uint32_t interval, uint32_t maxRetryTimes, Function func) in BlockRetry() argument
45 } while (times < maxRetryTimes); in BlockRetry()
/ohos5.0/base/update/updateservice/interfaces/inner_api/modulemgr/src/
H A Dmodule_manager.cpp48 constexpr int32_t maxRetryTimes = 1; in LoadModule() local
63 if (retryInterval_ > 0 && retryTimes <= maxRetryTimes) { in LoadModule()
66 } while (retryTimes <= maxRetryTimes); in LoadModule()
/ohos5.0/foundation/ability/ability_lite/services/abilitymgr_lite/src/slite/
H A Dability_thread.cpp106 constexpr uint32_t maxRetryTimes = 5; in SendScheduleMsgToAbilityThread() local
109 while (retryTimes < maxRetryTimes) { in SendScheduleMsgToAbilityThread()
/ohos5.0/foundation/multimedia/av_codec/services/media_engine/plugins/source/http_source/download/
H A Ddownloader.h46 const static size_t maxRetryTimes {100};
63 while (fileContentLen == 0 && !isChunked && !isClosed && retryTimes < maxRetryTimes) { in GetFileContentLength()
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/
H A Dinstalld_client.h250 int32_t maxRetryTimes = 2; in CallService() local
252 for (int32_t retryTimes = 0; retryTimes < maxRetryTimes; retryTimes++) { in CallService()
/ohos5.0/base/inputmethod/imf/common/include/
H A Dglobal.h142 bool BlockRetry(uint32_t interval, uint32_t maxRetryTimes, Function func);
/ohos5.0/base/update/updateservice/frameworks/js/napi/update/src/
H A Dupdate_client.cpp86 constexpr int32_t maxRetryTimes = 5; // 回调注册失败最大尝试次数 in RegisterCallback() local
94 if (retryTimes++ < maxRetryTimes) { in RegisterCallback()
100 } while (retryTimes < maxRetryTimes); in RegisterCallback()