Lines Matching refs:handle
80 ARCHandle* handle; member
92 ARCHandle* handle; member
104 ARCHandle* handle; member
129 bool ARCInitHandle(void* arcStart, ARCHandle* handle);
155 bool ARCOpen(ARCHandle* handle, const wchar_t* fileName, ARCFileInfo* af);
183 bool ARCFastOpen(ARCHandle* handle, s32 entrynum, ARCFileInfo* af);
211 NW_INLINE bool ARCOpen(ARCHandle* handle, ARCDirEntry* dirent, ARCFileInfo* af) in ARCOpen() argument
214 return ARCFastOpen(handle, static_cast<s32>(dirent->entryNum), af); in ARCOpen()
241 s32 ARCConvertPathToEntrynum(ARCHandle* handle, const wchar_t* pathPtr);
258 bool ARCEntrynumIsDir(const ARCHandle * handle, s32 entrynum);
341 bool ARCChangeDir(ARCHandle* handle, const wchar_t* dirName);
363 bool ARCChangeDir(ARCHandle* handle, s32 entrynum);
387 NW_INLINE bool ARCChangeDir(ARCHandle* handle, ARCDir* dir) in ARCChangeDir() argument
390 return ARCChangeDir(handle, static_cast<s32>(dir->entryNum)); in ARCChangeDir()
417 NW_INLINE bool ARCChangeDir(ARCHandle* handle, ARCDirEntry* dirent) in ARCChangeDir() argument
420 return ARCChangeDir(handle, static_cast<s32>(dirent->entryNum)); in ARCChangeDir()
441 bool ARCGetCurrentDir(ARCHandle* handle, wchar_t* path, u32 maxlen);
462 bool ARCOpenDir(ARCHandle* handle, const wchar_t* dirName, ARCDir* dir);
485 bool ARCOpenDir(ARCHandle* handle, s32 entrynum, ARCDir* dir);
513 NW_INLINE bool ARCOpenDir(ARCHandle* handle, ARCDirEntry* dirent, ARCDir* dir) in ARCOpenDir() argument
516 return ARCOpenDir(handle, static_cast<s32>(dirent->entryNum), dir); in ARCOpenDir()