Searched refs:parentVnode (Results 1 – 8 of 8) sorted by relevance
| /kernel/liteos_a/fs/jffs2/src/ |
| D | vfs_jffs2.c | 187 int VfsJffs2Lookup(struct Vnode *parentVnode, const char *path, int len, struct Vnode **ppVnode) in VfsJffs2Lookup() argument 196 parentNode = (struct jffs2_inode *)parentVnode->data; in VfsJffs2Lookup() 203 (void)VfsHashGet(parentVnode->originMount, node->i_ino, &newVnode, NULL, NULL); in VfsJffs2Lookup() 208 newVnode->parent = parentVnode; in VfsJffs2Lookup() 222 newVnode->fop = parentVnode->fop; in VfsJffs2Lookup() 224 newVnode->parent = parentVnode; in VfsJffs2Lookup() 225 newVnode->originMount = parentVnode->originMount; in VfsJffs2Lookup() 238 int VfsJffs2Create(struct Vnode *parentVnode, const char *path, int mode, struct Vnode **ppVnode) in VfsJffs2Create() argument 250 …ret = jffs2_create((struct jffs2_inode *)parentVnode->data, (const unsigned char *)path, mode, &ne… in VfsJffs2Create() 258 newVnode->fop = parentVnode->fop; in VfsJffs2Create() [all …]
|
| /kernel/liteos_a/fs/vfs/ |
| D | path_cache.c | 75 pc->name, pc->parentVnode, pc->childVnode, pc->nameLen); in PathCacheDump() 135 pc->parentVnode = parent; in PathCacheAlloc() 170 if (pc->parentVnode == parent && pc->nameLen == len && !strncmp(pc->name, name, len)) { in PathCacheLookup()
|
| D | vnode.c | 679 int VnodeDevLookup(struct Vnode *parentVnode, const char *path, int len, struct Vnode **vnode) in VnodeDevLookup() argument 681 (void)parentVnode; in VnodeDevLookup()
|
| /kernel/liteos_a/fs/vfs/include/ |
| D | path_cache.h | 39 struct Vnode *parentVnode; /* vnode points to the cache */ member
|
| D | vnode.h | 161 …int (*Symlink)(struct Vnode *parentVnode, struct Vnode **newVnode, const char *path, const char *t…
|
| /kernel/liteos_a/fs/vfs/operation/ |
| D | vfs_force_umount.c | 192 static int ErrorVopSymlink(struct Vnode *parentVnode, struct Vnode **newVnode, const char *path, co… in ErrorVopSymlink() argument 194 (void)parentVnode; in ErrorVopSymlink()
|
| /kernel/liteos_a/fs/proc/os_adapt/ |
| D | fs_cache_proc.c | 94 pc->parentVnode, pc->childVnode, pc->hit, pc->name); in PathCacheListProcess()
|
| /kernel/liteos_a/fs/fat/os_adapt/ |
| D | fatfs.c | 2162 int fatfs_symlink(struct Vnode *parentVnode, struct Vnode **newVnode, const char *path, const char … in fatfs_symlink() argument 2164 return fatfs_create_obj(parentVnode, path, 0, newVnode, AM_LNK, target); in fatfs_symlink()
|