Lines Matching refs:normalizedPath
401 char *normalizedPath = NULL;
405 normalizedPath = strdup(path);
406 if (normalizedPath == NULL) {
412 ret = PreProcess(path, &startVnode, &normalizedPath);
419 if (normalizedPath[1] == '\0' && normalizedPath[0] == '/') {
421 free(normalizedPath);
425 char *currentDir = normalizedPath;
434 currentVnode->filePath = normalizedPath;
436 free(normalizedPath);
449 vnodePathLen = currentDir - normalizedPath;
455 ret = strncpy_s(vnodePath, vnodePathLen + 1, normalizedPath, vnodePathLen);
467 if (normalizedPath) {
468 free(normalizedPath);