Home
last modified time | relevance | path

Searched refs:DELETED_FLAG (Results 1 – 8 of 8) sorted by relevance

/OK3568_Linux_fs/kernel/include/uapi/linux/
H A Dmsdos_fs.h52 #define DELETED_FLAG 0xe5 /* marks file as deleted when in name[0] */ macro
53 #define IS_FREE(n) (!*(n) || *(n) == DELETED_FLAG)
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/linux/
H A Dmsdos_fs.h52 #define DELETED_FLAG 0xe5 /* marks file as deleted when in name[0] */ macro
53 #define IS_FREE(n) (!*(n) || *(n) == DELETED_FLAG)
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/linux/
H A Dmsdos_fs.h52 #define DELETED_FLAG 0xe5 /* marks file as deleted when in name[0] */ macro
53 #define IS_FREE(n) (!*(n) || *(n) == DELETED_FLAG)
/OK3568_Linux_fs/kernel/fs/fat/
H A Ddir.c328 if ((*de)->name[0] == DELETED_FLAG) in fat_parse_long()
482 if (de->name[0] == DELETED_FLAG) in fat_search_long()
599 if (de->name[0] == DELETED_FLAG) in __fat_readdir()
1011 de->name[0] = DELETED_FLAG; in __fat_remove_entries()
1046 de->name[0] = DELETED_FLAG; in fat_remove_entries()
H A Dnamei_vfat.c435 if (base[0] == DELETED_FLAG) in vfat_create_shortname()
/OK3568_Linux_fs/u-boot/fs/fat/
H A Dfat_write.c344 if (*l_name == DELETED_FLAG) in get_long_file_name()
347 *l_name = DELETED_FLAG; in get_long_file_name()
815 if (dentptr->name[0] == DELETED_FLAG) { in find_directory_entry()
H A Dfat.c148 if (*s_name == DELETED_FLAG) in get_name()
151 *s_name = DELETED_FLAG; in get_name()
854 if (dent->name[0] == DELETED_FLAG || in fat_itr_next()
/OK3568_Linux_fs/u-boot/include/
H A Dfat.h53 #define DELETED_FLAG ((char)0xe5) /* Marks deleted files when in name[0] */ macro