Lines Matching refs:unipath
916 const u16 *unipath = NULL; in FSi_FATFS_OpenFile() local
921 unipath = (const u16 *)path; in FSi_FATFS_OpenFile()
929 unipath = fpath; in FSi_FATFS_OpenFile()
931 if (FSi_UsingInvalidCharacterW(unipath)) in FSi_FATFS_OpenFile()
937 handle = FATFS_OpenFileW(unipath, modestring); in FSi_FATFS_OpenFile()
1428 u16 *unipath = NULL; in FSi_FATFS_OpenDirectory() local
1433 unipath = (u16 *)path; in FSi_FATFS_OpenDirectory()
1441 unipath = fpath; in FSi_FATFS_OpenDirectory()
1446 if (*unipath) in FSi_FATFS_OpenDirectory()
1449 for (pos = 0; unipath[pos]; ++pos) in FSi_FATFS_OpenDirectory()
1452 for (--pos; (pos > 0) && (unipath[pos] == L'*'); --pos) in FSi_FATFS_OpenDirectory()
1455 if (unipath[pos] != L'/') in FSi_FATFS_OpenDirectory()
1457 unipath[++pos] = L'/'; in FSi_FATFS_OpenDirectory()
1459 unipath[++pos] = L'*'; in FSi_FATFS_OpenDirectory()
1460 unipath[++pos] = L'\0'; in FSi_FATFS_OpenDirectory()
1462 handle = FATFS_OpenDirectoryW(unipath, modestring); in FSi_FATFS_OpenDirectory()