Searched defs:ef (Results 1 – 8 of 8) sorted by relevance
| /fs/exfat/ |
| A D | cluster.c | 31 static off_t s2o(const struct exfat* ef, off_t sector) in s2o() 39 static off_t c2s(const struct exfat* ef, cluster_t cluster) in c2s() 50 off_t exfat_c2o(const struct exfat* ef, cluster_t cluster) in exfat_c2o() 58 static cluster_t s2c(const struct exfat* ef, off_t sector) in s2c() 73 cluster_t exfat_next_cluster(const struct exfat* ef, in exfat_next_cluster() 92 cluster_t exfat_advance_cluster(const struct exfat* ef, in exfat_advance_cluster() 152 int exfat_flush_nodes(struct exfat* ef) in exfat_flush_nodes() 157 int exfat_flush(struct exfat* ef) in exfat_flush() 215 static void free_cluster(struct exfat* ef, cluster_t cluster) in free_cluster() 445 uint32_t exfat_count_free_clusters(const struct exfat* ef) in exfat_count_free_clusters() [all …]
|
| A D | mount.c | 33 static uint64_t rootdir_size(const struct exfat* ef) in rootdir_size() 84 static void parse_options(struct exfat* ef, const char* options) in parse_options() 111 static bool verify_vbr_checksum(const struct exfat* ef, void* sector) in verify_vbr_checksum() 149 static int commit_super_block(const struct exfat* ef) in commit_super_block() 159 int exfat_soil_super_block(const struct exfat* ef) in exfat_soil_super_block() 169 static void exfat_free(struct exfat* ef) in exfat_free() 185 int exfat_mount(struct exfat* ef, const char* spec, const char* options) in exfat_mount() 350 static void finalize_super_block(struct exfat* ef) in finalize_super_block() 372 void exfat_unmount(struct exfat* ef) in exfat_unmount()
|
| A D | node.c | 38 void exfat_put_node(struct exfat* ef, struct exfat_node* node) in exfat_put_node() 62 int exfat_cleanup_node(struct exfat* ef, struct exfat_node* node) in exfat_cleanup_node() 623 void exfat_reset_cache(struct exfat* ef) in exfat_reset_cache() 757 static int delete(struct exfat* ef, struct exfat_node* node) in delete() 785 int exfat_unlink(struct exfat* ef, struct exfat_node* node) in exfat_unlink() 792 int exfat_rmdir(struct exfat* ef, struct exfat_node* node) in exfat_rmdir() 990 int exfat_mknod(struct exfat* ef, const char* path) in exfat_mknod() 995 int exfat_mkdir(struct exfat* ef, const char* path) in exfat_mkdir() 1192 const char* exfat_get_label(struct exfat* ef) in exfat_get_label() 1197 static int find_label(struct exfat* ef, off_t* offset) in find_label() [all …]
|
| A D | lookup.c | 28 int exfat_opendir(struct exfat* ef, struct exfat_node* dir, in exfat_opendir() 42 void exfat_closedir(struct exfat* ef, struct exfat_iterator* it) in exfat_closedir() 62 static int compare_char(struct exfat* ef, uint16_t a, uint16_t b) in compare_char() 67 static int compare_name(struct exfat* ef, const le16_t* a, const le16_t* b) in compare_name() 80 static int lookup_name(struct exfat* ef, struct exfat_node* parent, in lookup_name() 121 int exfat_lookup(struct exfat* ef, struct exfat_node** node, in exfat_lookup() 176 int exfat_split(struct exfat* ef, struct exfat_node** parent, in exfat_split()
|
| A D | repair.c | 30 bool exfat_ask_to_fix(const struct exfat* ef) in exfat_ask_to_fix() 76 bool exfat_fix_invalid_vbr_checksum(const struct exfat* ef, void* sector, in exfat_fix_invalid_vbr_checksum() 93 bool exfat_fix_invalid_node_checksum(UNUSED const struct exfat* ef, in exfat_fix_invalid_node_checksum() 103 bool exfat_fix_unknown_entry(struct exfat* ef, struct exfat_node* dir, in exfat_fix_unknown_entry()
|
| A D | utils.c | 28 void exfat_stat(const struct exfat* ef, const struct exfat_node* node, in exfat_stat() 118 le16_t exfat_calc_name_hash(const struct exfat* ef, const le16_t* name, in exfat_calc_name_hash()
|
| A D | io.c | 55 struct exfat ef; member 479 ssize_t exfat_generic_pread(const struct exfat* ef, struct exfat_node* node, in exfat_generic_pread() 540 ssize_t exfat_generic_pwrite(struct exfat* ef, struct exfat_node* node, in exfat_generic_pwrite() 701 int exfat_lookup_realpath(struct exfat* ef, struct exfat_node** node, in exfat_lookup_realpath()
|
| A D | exfat.h | 71 #define EXFAT_REPAIR(hook, ef, ...) \ argument
|
Completed in 659 milliseconds