Searched refs:altname (Results 1 – 4 of 4) sorted by relevance
/AliOS-Things-master/components/py_engine/engine/lib/oofatfs/ |
A D | ff.h | 243 TCHAR altname[FF_SFN_BUF + 1];/* Altenative file name */ member
|
A D | ff.c | 2113 fno->altname[0] = 0; /* exFAT does not support SFN */ 2663 … if (si == 9 && di < FF_SFN_BUF) fno->altname[di++] = '.'; /* Insert a . if extension is exist */ 2670 wc = put_utf(wc, &fno->altname[di], FF_SFN_BUF - di); /* Store it in Unicode */ 2674 fno->altname[di++] = (TCHAR)wc; /* Store it without any conversion */ 2677 fno->altname[di] = 0; /* Terminate the SFN (null string means SFN is invalid) */ 2683 …for (si = di = 0, lcf = NS_BODY; fno->altname[si]; si++, di++) { /* Copy altname[] to fname[] with… 2684 wc = (WCHAR)fno->altname[si]; 2691 …if (!dp->dir[DIR_NTres]) fno->altname[0] = 0; /* Altname is not needed if neither LFN nor case i… 4415 …if (pattern_matching(dp->pat, fno->altname, 0, 0)) break; /* Test for alternative name if exist …
|
/AliOS-Things-master/components/fatfs/include/ |
A D | ff.h | 204 TCHAR altname[13]; /* Altenative file name */ member
|
/AliOS-Things-master/components/fatfs/src/ |
A D | ff.c | 1988 fno->altname[0] = 0; /* No SFN */ 2526 fno->altname[j++] = '.'; 2535 fno->altname[j] = c; 2548 fno->altname[j] = 0; /* Terminate the SFN */ 4353 if (pattern_matching(dp->pat, fno->altname, 0, 0)) break; /* Test for alternative name if exist */
|
Completed in 26 milliseconds