Home
last modified time | relevance | path

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

/ohos5.0/base/telephony/cellular_call/services/common/src/
H A Dmmi_code_message.cpp64 char tempMessage[MAX_MESSAGE_NUMBER] = {0}; in MakeCallTransferMessageEx() local
69 … if (sprintf_s(tempMessage, sizeof(tempMessage), CF_FORWARDED_TIME.c_str(), className.c_str(), in MakeCallTransferMessageEx()
71 resultMessage.append(tempMessage); in MakeCallTransferMessageEx()
74 if (sprintf_s(tempMessage, sizeof(tempMessage), CF_FORWARDED.c_str(), className.c_str(), in MakeCallTransferMessageEx()
76 resultMessage.append(tempMessage); in MakeCallTransferMessageEx()
80 …if (sprintf_s(tempMessage, sizeof(tempMessage), CF_NOT_FORWARDED.c_str(), className.c_str()) != -1… in MakeCallTransferMessageEx()
81 resultMessage.append(tempMessage); in MakeCallTransferMessageEx()
/ohos5.0/foundation/multimedia/av_session/frameworks/js/napi/session/src/
H A Dnapi_avsession.cpp243 std::string tempMessage = message; in ThrowErrorAndReturn() local
244 NapiUtils::ThrowError(env, tempMessage.c_str(), NapiAVSessionManager::errcode_[errCode]); in ThrowErrorAndReturn()
250 std::string tempMessage = message; in ThrowErrorAndReturnByErrCode() local
252 tempMessage.append(" failed : native session not exist"); in ThrowErrorAndReturnByErrCode()
254 tempMessage.append(" failed : native invalid parameters"); in ThrowErrorAndReturnByErrCode()
256 tempMessage.append(" failed : native no permission"); in ThrowErrorAndReturnByErrCode()
258 tempMessage.append(" failed : native server exception"); in ThrowErrorAndReturnByErrCode()
260 SLOGI("throw error message: %{public}s", tempMessage.c_str()); in ThrowErrorAndReturnByErrCode()
261 NapiUtils::ThrowError(env, tempMessage.c_str(), NapiAVSessionManager::errcode_[errCode]); in ThrowErrorAndReturnByErrCode()