| /TwlSDK-5.1.0/build/libraries/fs/common/include/ |
| D | command.h | 70 const char *relpath; member 109 const char *relpath; member 152 const char *relpath; member 160 const char *relpath; member 176 const char *relpath; member 184 const char *relpath; member
|
| /TwlSDK-5.1.0/build/libraries/fs/common/src/ |
| D | fs_file.c | 292 char relpath[FS_ARCHIVE_FULLPATH_MAX + 1]; in FS_CreateFile() local 294 FSArchive *arc = FS_NormalizePath(path, &baseid, relpath); in FS_CreateFile() 303 arg->relpath = relpath; in FS_CreateFile() 327 char relpath[FS_ARCHIVE_FULLPATH_MAX + 1]; in FS_DeleteFile() local 329 FSArchive *arc = FS_NormalizePath(path, &baseid, relpath); in FS_DeleteFile() 338 arg->relpath = relpath; in FS_DeleteFile() 408 char relpath[FS_ARCHIVE_FULLPATH_MAX + 1]; in FS_GetPathInfo() local 410 FSArchive *arc = FS_NormalizePath(path, &baseid, relpath); in FS_GetPathInfo() 419 arg->relpath = relpath; in FS_GetPathInfo() 445 char relpath[FS_ARCHIVE_FULLPATH_MAX + 1]; in FS_SetPathInfo() local [all …]
|
| D | fs_archive.c | 214 …FS_INVOKE_METHOD_(FindPath, arc, arg->baseid, arg->relpath, &arg->target_id, arg->target_is_direct… in FSi_InvokeCommand() 241 FS_INVOKE_METHOD_(OpenFile, arc, file, arg->baseid, arg->relpath, arg->mode); in FSi_InvokeCommand() 263 FS_INVOKE_METHOD_(CreateFile, arc, arg->baseid, arg->relpath, arg->permit); in FSi_InvokeCommand() 266 FS_INVOKE_METHOD_(DeleteFile, arc, arg->baseid, arg->relpath); in FSi_InvokeCommand() 272 FS_INVOKE_METHOD_(GetPathInfo, arc, arg->baseid, arg->relpath, arg->info); in FSi_InvokeCommand() 275 FS_INVOKE_METHOD_(SetPathInfo, arc, arg->baseid, arg->relpath, arg->info); in FSi_InvokeCommand() 278 FS_INVOKE_METHOD_(CreateDirectory, arc, arg->baseid, arg->relpath, arg->permit); in FSi_InvokeCommand() 281 FS_INVOKE_METHOD_(DeleteDirectory, arc, arg->baseid, arg->relpath); in FSi_InvokeCommand() 296 FS_INVOKE_METHOD_(OpenDirectory, arc, file, arg->baseid, arg->relpath, arg->mode); in FSi_InvokeCommand() 693 char relpath[FS_ENTRY_LONGNAME_MAX]; in FS_SetCurrentDirectory() local [all …]
|
| D | fs_archive_fatfs.c | 212 static u16* FSi_AllocUnicodeFullPath(FSFATFSArchiveContext *context, const char *relpath) in FSi_AllocUnicodeFullPath() argument 225 (void)FSi_ConvertStringSjisToUnicode(&dst[pos], &dstlen, relpath, NULL, NULL); in FSi_AllocUnicodeFullPath() 507 static FSResult FSi_FATFS_GetPathInfo(FSArchive *arc, u32 baseid, const char *relpath, FSPathInfo *… in FSi_FATFS_GetPathInfo() argument 512 u16 *path = FSi_AllocUnicodeFullPath(context, relpath); in FSi_FATFS_GetPathInfo() 555 static FSResult FSi_FATFS_SetPathInfo(FSArchive *arc, u32 baseid, const char *relpath, FSPathInfo *… in FSi_FATFS_SetPathInfo() argument 560 u16 *path = FSi_AllocUnicodeFullPath(context, relpath); in FSi_FATFS_SetPathInfo() 599 static FSResult FSi_FATFS_CreateFile(FSArchive *arc, u32 baseid, const char *relpath, u32 permit) in FSi_FATFS_CreateFile() argument 606 u16 *path = FSi_AllocUnicodeFullPath(context, relpath); in FSi_FATFS_CreateFile() 645 static FSResult FSi_FATFS_DeleteFile(FSArchive *arc, u32 baseid, const char *relpath) in FSi_FATFS_DeleteFile() argument 649 u16 *path = FSi_AllocUnicodeFullPath(context, relpath); in FSi_FATFS_DeleteFile() [all …]
|
| /TwlSDK-5.1.0/include/nitro/fs/ |
| D | archive.h | 63 FSResult (*CreateFile)(struct FSArchive*, u32 baseid, const char *relpath, u32 permit); 64 FSResult (*DeleteFile)(struct FSArchive*, u32 baseid, const char *relpath); 66 FSResult (*GetPathInfo)(struct FSArchive*, u32 baseid, const char *relpath, FSPathInfo *info); 67 FSResult (*SetPathInfo)(struct FSArchive*, u32 baseid, const char *relpath, FSPathInfo *info); 68 FSResult (*CreateDirectory)(struct FSArchive*, u32 baseid, const char *relpath, u32 permit); 69 FSResult (*DeleteDirectory)(struct FSArchive*, u32 baseid, const char *relpath); 150 FSArchive* FS_NormalizePath(const char *path, u32 *baseid, char *relpath);
|
| /TwlSDK-5.1.0/build/demos/gx/UnitTours/DEMOLib/src/ |
| D | DEMOHostio.c | 175 static void DEMOi_HIO_CreateFullPath(DEMOHIOContext *context, char *dst, const char *relpath) in DEMOi_HIO_CreateFullPath() argument 178 if (STD_SearchString(relpath, ":") != NULL) in DEMOi_HIO_CreateFullPath() 180 (void)STD_TSPrintf(dst, "%s", relpath); in DEMOi_HIO_CreateFullPath() 185 (void)STD_TSPrintf(dst, "%s/%s", context->basepath, relpath); in DEMOi_HIO_CreateFullPath() 295 static FSResult DEMOi_HIO_GetPathInfo(FSArchive *arc, u32 baseid, const char *relpath, FSPathInfo *… in DEMOi_HIO_GetPathInfo() argument 302 DEMOi_HIO_CreateFullPath(context, tmppath, relpath); in DEMOi_HIO_GetPathInfo() 329 static FSResult DEMOi_HIO_CreateFile(FSArchive *arc, u32 baseid, const char *relpath, u32 permit) in DEMOi_HIO_CreateFile() argument 347 DEMOi_HIO_CreateFullPath(context, tmppath, relpath); in DEMOi_HIO_CreateFile() 367 static FSResult DEMOi_HIO_DeleteFile(FSArchive *arc, u32 baseid, const char *relpath) in DEMOi_HIO_DeleteFile() argument 373 DEMOi_HIO_CreateFullPath(context, tmppath, relpath); in DEMOi_HIO_DeleteFile() [all …]
|