Home
last modified time | relevance | path

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

/fatfs-2.7.6/
Ddiskio.c27 DSTATUS stat; in disk_status() local
36 return stat; in disk_status()
43 return stat; in disk_status()
50 return stat; in disk_status()
65 DSTATUS stat; in disk_initialize() local
74 return stat; in disk_initialize()
81 return stat; in disk_initialize()
88 return stat; in disk_initialize()
Dff.c1168 …if ((obj->objsize != 0 && obj->sclust != 0) || obj->stat == 0) { /* Object except root dir must ha… in get_fat()
1172 if (obj->stat == 2 && cofs <= clen) { /* Is it a contiguous chain? */ in get_fat()
1176 if (obj->stat == 3 && cofs < obj->n_cont) { /* Is it in the 1st fragment? */ in get_fat()
1180 if (obj->stat != 2) { /* Get value from FAT if FAT chain is valid */ in get_fat()
1358 if (obj->stat == 3) { /* Has the object been changed 'fragmented' in this session? */ in fill_first_frag()
1363 obj->stat = 0; /* Change status 'FAT chain is valid' */ in fill_first_frag()
1418 if (pclst != 0 && (!FF_FS_EXFAT || fs->fs_type != FS_EXFAT || obj->stat != 2)) { in remove_chain()
1462 obj->stat = 0; /* Change the chain status 'initial' */ in remove_chain()
1464 if (obj->stat == 0) { /* Is it a fragmented chain from the beginning of this session? */ in remove_chain()
1474 obj->stat = 2; /* Change the chain status 'contiguous' */ in remove_chain()
[all …]
/fatfs-2.7.6/include/
Dff.h187 …BYTE stat; /* Object chain status (b1-0: =0:not contiguous, =2:contiguous, =3:fragmented in this… member