Lines Matching refs:newStr
202 char* newStr = strdup(str); in dvmDotToSlash() local
203 char* cp = newStr; in dvmDotToSlash()
205 if (newStr == NULL) in dvmDotToSlash()
218 return newStr; in dvmDotToSlash()
326 char* newStr; in dvmDescriptorToDot() local
333 newStr = (char*)malloc(at + 1); /* Add one for the '\0'. */ in dvmDescriptorToDot()
334 if (newStr == NULL) in dvmDescriptorToDot()
337 newStr[at] = '\0'; in dvmDescriptorToDot()
341 newStr[at] = (str[at] == '/') ? '.' : str[at]; in dvmDescriptorToDot()
344 return newStr; in dvmDescriptorToDot()
359 char* newStr; in dvmDotToDescriptor() local
367 newStr = at = (char*)malloc(length + 1); /* + 1 for the '\0' */ in dvmDotToDescriptor()
369 if (newStr == NULL) { in dvmDotToDescriptor()
390 return newStr; in dvmDotToDescriptor()
402 char* newStr = (char*)malloc(length); in dvmDescriptorToName() local
404 if (newStr == NULL) { in dvmDescriptorToName()
408 strlcpy(newStr, str + 1, length); in dvmDescriptorToName()
409 return newStr; in dvmDescriptorToName()