Home
last modified time | relevance | path

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

/fatfs-2.7.6/
Dff.c3280 UINT part /* Partition to fined = 0:auto, 1..:forced */ argument
3288 …if (fmt != 2 && (fmt >= 3 || part == 0)) return fmt; /* Returns if it is an FAT VBR as auto scan, …
3307 if (part == 0 && fmt <= 1) return fmt; /* Auto search (valid FAT volume found first) */
3308 …if (part != 0 && v_ent == part) return fmt; /* Forced partition order (regardless of it is valid …
3314 if (FF_MULTI_PARTITION && part > 4) return 3; /* MBR has 4 partitions max */
3318 i = part ? part - 1 : 0; /* Table index to find first */
3321 } while (part == 0 && fmt >= 2 && ++i < 4);