Searched refs:FA_WRITE (Results 1 – 2 of 2) sorted by relevance
/fatfs-2.7.6/ |
D | ff.c | 3673 …mode &= FF_FS_READONLY ? FA_READ : FA_READ | FA_WRITE | FA_CREATE_ALWAYS | FA_CREATE_NEW | FA_OPEN… 3754 if ((mode & FA_WRITE) && (dj.obj.attr & AM_RDO)) { /* Write mode open against R/O file */ 3968 if (!(fp->flag & FA_WRITE)) LEAVE_FF(fs, FR_DENIED); /* Check access mode */ 4449 …if (ofs > fp->obj.objsize && (FF_FS_READONLY || !(fp->flag & FA_WRITE))) { /* In read-only mode, c… 4477 if (fp->flag & FA_WRITE) { /* Check if in write mode or not */ 4853 if (!(fp->flag & FA_WRITE)) LEAVE_FF(fs, FR_DENIED); /* Check access mode */ 4907 res = mount_volume(&path, &fs, FA_WRITE); 4998 res = mount_volume(&path, &fs, FA_WRITE); /* Get logical drive */ 5084 res = mount_volume(&path_old, &fs, FA_WRITE); /* Get logical drive of the old object */ 5192 res = mount_volume(&path, &fs, FA_WRITE); /* Get logical drive */ [all …]
|
/fatfs-2.7.6/include/ |
D | ff.h | 388 #define FA_WRITE 0x02 macro
|