Lines Matching refs:FSResult

41     FSResult (*ReadFile)(struct FSArchive*, struct FSFile*, void *buffer, u32 *length);
42 FSResult (*WriteFile)(struct FSArchive*, struct FSFile*, const void *buffer, u32 *length);
43 FSResult (*SeekDirectory)(struct FSArchive*, struct FSFile*, u32 id, u32 position);
44 FSResult (*ReadDirectory)(struct FSArchive*, struct FSFile*, FSDirectoryEntryInfo *info);
45FSResult (*FindPath)(struct FSArchive*, u32 base_dir_id, const char *path, u32 *target_id, BOOL ta…
46FSResult (*GetPath)(struct FSArchive*, struct FSFile*, BOOL is_directory, char *buffer, u32 *lengt…
47 FSResult (*OpenFileFast)(struct FSArchive*, struct FSFile*, u32 id, u32 mode);
48 FSResult (*OpenFileDirect)(struct FSArchive*, struct FSFile*, u32 top, u32 bottom, u32 *id);
49 FSResult (*CloseFile)(struct FSArchive*, struct FSFile*);
55FSResult (*OpenFile)(struct FSArchive*, struct FSFile*, u32 base_dir_id, const char *path, u32 mod…
56 FSResult (*SeekFile)(struct FSArchive*, struct FSFile*, int *offset, FSSeekFileMode from);
57 FSResult (*GetFileLength)(struct FSArchive*, struct FSFile*, u32 *length);
58 FSResult (*GetFilePosition)(struct FSArchive*, struct FSFile*, u32 *position);
62 FSResult (*GetArchiveCaps)(struct FSArchive*, u32 *caps);
63 FSResult (*CreateFile)(struct FSArchive*, u32 baseid, const char *relpath, u32 permit);
64 FSResult (*DeleteFile)(struct FSArchive*, u32 baseid, const char *relpath);
65FSResult (*RenameFile)(struct FSArchive*, u32 baseid_src, const char *relpath_src, u32 baseid_dst,…
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);
70FSResult (*RenameDirectory)(struct FSArchive*, u32 baseid, const char *relpath_src, u32 baseid_dst…
71 FSResult (*GetArchiveResource)(struct FSArchive*, FSArchiveResource *resource);
73 FSResult (*FlushFile)(struct FSArchive*, struct FSFile*);
74 FSResult (*SetFileLength)(struct FSArchive*, struct FSFile*, u32 length);
75FSResult (*OpenDirectory)(struct FSArchive*, struct FSFile*, u32 base_dir_id, const char *path, u3…
76 FSResult (*CloseDirectory)(struct FSArchive*, struct FSFile*);
77 FSResult (*SetSeekCache)(struct FSArchive*, struct FSFile*, void* buf, u32 buf_size);
103 FSResult result; // The most recent processing result
188 FSResult FS_GetArchiveResultCode(const void *path_or_archive);
352 void FS_NotifyArchiveAsyncEnd(FSArchive *arc, FSResult ret);