Home
last modified time | relevance | path

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

/hal_espressif-3.4.0/components/fatfs/src/
Dff.c5597 if (ld_word(buf + BS_55AA) != 0xAA55) LEAVE_MKFS(FR_MKFS_ABORTED); /* Check if MBR is valid */
5599 if (pte[PTE_System] == 0) LEAVE_MKFS(FR_MKFS_ABORTED); /* No partition? */
5606 if (sz_vol < b_vol) LEAVE_MKFS(FR_MKFS_ABORTED);
5609 if (sz_vol < 128) LEAVE_MKFS(FR_MKFS_ABORTED); /* Check if volume size is >=128s */
5635 if (sz_vol < 0x1000) LEAVE_MKFS(FR_MKFS_ABORTED); /* Too small volume? */
5649 if (b_data - b_vol >= sz_vol / 2) LEAVE_MKFS(FR_MKFS_ABORTED); /* Too small volume? */
5651 if (n_clst <16) LEAVE_MKFS(FR_MKFS_ABORTED); /* Too few clusters? */
5652 if (n_clst > MAX_EXFAT) LEAVE_MKFS(FR_MKFS_ABORTED); /* Too many clusters? */
5804 if (n_clst <= MAX_FAT16 || n_clst > MAX_FAT32) LEAVE_MKFS(FR_MKFS_ABORTED);
5833 if (sz_vol < b_data + pau * 16 - b_vol) LEAVE_MKFS(FR_MKFS_ABORTED); /* Too small volume */
[all …]
Dff.h270 FR_MKFS_ABORTED, /* (14) The f_mkfs() aborted due to any problem */ enumerator
/hal_espressif-3.4.0/components/fatfs/vfs/
Dvfs_fat.c261 case FR_MKFS_ABORTED: return EINTR; in fresult_to_errno()