Searched refs:tempTextLen (Results 1 – 1 of 1) sorted by relevance
315 int tempTextLen = 0; in GsmUtf8ToAuto() local318 tempTextLen = (srcLength > maxLength) ? maxLength : srcLength; in GsmUtf8ToAuto()319 if (memcpy_s(dest, tempTextLen, src, tempTextLen) != EOK) { in GsmUtf8ToAuto()322 return tempTextLen; in GsmUtf8ToAuto()331 tempTextLen = (ucs2Length > maxLength) ? maxLength : ucs2Length; in GsmUtf8ToAuto()332 if (memcpy_s(dest, tempTextLen, pUcs2Text, tempTextLen) != EOK) { in GsmUtf8ToAuto()335 return tempTextLen; in GsmUtf8ToAuto()359 int tempTextLen = 0; in CdmaUtf8ToAuto() local362 tempTextLen = (srcLength > maxLength) ? maxLength : srcLength; in CdmaUtf8ToAuto()363 if (memcpy_s(dest, tempTextLen, src, tempTextLen) != EOK) { in CdmaUtf8ToAuto()[all …]