Home
last modified time | relevance | path

Searched refs:LEAVE_FF (Results 1 – 2 of 2) sorted by relevance

/third_party/FatFs/source/
Dff.c167 #define ABORT(fs, res) { fp->err = (BYTE)(res); LEAVE_FF(fs, res); }
176 #define LEAVE_FF(fs, res) { unlock_fs(fs, res); return res; } macro
178 #define LEAVE_FF(fs, res) { (void)fs; return res; } macro
181 #define LEAVE_FF(fs, res) return res macro
3102 LEAVE_FF(fs, res); in f_mount()
3307 if (ISCHILD(fs)) LEAVE_FF(fs_bak,FR_INVAILD_FATFS); in f_open()
3309 if (ISCHILD(fs)) LEAVE_FF(fs,FR_INVAILD_FATFS); in f_open()
3315 if (res == FR_INT_ERR) LEAVE_FF(fs_bak,res); in f_open()
3317 if (res == FR_INT_ERR) LEAVE_FF(fs,res); in f_open()
3456 LEAVE_FF(fs_bak, res); in f_open()
[all …]
Dff.h79 #define INIT_NAMBUF(fs) { lfn = ff_memalloc((FF_MAX_LFN+1)*2); if (!lfn) LEAVE_FF(fs, FR_NOT_ENOUGH…