Home
last modified time | relevance | path

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

/third_party/FatFs/source/
Dffconf.h317 #define FF_FS_LOCK CONFIG_NFILE_DESCRIPTORS macro
319 #define FF_FS_LOCK (CONFIG_NFILE_DESCRIPTORS + LOSCFG_MAX_OPEN_DIRS - MIN_START_FD) macro
Dff.c190 #if FF_FS_LOCK != 0
192 #error FF_FS_LOCK must be 0 at read-only configuration
380 #if FF_FS_LOCK != 0
381 static FILESEM Files[FF_FS_LOCK]; /* Open object lock semaphores */
763 #if FF_FS_LOCK != 0
777 for (i = 0; i < FF_FS_LOCK; i++) { in chk_lock()
786 if (i == FF_FS_LOCK) { /* The object has not been opened */ in chk_lock()
799 for (i = 0; i < FF_FS_LOCK && Files[i].fs; i++) ; in enq_lock()
800 return (i == FF_FS_LOCK) ? 0 : 1; in enq_lock()
812 for (i = 0; i < FF_FS_LOCK; i++) { /* Find the object */ in inc_lock()
[all …]
Dff.h280 #if FF_FS_LOCK