Home
last modified time | relevance | path

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

/drivers/staging/exfat/
Dexfat_super.c318 if ((attr & ATTR_READONLY) && !(attr & ATTR_SUBDIR)) in exfat_make_mode()
321 if (attr & ATTR_SUBDIR) in exfat_make_mode()
595 fid->attr = ATTR_SUBDIR; in ffsLookupFile()
1457 if (((type == TYPE_FILE) && (attr & ATTR_SUBDIR)) ||
1458 ((type == TYPE_DIR) && (!(attr & ATTR_SUBDIR)))) {
1520 info->Attr = ATTR_SUBDIR; in ffsReadStat()
2279 (de.Attr & ATTR_SUBDIR) ? DT_DIR : DT_REG)) in exfat_readdir()
3319 if (info.Attr & ATTR_SUBDIR) { /* directory */ in exfat_fill_inode()
3810 inode->i_mode = exfat_make_mode(sbi, ATTR_SUBDIR, 0777); in exfat_read_root()
3820 exfat_save_attr(inode, ATTR_SUBDIR); in exfat_read_root()
Dexfat_core.c922 else if ((ep->attr & (ATTR_SUBDIR | ATTR_VOLUME)) == ATTR_VOLUME) in fat_get_entry_type()
925 else if ((ep->attr & (ATTR_SUBDIR | ATTR_VOLUME)) == ATTR_SUBDIR) in fat_get_entry_type()
949 if (GET16_A(ep->attr) & ATTR_SUBDIR) in exfat_get_entry_type()
990 ep->attr = ATTR_SUBDIR; in fat_set_entry_type()
1019 SET16_A(ep->attr, ATTR_SUBDIR); in exfat_set_entry_type()
3293 fid->attr = ATTR_SUBDIR; in create_dir()
Dexfat.h199 #define ATTR_SUBDIR 0x0010 macro