Home
last modified time | relevance | path

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

/hal_espressif-3.4.0/components/fatfs/src/
Dff.h273 FR_NOT_ENOUGH_CORE, /* (17) LFN working buffer could not be allocated */ enumerator
Dff.c507 …oc((FF_MAX_LFN+1)*2 + MAXDIRB(FF_MAX_LFN)); if (!lfn) LEAVE_FF(fs, FR_NOT_ENOUGH_CORE); (fs)->lfnb…
511 …(fs) { lfn = ff_memalloc((FF_MAX_LFN+1)*2); if (!lfn) LEAVE_FF(fs, FR_NOT_ENOUGH_CORE); (fs)->lfnb…
4205 res = FR_NOT_ENOUGH_CORE; break;
4230 if (vl == 0) res = FR_NOT_ENOUGH_CORE;
4301 res = FR_NOT_ENOUGH_CORE; /* Given table size is smaller than required */
5591 return FR_NOT_ENOUGH_CORE;
6024 if (!buf) return FR_NOT_ENOUGH_CORE;
/hal_espressif-3.4.0/components/fatfs/vfs/
Dvfs_fat.c264 case FR_NOT_ENOUGH_CORE: return ENOMEM; in fresult_to_errno()