Searched refs:TYPE_DIR (Results 1 – 8 of 8) sorted by relevance
/openbmc/u-boot/fs/fat/ |
H A D | fat.c | 919 #define TYPE_DIR 0x2 macro 920 #define TYPE_ANY (TYPE_FILE | TYPE_DIR) 947 if (!(type & TYPE_DIR)) in fat_itr_resolve() 969 if (type & TYPE_DIR) in fat_itr_resolve() 1117 if (!fat_itr_resolve(itr, filename, TYPE_DIR)) { in fat_size() 1213 ret = fat_itr_resolve(&dir->itr, filename, TYPE_DIR); in fat_opendir()
|
H A D | fat_write.c | 1092 ret = fat_itr_resolve(itr, parent, TYPE_DIR); in file_fat_write_at() 1295 ret = fat_itr_resolve(itr, dirname, TYPE_DIR); in fat_unlink() 1373 ret = fat_itr_resolve(itr, parent, TYPE_DIR); in fat_mkdir()
|
/openbmc/linux/fs/exfat/ |
H A D | dir.c | 82 if (ei->type != TYPE_DIR) in exfat_readdir() 131 if (type != TYPE_FILE && type != TYPE_DIR) { in exfat_readdir() 363 return TYPE_DIR; in exfat_get_entry_type() 411 } else if (type == TYPE_DIR) { in exfat_set_entry_type() 794 if (type != TYPE_FILE && type != TYPE_DIR) in exfat_validate_entry() 1048 if (entry_type == TYPE_FILE || entry_type == TYPE_DIR) { in exfat_find_dir_entry() 1235 if (entry_type != TYPE_DIR) in exfat_count_dir_entries()
|
H A D | namei.c | 521 if (type == TYPE_DIR) { in exfat_add_entry() 692 if (info->type == TYPE_DIR) { in exfat_find() 859 err = exfat_add_entry(dir, dentry->d_name.name, &cdir, TYPE_DIR, in exfat_mkdir() 917 if (type != TYPE_FILE && type != TYPE_DIR) in exfat_check_dir_empty() 1220 if (new_entry_type == TYPE_DIR) { in __exfat_rename() 1272 if (new_entry_type == TYPE_DIR && in __exfat_rename()
|
H A D | file.c | 106 if (ei->type != TYPE_FILE && ei->type != TYPE_DIR) in __exfat_truncate()
|
H A D | exfat_fs.h | 63 #define TYPE_DIR 0x0104 macro
|
H A D | inode.c | 28 bool is_dir = (ei->type == TYPE_DIR) ? true : false; in __exfat_write_inode()
|
H A D | super.c | 342 ei->type = TYPE_DIR; in exfat_read_root()
|