Searched refs:current_cl (Results 1 – 1 of 1) sorted by relevance
/third_party/FreeBSD/sbin/fsck_msdosfs/ |
D | fat.c | 1038 cl_t prev_cl, current_cl, next_cl; in checkchain() local 1070 prev_cl = current_cl = head; in checkchain() 1071 for (next_cl = fat_get_cl_next(fat, current_cl); in checkchain() 1073 prev_cl = current_cl, current_cl = next_cl, next_cl = fat_get_cl_next(fat, current_cl)) in checkchain() 1096 current_cl = prev_cl; in checkchain() 1112 return (fat_set_cl_next(fat, current_cl, next_cl) | FSFATMOD); in checkchain() 1124 cl_t current_cl, next_cl; in clearchain() local 1127 current_cl = head; in clearchain() 1129 while (valid_cl(fat, current_cl)) { in clearchain() 1130 next_cl = fat_get_cl_next(fat, current_cl); in clearchain() [all …]
|