Home
last modified time | relevance | path

Searched refs:tempLen (Results 1 – 4 of 4) sorted by relevance

/base/telephony/sms_mms/services/cdma/
Dcdma_sms_pdu_codec.cpp663 int tempLen = 0; in DecodeCBMsg() local
675 tempLen = pduStr[++offset]; in DecodeCBMsg()
679 DecodeCBBearerData(pduStr + offset, tempLen, cbMsg.telesvcMsg, true); in DecodeCBMsg()
681 DecodeCBBearerData(pduStr + offset, tempLen, cbMsg.telesvcMsg, false); in DecodeCBMsg()
683 offset += (tempLen + 1); in DecodeCBMsg()
759 int tempLen; in DecodeP2PDeliverMsg() local
775 tempLen = pduStr[offset - 1]; in DecodeP2PDeliverMsg()
776 if (tempLen > pduLen + 1) { in DecodeP2PDeliverMsg()
777 … TELEPHONY_LOGE("length err tempLen:%{public}d, pduLen:%{public}d.", tempLen, pduLen); in DecodeP2PDeliverMsg()
785 if (memcpy_s(tempStr, sizeof(tempStr), pduStr + offset, tempLen) == EOK) { in DecodeP2PDeliverMsg()
[all …]
/base/update/updater/services/package/pkg_verify/
Dzip_pkg_parse.cpp161 uint16_t tempLen = ReadLE16(zipSignCommentAddr); in CheckZipEocd() local
162 if (signCommentTotalLen != tempLen) { in CheckZipEocd()
163 …PKG_LOGE("compare sign comment length: eocd[0x%04X], footer[0x%04X] error", tempLen, signCommentTo… in CheckZipEocd()
/base/telephony/sms_mms/frameworks/native/mms/src/
Dmms_body_part.cpp211 uint32_t tempLen = encodebuffer.length(); in DecodePartBody() local
212 pbodyPartBuffer_ = std::make_unique<char[]>(tempLen); in DecodePartBody()
217 if (memcpy_s(pbodyPartBuffer_.get(), tempLen, encodebuffer.data(), tempLen) != EOK) { in DecodePartBody()
221 bodyLen_ = tempLen; in DecodePartBody()
Dmms_header.cpp635 uint32_t tempLen = 0; in DecodeFieldTextStringValue() local
636 if (!buff.DecodeText(tempString, tempLen)) { in DecodeFieldTextStringValue()
641 len = (int32_t)tempLen; in DecodeFieldTextStringValue()