Lines Matching refs:Vnode
119 int fatfs_lookup(struct Vnode *parent, const char *name, int len, struct Vnode **vpp);
120 int fatfs_create(struct Vnode *parent, const char *name, int mode, struct Vnode **vpp);
128 int fatfs_truncate64(struct Vnode *vnode, off64_t len);
129 int fatfs_truncate(struct Vnode *vnode, off_t len);
130 int fatfs_mount(struct Mount *mount, struct Vnode *device, const void *data);
131 int fatfs_umount(struct Mount *mount, struct Vnode **device);
133 int fatfs_stat(struct Vnode *vnode, struct stat *buff);
134 int fatfs_chattr(struct Vnode *vnode, struct IATTR *attr);
135 int fatfs_opendir(struct Vnode *vnode, struct fs_dirent_s *idir);
136 int fatfs_readdir(struct Vnode *vnode, struct fs_dirent_s *idir);
137 int fatfs_rewinddir(struct Vnode *vnode, struct fs_dirent_s *dir);
138 int fatfs_closedir(struct Vnode *vnode, struct fs_dirent_s *dir);
139 int fatfs_rename(struct Vnode *oldvnode, struct Vnode *newparent, const char *oldname, const char *newname);
140 int fatfs_mkfs(struct Vnode *device, int sectors, int option);
141 int fatfs_mkdir(struct Vnode *parent, const char *name, mode_t mode, struct Vnode **vpp);
142 int fatfs_rmdir(struct Vnode *parent, struct Vnode *vp, const char *name);
143 int fatfs_unlink(struct Vnode *parent, struct Vnode *vp, const char *name);
145 int fatfs_fscheck(struct Vnode* vnode, struct fs_dirent_s *dir);