| /CTR-SDK-1.0.0/CTR_SDK/include/nn/hio/CTR/ |
| D | hio_Api.h | 87 Result DeleteFile(const char* path); 99 Result DeleteFile(const wchar_t* path); 112 Result DeleteDirectory(const wchar_t* path); 125 Result DeleteDirectory(const char* path); 137 Result CreateDirectory(const char* path); 149 Result CreateDirectory(const wchar_t* path); 244 Result SetCurrentDirectory(const char* path); 256 Result SetCurrentDirectory(const wchar_t* path);
|
| D | hio_HostFile.h | 112 Result Open(const char* path, bit32 accessMode, OpenDisp disp); 125 Result Open(const wchar_t* path, bit32 accessMode, OpenDisp disp); 239 Result IsExist(bool *exist, const char* path); 249 Result IsExist(bool *exist, const wchar_t* path);
|
| D | hio_HostDirectory.h | 126 Result Open(const char* path); 204 Result Open(const wchar_t* path);
|
| /CTR-SDK-1.0.0/CTR_SDK/include/nn/fs/CTR/MPCore/ |
| D | fs_UserArchive.h | 55 virtual Result OpenFile(IFile** pOut, const Path& path, bit32 mode) = 0; 56 virtual Result OpenDirectory(IDirectory** pOut, const Path& path) = 0; 57 virtual Result DeleteFile(const Path& path) = 0; 59 virtual Result DeleteDirectory(const Path& path) = 0; 60 virtual Result DeleteDirectoryRecursively(const Path& path) = 0; 61 virtual Result CreateFile(const Path& path, s64 size) = 0; 62 virtual Result CreateDirectory(const Path& path) = 0; 71 bool RegisterArchive(const char* path, IArchive* archive);
|
| D | fs_DirectoryBase.h | 35 Result TryInitialize(const wchar_t* path) in TryInitialize() argument 37 return TryOpenDirectory(&m_P, path); in TryInitialize() 40 Result TryInitializeRaw(ArchiveHandle handle, const nn::fs::CTR::MPCore::Path& path) in TryInitializeRaw() argument 42 return UserFileSystem::TryOpenDirectoryRaw(&m_P, handle, path); in TryInitializeRaw()
|
| D | fs_FileBase.h | 39 Result TryOpenImpl(const wchar_t* path, bit32 mode) in TryOpenImpl() argument 41 return TryOpenFile(&m_P, path, mode); in TryOpenImpl() 44 Result TryOpenImpl(const wchar_t* path, bit32 mode, nn::fs::PathMark pathMark) in TryOpenImpl() argument 47 return TryOpenFile(&m_P, path, mode); in TryOpenImpl() 115 Result TryInitializeRaw(ArchiveHandle handle, const nn::fs::CTR::MPCore::Path& path, bit32 mode) in TryInitializeRaw() argument 117 return UserFileSystem::TryOpenFileRaw(&m_P, handle, path, mode); in TryInitializeRaw() 120 …e, const nn::fs::CTR::MPCore::Path& archivePath, const nn::fs::CTR::MPCore::Path& path, bit32 mode) in TryInitializeRawDirectly() argument 122 return UserFileSystem::TryOpenFileRawDirectly(&m_P, archiveType, archivePath, path, mode); in TryInitializeRawDirectly()
|
| D | fs_UserFileSystem.h | 75 …static Result TryOpenFileRaw(void** pOut, ArchiveHandle archiveHandle, const Path& path, bit32 mod… 76 …RawDirectly(void** pOut, bit32 archiveType, const Path& archivePath, const Path& path, bit32 mode); 77 static Result TryOpenDirectoryRaw(void** pOut, ArchiveHandle archiveHandle, const Path& path); 78 static Result TryDeleteFileRaw(ArchiveHandle archiveHandle, const Path& path); 80 static Result TryDeleteDirectoryRaw(ArchiveHandle archiveHandle, const Path& path); 81 static Result TryDeleteDirectoryRecursivelyRaw(ArchiveHandle archiveHandle, const Path& path); 82 static Result TryCreateDirectoryRaw(ArchiveHandle archiveHandle, const Path& path);
|
| /CTR-SDK-1.0.0/CTR_SDK/include/nn/fslow/ |
| D | fslow_IArchive.h | 41 …virtual Result OpenFile(File* pOut, nn::fs::Transaction transaction, Path path, bit32 mode, nn::fs… 42 …virtual Result OpenFile(File* pOut, nn::fs::Transaction transaction, Path path, nn::fs::PathMark p… in OpenFile() argument 46 NN_UNUSED_VAR( path); in OpenFile() 53 virtual Result OpenDirectory(Directory* pOut, Path path) = 0; 55 virtual Result DeleteFile(nn::fs::Transaction transaction, Path path) = 0; 56 virtual Result DeleteDirectory(nn::fs::Transaction transaction, Path path) = 0; 58 …virtual Result CreateFile(nn::fs::Transaction transaction, Path path, nn::fs::Attributes attribute… in CreateFile() argument 61 …NN_UTIL_RETURN_IF_FAILED(OpenFile(&p, transaction, path, nn::fs::OPEN_MODE_CREATE | nn::fs::OPEN_M… in CreateFile() 67 …virtual Result CreateDirectory(nn::fs::Transaction transaction, Path path, nn::fs::Attributes attr… 72 virtual Result GetPathMark( nn::fs::PathMark* pathMark, Path path) in GetPathMark() argument [all …]
|
| D | fslow_ArchiveMapFileSystem.h | 89 …Result OpenFile(FileHandle* pOut, nn::fs::Transaction transaction, Path path, bit32 mode, nn::fs::… in OpenFile() argument 93 return OpenFile( pOut, transaction, path, pathMark, mode, attributes); in OpenFile() 96 …Result OpenFile(FileHandle* pOut, nn::fs::Transaction transaction, Path path, nn::fs::PathMark pat… in OpenFile() argument 98 ArchiveName name = GetSelf().GetArchiveName(path); in OpenFile() 112 …_IF_FAILED(acc->OpenFile(&file, transaction, GetSelf().GetPathString(Move(path)), pathMark, mode, … in OpenFile() 170 Result OpenDirectory(DirectoryHandle* pOut, Path path) in OpenDirectory() argument 172 ArchiveName name = GetSelf().GetArchiveName(path); in OpenDirectory() 186 … NN_UTIL_RETURN_IF_FAILED(acc->OpenDirectory(&directory, GetSelf().GetPathString(Move(path)))); in OpenDirectory() 214 Result DeleteFile(nn::fs::Transaction transaction, Path path) in DeleteFile() argument 216 ArchiveName name = GetSelf().GetArchiveName(path); in DeleteFile() [all …]
|
| D | fslow_Path.h | 141 LowPath(const char* path) in LowPath() argument 145 this->m_Data = path; in LowPath() 146 this->m_BinarySize = (std::strlen(path) + 1) * sizeof(*path); in LowPath() 149 LowPath(const wchar_t* path) in LowPath() argument 153 this->m_Data = path; in LowPath() 154 this->m_BinarySize = (std::wcslen(path) + 1) * sizeof(*path); in LowPath() 169 explicit BinaryProxy(const LowPath* path) : m_Path(path) {} in BinaryProxy()
|
| /CTR-SDK-1.0.0/CTR_SDK/build/runner/ |
| D | run-core_0_2.py | 4 import os.path 19 WF = os.path.normpath(os.path.join(ROOT,"tools/CommandLineTools/wf.exe")) 22 PP = os.path.normpath(os.path.join(ROOT,"tools/CommandLineTools/partner_partner.rb"))
|
| /CTR-SDK-1.0.0/CTR_SDK/sources/libraries/dbg/ |
| D | dbg_Logger.cpp | 83 char* GetBaseName(const char* path) in GetBaseName() argument 85 char* pFileNameTop = (char8*)std::strrchr(path, '\\'); in GetBaseName() 88 return const_cast<char*>(path); in GetBaseName()
|
| /CTR-SDK-1.0.0/CTR_SDK/build/omake/ |
| D | commondefs.om | 230 GetSubPath(path) = 231 apath = $(absname $(path)) 322 …scanner_name): $(filename) .PHONY/$(ROOT)/build-setup :value: $(digest-in-path-optional $(INCLUDES… 335 …scanner_name): $(filename) .PHONY/$(ROOT)/build-setup :value: $(digest-in-path-optional $(INCLUDES… 428 ….SCANNER: $(scanner_name): $(infile) .PHONY/$(ROOT)/build-setup :value: $(digest-in-path-optional …
|