Home
last modified time | relevance | path

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

/hal_espressif-3.6.0/components/fatfs/src/
Dff.c495 #define INIT_NAMBUF(fs) { (fs)->lfnbuf = lbuf; (fs)->dirbuf = dbuf; }
507 …); if (!lfn) LEAVE_FF(fs, FR_NOT_ENOUGH_CORE); (fs)->lfnbuf = lfn; (fs)->dirbuf = (BYTE*)(lfn+FF_M…
2164 BYTE* dirb = dp->obj.fs->dirbuf; /* Pointer to the on-memory direcotry entry block 85+C0+C1s */
2214 obj->sclust = ld_dword(fs->dirbuf + XDIR_FstClus); /* Start cluster */
2215 obj->objsize = ld_qword(fs->dirbuf + XDIR_FileSize); /* Size */
2216 obj->stat = fs->dirbuf[XDIR_GenFlags] & 2; /* Allocation status */
2262 BYTE* dirb = dp->obj.fs->dirbuf; /* Pointer to the direcotry entry block 85+C0+C1s */
2362 dp->obj.attr = fs->dirbuf[XDIR_Attr] & AM_MASK; /* Get attribute */
2433 …if (fs->dirbuf[XDIR_NumName] > FF_MAX_LFN) continue; /* Skip comparison if inaccessible object n…
2435 …if (ld_word(fs->dirbuf + XDIR_NameHash) != hash) continue; /* Skip comparison if hash mismatched */
[all …]
Dff.h139 BYTE* dirbuf; /* Directory entry block scratchpad buffer for exFAT */ member