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()
1387 u16 *unipath = NULL; in FSi_FATFS_OpenDirectory() local
1392 unipath = (u16 *)path; in FSi_FATFS_OpenDirectory()
1400 unipath = fpath; in FSi_FATFS_OpenDirectory()
1405 if (*unipath) in FSi_FATFS_OpenDirectory()
1408 for (pos = 0; unipath[pos]; ++pos) in FSi_FATFS_OpenDirectory()
1411 for (--pos; (pos > 0) && (unipath[pos] == L'*'); --pos) in FSi_FATFS_OpenDirectory()
1414 if (unipath[pos] != L'/') in FSi_FATFS_OpenDirectory()
1416 unipath[++pos] = L'/'; in FSi_FATFS_OpenDirectory()
1418 unipath[++pos] = L'*'; in FSi_FATFS_OpenDirectory()
1419 unipath[++pos] = L'\0'; in FSi_FATFS_OpenDirectory()
1421 handle = FATFS_OpenDirectoryW(unipath, modestring); in FSi_FATFS_OpenDirectory()