Home
last modified time | relevance | path

Searched refs:msgText (Results 1 – 6 of 6) sorted by relevance

/base/telephony/sms_mms/services/include/gsm/
Dgsm_sms_message.h94 const std::string &msgText, bool &bAbnormal, MSG_LANGUAGE_ID_T &langId);
/base/telephony/sms_mms/services/cdma/
Dcdma_sms_message.cpp544 const std::string &msgText, bool &bAbnormal, MSG_LANGUAGE_ID_T &langId) in DecodeMessage() argument
547 int dataLen = static_cast<int>(msgText.length()); in DecodeMessage()
549 const unsigned char *pMsgText = reinterpret_cast<const unsigned char *>(msgText.c_str()); in DecodeMessage()
556 if (msgText.empty()) { in DecodeMessage()
/base/telephony/sms_mms/services/include/cdma/
Dcdma_sms_message.h81 const std::string &msgText, bool &bAbnormal, MSG_LANGUAGE_ID_T &langId);
/base/telephony/sms_mms/services/include/
Dsms_base_message.h144 const std::string &msgText, bool &bAbnormal, MSG_LANGUAGE_ID_T &langId) = 0;
/base/telephony/sms_mms/services/gsm/
Dgsm_sms_message.cpp659 const std::string &msgText, bool &bAbnormal, MSG_LANGUAGE_ID_T &langId) in DecodeMessage() argument
662 int dataLen = static_cast<int>(msgText.length()); in DecodeMessage()
664 const unsigned char *pMsgText = reinterpret_cast<const unsigned char *>(msgText.c_str()); in DecodeMessage()
671 if (msgText.empty()) { in DecodeMessage()
/base/telephony/sms_mms/services/
Dsms_base_message.cpp395 std::string msgText(text); in SplitMessage() local
406 … encodeLen = DecodeMessage(decodeData, sizeof(decodeData), codingType, msgText, bAbnormal, langId); in SplitMessage()