Home
last modified time | relevance | path

Searched refs:exfat_inode (Results 1 – 3 of 3) sorted by relevance

/third_party/exfat-utils/fsck/
Dfsck.h12 struct exfat_inode { struct
13 struct exfat_inode *parent; argument
38 struct exfat_inode *parent; argument
66 struct exfat_inode *root;
85 int get_next_clus(struct exfat *exfat, struct exfat_inode *node,
90 struct exfat_inode *dir);
Dfsck.c63 struct exfat_inode *ancestors[255];
107 static struct exfat_inode *alloc_exfat_inode(__u16 attr) in alloc_exfat_inode()
109 struct exfat_inode *node; in alloc_exfat_inode()
112 size = offsetof(struct exfat_inode, name) + NAME_BUFFER_SIZE; in alloc_exfat_inode()
113 node = (struct exfat_inode *)calloc(1, size); in alloc_exfat_inode()
133 static void free_exfat_inode(struct exfat_inode *node) in free_exfat_inode()
138 static void inode_free_children(struct exfat_inode *dir, bool file_only) in inode_free_children()
140 struct exfat_inode *node, *i; in inode_free_children()
156 static void inode_free_file_children(struct exfat_inode *dir) in inode_free_file_children()
164 static void inode_free_ancestors(struct exfat_inode *child) in inode_free_ancestors()
[all …]
Dde_iter.c122 struct exfat_inode *next_inode; in read_ahead_next_dir_blocks()
129 if (iter->parent == list_entry(current, struct exfat_inode, list) && in read_ahead_next_dir_blocks()
131 next_inode = list_entry(current->next, struct exfat_inode, in read_ahead_next_dir_blocks()
203 struct exfat_inode *dir) in exfat_de_iter_init()