Home
last modified time | relevance | path

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

/drivers/staging/exfat/
Dexfat_core.c926 return TYPE_DIR; in fat_get_entry_type()
950 return TYPE_DIR; in exfat_get_entry_type()
989 else if (type == TYPE_DIR) in fat_set_entry_type()
1017 } else if (type == TYPE_DIR) { in exfat_set_entry_type()
1731 && (entry_type != TYPE_DIR)) in get_entry_set_in_dir()
1766 if ((entry_type == TYPE_FILE) || (entry_type == TYPE_DIR)) in get_entry_set_in_dir()
2188 if ((entry_type == TYPE_FILE) || (entry_type == TYPE_DIR)) { in fat_find_dir_entry()
2312 if ((entry_type == TYPE_FILE) || (entry_type == TYPE_DIR)) { in exfat_find_dir_entry()
2528 if ((type != TYPE_FILE) && (type != TYPE_DIR)) in is_dir_empty()
2781 if ((type != TYPE_FILE) && (type != TYPE_DIR)) in fat_generate_dos_name()
[all …]
Dexfat_super.c591 fid->type = TYPE_DIR; in ffsLookupFile()
1288 if (entry_type == TYPE_DIR) { in ffsMoveFile()
1418 u8 is_dir = (fid->type == TYPE_DIR) ? 1 : 0;
1458 ((type == TYPE_DIR) && (!(attr & ATTR_SUBDIR)))) {
1510 u8 is_dir = (fid->type == TYPE_DIR) ? 1 : 0; in ffsReadStat()
1542 count = count_dos_name_entries(sb, &dir, TYPE_DIR); in ffsReadStat()
1631 count = count_dos_name_entries(sb, &dir, TYPE_DIR); in ffsReadStat()
1660 u8 is_dir = (fid->type == TYPE_DIR) ? 1 : 0; in ffsWriteStat()
1955 if (fid->type != TYPE_DIR) in ffsReadDir()
2034 if ((type != TYPE_FILE) && (type != TYPE_DIR)) in ffsReadDir()
[all …]
Dexfat.h62 #define TYPE_DIR 0x0104 macro