Lines Matching refs:strLen
120 size_t strLen = strlen(src) + 1; in SetStandardSrc() local
121 char* imagePath = static_cast<char*>(UIMalloc(static_cast<uint32_t>(strLen))); in SetStandardSrc()
126 if (strcpy_s(imagePath, strLen, src) != EOK) { in SetStandardSrc()
149 size_t strLen = strlen(src) + strlen(suffixName) + 1; in SetLiteSrc() local
150 char* imagePath = static_cast<char*>(UIMalloc(static_cast<uint32_t>(strLen))); in SetLiteSrc()
155 if (memcpy_s(imagePath, strLen, src, strLen) != EOK) { in SetLiteSrc()
160 if (strcat_s(imagePath, strLen, suffixName) != EOK) { // The format is xxx.xxx.bin in SetLiteSrc()
166 if (memcpy_s(imagePath, strLen, src, strLen) != EOK) { in SetLiteSrc()
172 if (strcat_s(imagePath, strLen, suffixName) != EOK) { // The format is xxx.bin in SetLiteSrc()
179 if (memcpy_s(imagePath, strLen, src, strLen) != EOK) { in SetLiteSrc()
244 size_t strLen = strlen(src) + 1; in PreParse() local
245 char* path = static_cast<char*>(UIMalloc(static_cast<uint32_t>(strLen))); in PreParse()
246 if (strcpy_s(path, strLen, src) != EOK) { in PreParse()