Lines Matching refs:infoa
1559 FSDirectoryEntryInfo *infoa = (FSDirectoryEntryInfo *)info; in FSi_FATFS_ReadDirectory() local
1560 infoa->shortname_length = (u32)STD_GetStringLength(tmp->shortname); in FSi_FATFS_ReadDirectory()
1561 (void)STD_CopyLString(infoa->shortname, tmp->shortname, sizeof(infoa->shortname)); in FSi_FATFS_ReadDirectory()
1563 int dstlen = sizeof(infoa->longname) - 1; in FSi_FATFS_ReadDirectory()
1565 … (void)FSi_ConvertStringUnicodeToSjis(infoa->longname, &dstlen, tmp->longname, NULL, NULL); in FSi_FATFS_ReadDirectory()
1566 infoa->longname[dstlen] = L'\0'; in FSi_FATFS_ReadDirectory()
1567 infoa->longname_length = (u32)dstlen; in FSi_FATFS_ReadDirectory()
1569 infoa->attributes = tmp->attributes; in FSi_FATFS_ReadDirectory()
1572 infoa->attributes |= FS_ATTRIBUTE_IS_DIRECTORY; in FSi_FATFS_ReadDirectory()
1574 infoa->filesize = tmp->length; in FSi_FATFS_ReadDirectory()
1575 FSi_DostimeToFstime(&infoa->atime, tmp->dos_atime); in FSi_FATFS_ReadDirectory()
1576 FSi_DostimeToFstime(&infoa->mtime, tmp->dos_mtime); in FSi_FATFS_ReadDirectory()
1577 FSi_DostimeToFstime(&infoa->ctime, tmp->dos_ctime); in FSi_FATFS_ReadDirectory()