Searched refs:tempTextLen (Results 1 – 1 of 1) sorted by relevance
/ohos5.0/base/telephony/sms_mms/utils/ |
H A D | text_coder.cpp | 315 int tempTextLen = 0; in GsmUtf8ToAuto() local 318 tempTextLen = (srcLength > maxLength) ? maxLength : srcLength; in GsmUtf8ToAuto() 319 if (memcpy_s(dest, tempTextLen, src, tempTextLen) != EOK) { in GsmUtf8ToAuto() 322 return tempTextLen; in GsmUtf8ToAuto() 333 if (memcpy_s(dest, tempTextLen, pUcs2Text, tempTextLen) != EOK) { in GsmUtf8ToAuto() 336 return tempTextLen; in GsmUtf8ToAuto() 361 int tempTextLen = 0; in CdmaUtf8ToAuto() local 365 if (memcpy_s(dest, tempTextLen, src, tempTextLen) != EOK) { in CdmaUtf8ToAuto() 368 return tempTextLen; in CdmaUtf8ToAuto() 378 if (memcpy_s(dest, tempTextLen, pUcs2Text, tempTextLen) != EOK) { in CdmaUtf8ToAuto() [all …]
|