Searched refs:current_cl (Results 1 – 1 of 1) sorted by relevance
/freebsd/sbin/fsck_msdosfs/ |
H A D | fat.c | 1036 cl_t prev_cl, current_cl, next_cl; in checkchain() local 1068 prev_cl = current_cl = head; in checkchain() 1069 for (next_cl = fat_get_cl_next(fat, current_cl); in checkchain() 1071 prev_cl = current_cl, current_cl = next_cl, next_cl = fat_get_cl_next(fat, current_cl)) in checkchain() 1094 current_cl = prev_cl; in checkchain() 1110 return (fat_set_cl_next(fat, current_cl, next_cl) | FSFATMOD); in checkchain() 1122 cl_t current_cl, next_cl; in clearchain() local 1125 current_cl = head; in clearchain() 1127 while (valid_cl(fat, current_cl)) { in clearchain() 1128 next_cl = fat_get_cl_next(fat, current_cl); in clearchain() [all …]
|