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