Lines Matching refs:vfs_index_node_t

20 static int vfat_find(struct vfs_index_node_t *dir, const char *name, struct fat32_slot_info *slot_i…
21 static int __fat32_search_long_short(struct vfs_index_node_t *parent_inode, const char *name, int n…
23 static int fat32_detach_inode(struct vfs_index_node_t *inode);
56 static int __fat32_search_long_short(struct vfs_index_node_t *parent_inode, const char *name, int n… in __fat32_search_long_short()
316 struct vfs_dir_entry_t *fat32_lookup(struct vfs_index_node_t *parent_inode, struct vfs_dir_entry_t … in fat32_lookup()
329 struct vfs_index_node_t *p = vfs_alloc_inode(); in fat32_lookup()
480 void fat32_write_inode(struct vfs_index_node_t *inode) in fat32_write_inode()
536 long fat32_iput(struct vfs_dir_entry_t *dEntry, struct vfs_index_node_t *inode) in fat32_iput()
553 long fat32_open(struct vfs_index_node_t *inode, struct vfs_file_t *file_ptr) in fat32_open()
559 long fat32_close(struct vfs_index_node_t *inode, struct vfs_file_t *file_ptr) in fat32_close()
795 struct vfs_index_node_t *inode = file_ptr->dEntry->dir_inode; in fat32_lseek()
823 long fat32_ioctl(struct vfs_index_node_t *inode, struct vfs_file_t *file_ptr, uint64_t cmd, uint64_… in fat32_ioctl()
848 long fat32_create(struct vfs_index_node_t *parent_inode, struct vfs_dir_entry_t *dest_dEntry, int m… in fat32_create()
866 struct vfs_index_node_t *inode = vfs_alloc_inode(); in fat32_create()
950 int64_t fat32_mkdir(struct vfs_index_node_t *parent_inode, struct vfs_dir_entry_t *dEntry, int mode) in fat32_mkdir()
980 struct vfs_index_node_t *inode = vfs_alloc_inode(); in fat32_mkdir()
1078 int64_t fat32_rmdir(struct vfs_index_node_t *inode, struct vfs_dir_entry_t *dEntry) in fat32_rmdir()
1084 int64_t fat32_rename(struct vfs_index_node_t *old_inode, struct vfs_dir_entry_t *old_dEntry, in fat32_rename()
1085 struct vfs_index_node_t *new_inode, struct vfs_dir_entry_t *new_dEntry) in fat32_rename()
1108 static int fat32_detach_inode(struct vfs_index_node_t *inode) in fat32_detach_inode()
1121 int64_t fat32_unlink(struct vfs_index_node_t *dir, struct vfs_dir_entry_t *dentry) in fat32_unlink()
1125 struct vfs_index_node_t *inode_to_remove = dentry->dir_inode; in fat32_unlink()
1377 static int fat_search_long(struct vfs_index_node_t *dir, const char *name, int len, struct fat32_sl… in fat_search_long()
1391 static int vfat_find(struct vfs_index_node_t *dir, const char *name, struct fat32_slot_info *slot_i… in vfat_find()