Lines Matching defs:path
286 static int PreProcess(const char *originPath, struct Vnode **startVnode, char **path)
294 *path = absolutePath;
395 int VnodeLookupAt(const char *path, struct Vnode **result, uint32_t flags, struct Vnode *orgVnode)
405 normalizedPath = strdup(path);
412 ret = PreProcess(path, &startVnode, &normalizedPath);
414 PRINT_ERR("[VFS]lookup failed, invalid path err = %d\n", ret);
473 int VnodeLookup(const char *path, struct Vnode **vnode, uint32_t flags)
475 return VnodeLookupAt(path, vnode, flags, NULL);
612 /* The 'name' here is not full path, but for device we don't depend on this path, it's just a name for DFx.
679 int VnodeDevLookup(struct Vnode *parentVnode, const char *path, int len, struct Vnode **vnode)
682 (void)path;