Home
last modified time | relevance | path

Searched refs:newVnode (Results 1 - 5 of 5) sorted by relevance

/kernel/liteos_a/fs/jffs2/src/
H A Dvfs_jffs2.c190 struct Vnode *newVnode = NULL; in VfsJffs2Lookup() local
203 (void)VfsHashGet(parentVnode->originMount, node->i_ino, &newVnode, NULL, NULL); in VfsJffs2Lookup()
204 if (newVnode) { in VfsJffs2Lookup()
205 if (newVnode->data == NULL) { in VfsJffs2Lookup()
208 newVnode->parent = parentVnode; in VfsJffs2Lookup()
209 *ppVnode = newVnode; in VfsJffs2Lookup()
213 ret = VnodeAlloc(&g_jffs2Vops, &newVnode); in VfsJffs2Lookup()
221 Jffs2SetVtype(node, newVnode); in VfsJffs2Lookup()
222 newVnode->fop = parentVnode->fop; in VfsJffs2Lookup()
223 newVnode in VfsJffs2Lookup()
242 struct Vnode *newVnode = NULL; VfsJffs2Create() local
587 struct Vnode *newVnode = NULL; VfsJffs2Mkdir() local
693 VfsJffs2Link(struct Vnode *oldVnode, struct Vnode *newParentVnode, struct Vnode **newVnode, const char *newName) VfsJffs2Link() argument
729 VfsJffs2Symlink(struct Vnode *parentVnode, struct Vnode **newVnode, const char *path, const char *target) VfsJffs2Symlink() argument
[all...]
/kernel/liteos_a/fs/vfs/
H A Dvnode.c134 int VnodeAlloc(struct VnodeOps *vop, struct Vnode **newVnode) in VnodeAlloc() argument
150 *newVnode = NULL; in VnodeAlloc()
175 *newVnode = vnode; in VnodeAlloc()
596 struct Vnode *newVnode = NULL; in VnodeCreate() local
598 ret = VnodeAlloc(NULL, &newVnode); in VnodeCreate()
603 newVnode->type = VNODE_TYPE_CHR; in VnodeCreate()
604 newVnode->vop = parent->vop; in VnodeCreate()
605 newVnode->fop = parent->fop; in VnodeCreate()
606 newVnode->data = NULL; in VnodeCreate()
607 newVnode in VnodeCreate()
[all...]
/kernel/liteos_a/fs/vfs/include/
H A Dvnode.h161 int (*Symlink)(struct Vnode *parentVnode, struct Vnode **newVnode, const char *path, const char *target);
169 int VnodeAlloc(struct VnodeOps *vop, struct Vnode **newVnode);
/kernel/liteos_a/fs/vfs/operation/
H A Dvfs_force_umount.c192 static int ErrorVopSymlink(struct Vnode *parentVnode, struct Vnode **newVnode, const char *path, const char *target) in ErrorVopSymlink() argument
195 (void)newVnode; in ErrorVopSymlink()
/kernel/liteos_a/fs/fat/os_adapt/
H A Dfatfs.c2162 int fatfs_symlink(struct Vnode *parentVnode, struct Vnode **newVnode, const char *path, const char *target) in fatfs_symlink() argument
2164 return fatfs_create_obj(parentVnode, path, 0, newVnode, AM_LNK, target); in fatfs_symlink()

Completed in 7 milliseconds