| /CTR-SDK-0.13.2/include/nn/hio/CTR/ |
| D | hio_Api.h | 80 Result DeleteFile(const char* path); 92 Result DeleteFile(const wchar_t* path); 105 Result DeleteDirectory(const wchar_t* path); 118 Result DeleteDirectory(const char* path); 130 Result CreateDirectory(const char* path); 142 Result CreateDirectory(const wchar_t* path); 237 Result SetCurrentDirectory(const char* path); 249 Result SetCurrentDirectory(const wchar_t* path);
|
| D | hio_HostDirectory.h | 126 Result Open(const char* path); 204 Result Open(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);
|
| /CTR-SDK-0.13.2/include/nn/fs/CTR/MPCore/ |
| D | fs_UserArchive.h | 54 virtual Result OpenFile(IFile** pOut, const Path& path, bit32 mode) = 0; 55 virtual Result OpenDirectory(IDirectory** pOut, const Path& path) = 0; 56 virtual Result DeleteFile(const Path& path) = 0; 58 virtual Result DeleteDirectory(const Path& path) = 0; 59 virtual Result DeleteDirectoryRecursively(const Path& path) = 0; 60 virtual Result CreateDirectory(const Path& path) = 0; 69 bool RegisterArchive(const char* path, IArchive* archive);
|
| 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() 85 Result TryInitializeRaw(ArchiveHandle handle, const nn::fs::CTR::MPCore::Path& path, bit32 mode) in TryInitializeRaw() argument 87 return UserFileSystem::TryOpenFileRaw(&m_P, handle, path, mode); in TryInitializeRaw() 90 …e, const nn::fs::CTR::MPCore::Path& archivePath, const nn::fs::CTR::MPCore::Path& path, bit32 mode) in TryInitializeRawDirectly() argument 92 return UserFileSystem::TryOpenFileRawDirectly(&m_P, archiveType, archivePath, path, mode); in TryInitializeRawDirectly()
|
| D | fs_DirectoryBase.h | 36 Result TryInitialize(const wchar_t* path) in TryInitialize() argument 38 return TryOpenDirectory(&m_P, path); in TryInitialize() 41 Result TryInitializeRaw(ArchiveHandle handle, const nn::fs::CTR::MPCore::Path& path) in TryInitializeRaw() argument 43 return UserFileSystem::TryOpenDirectoryRaw(&m_P, handle, path); in TryInitializeRaw()
|
| D | fs_UserFileSystem.h | 73 …static Result TryOpenFileRaw(void** pOut, ArchiveHandle archiveHandle, const Path& path, bit32 mod… 74 …RawDirectly(void** pOut, bit32 archiveType, const Path& archivePath, const Path& path, bit32 mode); 75 static Result TryOpenDirectoryRaw(void** pOut, ArchiveHandle archiveHandle, const Path& path); 76 static Result TryDeleteFileRaw(ArchiveHandle archiveHandle, const Path& path); 78 static Result TryDeleteDirectoryRaw(ArchiveHandle archiveHandle, const Path& path); 79 static Result TryDeleteDirectoryRecursivelyRaw(ArchiveHandle archiveHandle, const Path& path); 80 static Result TryCreateDirectoryRaw(ArchiveHandle archiveHandle, const Path& path);
|
| D | fs_FileSystemBase.h | 295 ArchiveHandle GetArchiveHandle(const char* path); 296 ArchiveHandle GetArchiveHandle(const wchar_t* path);
|
| /CTR-SDK-0.13.2/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 CreateDirectory(nn::fs::Transaction transaction, Path path, nn::fs::Attributes attr… 63 virtual Result GetPathMark( nn::fs::PathMark* pathMark, Path path) in GetPathMark() argument 66 NN_UNUSED_VAR( path); in GetPathMark() 148 static Path GetPathString(Path path) in GetPathString() argument [all …]
|
| D | fslow_Path.h | 140 LowPath(const char* path) in LowPath() argument 144 this->m_Data = path; in LowPath() 145 this->m_BinarySize = (std::strlen(path) + 1) * sizeof(*path); in LowPath() 148 LowPath(const wchar_t* path) in LowPath() argument 152 this->m_Data = path; in LowPath() 153 this->m_BinarySize = (std::wcslen(path) + 1) * sizeof(*path); in LowPath() 168 explicit BinaryProxy(const LowPath* path) : m_Path(path) {} in BinaryProxy()
|
| D | fslow_ArchiveMapFileSystem.h | 90 …Result OpenFile(FileHandle* pOut, nn::fs::Transaction transaction, Path path, bit32 mode, nn::fs::… in OpenFile() argument 94 return OpenFile( pOut, transaction, path, pathMark, mode, attributes); in OpenFile() 97 …Result OpenFile(FileHandle* pOut, nn::fs::Transaction transaction, Path path, nn::fs::PathMark pat… in OpenFile() argument 99 ArchiveName name = GetSelf().GetArchiveName(path); in OpenFile() 114 …_IF_FAILED(acc->OpenFile(&file, transaction, GetSelf().GetPathString(Move(path)), pathMark, mode, … in OpenFile() 177 Result OpenDirectory(DirectoryHandle* pOut, Path path) in OpenDirectory() argument 179 ArchiveName name = GetSelf().GetArchiveName(path); in OpenDirectory() 194 … NN_UTIL_RETURN_IF_FAILED(acc->OpenDirectory(&directory, GetSelf().GetPathString(Move(path)))); in OpenDirectory() 224 Result DeleteFile(nn::fs::Transaction transaction, Path path) in DeleteFile() argument 226 ArchiveName name = GetSelf().GetArchiveName(path); in DeleteFile() [all …]
|
| /CTR-SDK-0.13.2/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-0.13.2/include/nn/fs/ |
| D | fs_IpcFileSystem.h | 114 …:Transaction transaction, bit64 archiveHandle, bit32 pathType, const bit8 path[], size_t pathLengt… 115 …onst bit8 newPath[], size_t archivePathLength, bit32 pathType, const bit8 path[], size_t pathLengt… 116 …:Transaction transaction, bit64 archiveHandle, bit32 pathType, const bit8 path[], size_t pathLengt… 118 …:Transaction transaction, bit64 archiveHandle, bit32 pathType, const bit8 path[], size_t pathLengt… 119 …:Transaction transaction, bit64 archiveHandle, bit32 pathType, const bit8 path[], size_t pathLengt… 120 …:Transaction transaction, bit64 archiveHandle, bit32 pathType, const bit8 path[], size_t pathLengt… 122 …ectory( nn::Handle* pOut, bit64 archiveHandle, bit32 pathType, const bit8 path[], size_t pathLengt… 123 …hive( bit64* archiveHandle, bit32 archiveType, bit32 pathType, const bit8 path[], size_t pathLengt… 124 …nn::Result ControlArchive( bit64 archiveHandle, bit32 pathType, const bit8 path[], size_t pathLeng…
|
| /CTR-SDK-0.13.2/build/omake/ |
| D | commondefs.om | 225 GetSubPath(path) = 226 apath = $(absname $(path)) 317 …scanner_name): $(filename) .PHONY/$(ROOT)/build-setup :value: $(digest-in-path-optional $(INCLUDES… 330 …scanner_name): $(filename) .PHONY/$(ROOT)/build-setup :value: $(digest-in-path-optional $(INCLUDES… 423 ….SCANNER: $(scanner_name): $(infile) .PHONY/$(ROOT)/build-setup :value: $(digest-in-path-optional …
|