Searched refs:LEAVE_FF (Results 1 – 1 of 1) sorted by relevance
/hal_espressif-3.6.0/components/fatfs/src/ |
D | ff.c | 209 #define ABORT(fs, res) { fp->err = (BYTE)(res); LEAVE_FF(fs, res); } 217 #define LEAVE_FF(fs, res) { unlock_fs(fs, res); return res; } macro 219 #define LEAVE_FF(fs, res) return res macro 507 … { lfn = ff_memalloc((FF_MAX_LFN+1)*2 + MAXDIRB(FF_MAX_LFN)); if (!lfn) LEAVE_FF(fs, FR_NOT_ENOUGH… 511 #define INIT_NAMBUF(fs) { lfn = ff_memalloc((FF_MAX_LFN+1)*2); if (!lfn) LEAVE_FF(fs, FR_NOT_ENOUGH… 3537 LEAVE_FF(fs, res); 3727 LEAVE_FF(fs, res); 3754 if (res != FR_OK || (res = (FRESULT)fp->err) != FR_OK) LEAVE_FF(fs, res); /* Check validity */ 3755 if (!(fp->flag & FA_READ)) LEAVE_FF(fs, FR_DENIED); /* Check access mode */ 3826 LEAVE_FF(fs, FR_OK); [all …]
|