Home
last modified time | relevance | path

Searched refs:EXFAT_MAX_SECTOR_SIZE (Results 1 – 4 of 4) sorted by relevance

/third_party/exfatprogs/dump/
Ddump.c79 ppbr = malloc(EXFAT_MAX_SECTOR_SIZE); in exfat_show_ondisk_all_info()
86 if (exfat_read(bd->dev_fd, (char *)ppbr, EXFAT_MAX_SECTOR_SIZE, in exfat_show_ondisk_all_info()
87 0) != (ssize_t)EXFAT_MAX_SECTOR_SIZE) { in exfat_show_ondisk_all_info()
/third_party/exfatprogs/lib/
Dlibexfat.c357 bs = (struct pbr *)malloc(EXFAT_MAX_SECTOR_SIZE); in exfat_get_root_entry_offset()
363 nbytes = exfat_read(bd->dev_fd, bs, EXFAT_MAX_SECTOR_SIZE, 0); in exfat_get_root_entry_offset()
364 if (nbytes != EXFAT_MAX_SECTOR_SIZE) { in exfat_get_root_entry_offset()
558 ppbr = malloc(EXFAT_MAX_SECTOR_SIZE); in exfat_show_volume_serial()
565 ret = exfat_read(fd, (char *)ppbr, EXFAT_MAX_SECTOR_SIZE, 0); in exfat_show_volume_serial()
631 ppbr = malloc(EXFAT_MAX_SECTOR_SIZE); in exfat_set_volume_serial()
638 ret = exfat_read(bd->dev_fd, (char *)ppbr, EXFAT_MAX_SECTOR_SIZE, in exfat_set_volume_serial()
/third_party/exfatprogs/include/
Dlibexfat.h49 #define EXFAT_MAX_SECTOR_SIZE 4096 macro
/third_party/exfatprogs/fsck/
Dfsck.c534 if (sect_size >= 512 && sect_size <= EXFAT_MAX_SECTOR_SIZE) { in exfat_boot_region_check()