Lines Matching refs:infoa
1518 FSDirectoryEntryInfo *infoa = (FSDirectoryEntryInfo *)info; in FSi_FATFS_ReadDirectory() local
1519 infoa->shortname_length = (u32)STD_GetStringLength(tmp->shortname); in FSi_FATFS_ReadDirectory()
1520 (void)STD_CopyLString(infoa->shortname, tmp->shortname, sizeof(infoa->shortname)); in FSi_FATFS_ReadDirectory()
1522 int dstlen = sizeof(infoa->longname) - 1; in FSi_FATFS_ReadDirectory()
1524 … (void)FSi_ConvertStringUnicodeToSjis(infoa->longname, &dstlen, tmp->longname, NULL, NULL); in FSi_FATFS_ReadDirectory()
1525 infoa->longname[dstlen] = L'\0'; in FSi_FATFS_ReadDirectory()
1526 infoa->longname_length = (u32)dstlen; in FSi_FATFS_ReadDirectory()
1528 infoa->attributes = tmp->attributes; in FSi_FATFS_ReadDirectory()
1531 infoa->attributes |= FS_ATTRIBUTE_IS_DIRECTORY; in FSi_FATFS_ReadDirectory()
1533 infoa->filesize = tmp->length; in FSi_FATFS_ReadDirectory()
1534 FSi_DostimeToFstime(&infoa->atime, tmp->dos_atime); in FSi_FATFS_ReadDirectory()
1535 FSi_DostimeToFstime(&infoa->mtime, tmp->dos_mtime); in FSi_FATFS_ReadDirectory()
1536 FSi_DostimeToFstime(&infoa->ctime, tmp->dos_ctime); in FSi_FATFS_ReadDirectory()