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