Home
last modified time | relevance | path

Searched refs:iterInternal (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/foundation/ability/ability_runtime/interfaces/inner_api/quick_fix/src/
H A Dquick_fix_error_utils.cpp86 auto iterInternal = INTERNAL_ERR_CODE_MAP.find(errCode); in GetErrorCode() local
87 if (iterInternal != INTERNAL_ERR_CODE_MAP.end()) { in GetErrorCode()
88 return iterInternal->second; in GetErrorCode()
105 auto iterInternal = INTERNAL_ERR_MSG_MAP.find(errCode); in GetErrorMessage() local
106 if (iterInternal != INTERNAL_ERR_MSG_MAP.end()) { in GetErrorMessage()
107 errMsg += " " + iterInternal->second; in GetErrorMessage()
/ohos5.0/foundation/ability/form_fwk/interfaces/kits/native/src/
H A Dform_errors.cpp138 auto iterInternal = ERR_MSG_MAP_INTERNAL.find(internalErrorCode); in QueryExternalErrorMessage() local
139 if (iterInternal == ERR_MSG_MAP_INTERNAL.end() || iterInternal->second.empty()) { in QueryExternalErrorMessage()
142 errorMessage += " " + iterInternal->second; in QueryExternalErrorMessage()