| /CTR-SDK-4.2.5/include/nn/hio/CTR/ |
| D | hio_Api.h | 89 Result DeleteFile(const char* path); 104 Result DeleteFile(const wchar_t* path); 119 Result DeleteDirectory(const char* path); 135 Result DeleteDirectory(const wchar_t* path); 149 Result CreateDirectory(const char* path); 164 Result CreateDirectory(const wchar_t* path); 276 Result SetCurrentDirectory(const char* path); 291 Result SetCurrentDirectory(const wchar_t* path);
|
| D | hio_HostFile.h | 115 Result Open(const char* path, bit32 accessMode, OpenDisp disp); 134 Result Open(const wchar_t* path, bit32 accessMode, OpenDisp disp); 271 Result Exists(bool *exist, const char* path); 287 Result Exists(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-4.2.5/build/omake/ |
| D | utildefs.om | 120 public.ls_(options, path) = 122 .SUBDIRS: $(path) 136 public.subdirs_(options, path) = 138 .SUBDIRS: $(path) 165 public.files(options, path) = 169 .SUBDIRS: $(path) 256 public.makeDirectory(path) = 257 $(path): 259 return $(dir $(path)) 272 foreach (path, $(path_list)) [all …]
|
| D | commondefs.funcs.om | 27 # Find the relative path from the project root. 28 # When the path is in 'sources' just below the root, 'sources' is also removed 29 GetSubPath(path) = 30 private.apath = $(absname $(path)) 73 private.CreateCmdFile(path, files) = 74 private.f = $(fopen $(path),w) 95 # Return the .o path 100 AddRuleToMakeObjectFromC(path, src, includes, flags, flags_build, flags_scan) = 101 private.scanner_name = $(SCANNER_PREFIX)-c-$(fullname $(rootname $(path))) 103 ….SCANNER: $(scanner_name): $(src) .PHONY/$(ROOT)/build-setup :value: $(digest-in-path-optional_ $(… [all …]
|
| D | commondefs.om | 70 private.path = $(absname $(HORIZON_ROOT)/../CTR/Addins) 71 value $(if $(file-exists $(path)),$(path),$(EMPTY)) 125 # Tool path setting
|
| D | modulerules.om | 18 # The full path of the object file generated from .c/.cpp/.asm is stored.
|
| D | targetdefs.om | 115 # Get the subdirectory name where generated items are stored from the source path name
|
| /CTR-SDK-4.2.5/include/nn/fs/CTR/MPCore/ |
| D | fs_UserArchive.h | 62 virtual Result OpenFile(IFile** pOut, const Path& path, bit32 mode) = 0; 63 virtual Result OpenDirectory(IDirectory** pOut, const Path& path) = 0; 64 virtual Result DeleteFile(const Path& path) = 0; 66 virtual Result DeleteDirectory(const Path& path) = 0; 67 virtual Result DeleteDirectoryRecursively(const Path& path) = 0; 68 virtual Result CreateFile(const Path& path, s64 size) = 0; 69 virtual Result CreateDirectory(const Path& path) = 0; 80 Result RegisterArchive(const char* path, IArchive* archive, bool isAddOnContent = false, bool isAli…
|
| D | fs_UserFileSystem.h | 80 …static Result TryOpenFileRaw(void** pOut, ArchiveHandle archiveHandle, const Path& path, bit32 mod… 81 …RawDirectly(void** pOut, bit32 archiveType, const Path& archivePath, const Path& path, bit32 mode); 82 static Result TryOpenDirectoryRaw(void** pOut, ArchiveHandle archiveHandle, const Path& path); 83 static Result TryDeleteFileRaw(ArchiveHandle archiveHandle, const Path& path); 85 static Result TryDeleteDirectoryRaw(ArchiveHandle archiveHandle, const Path& path); 86 static Result TryDeleteDirectoryRecursivelyRaw(ArchiveHandle archiveHandle, const Path& path); 87 static Result TryCreateDirectoryRaw(ArchiveHandle archiveHandle, const Path& path);
|
| D | fs_DirectoryBase.h | 36 Result TryInitialize(const wchar_t* path) in TryInitialize() argument 38 return UserFileSystem::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_FileBase.h | 40 Result TryOpenImpl(const wchar_t* path, bit32 mode) in TryOpenImpl() argument 42 return UserFileSystem::TryOpenFile(&m_P, path, mode); in TryOpenImpl() 113 Result TryInitializeRaw(ArchiveHandle handle, const nn::fs::CTR::MPCore::Path& path, bit32 mode) in TryInitializeRaw() argument 115 return UserFileSystem::TryOpenFileRaw(&m_P, handle, path, mode); in TryInitializeRaw() 118 …e, const nn::fs::CTR::MPCore::Path& archivePath, const nn::fs::CTR::MPCore::Path& path, bit32 mode) in TryInitializeRawDirectly() argument 120 return UserFileSystem::TryOpenFileRawDirectly(&m_P, archiveType, archivePath, path, mode); in TryInitializeRawDirectly()
|
| /CTR-SDK-4.2.5/include/nn/fslow/ |
| 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()
|
| D | fslow_IArchive.h | 88 static Path GetPathString(Path path) in GetPathString() argument 90 const typename Path::Char* s = path; in GetPathString() 100 typename Path::Updater u(path); in GetPathString() 103 return path; in GetPathString()
|
| /CTR-SDK-4.2.5/build/runner/ |
| D | run-core_0_2.py | 18 import os.path 33 WF = os.path.normpath(os.path.join(ROOT,"tools/CommandLineTools/wf.exe")) 36 PP = os.path.normpath(os.path.join(ROOT,"tools/CommandLineTools/partner_partner.rb"))
|
| /CTR-SDK-4.2.5/build/omake/platforms/CTR/ |
| D | CTR.commondefs.func.om | 236 # Return the .cci path 250 # Return the path to the E portion of .ccl 264 # Return the path to the R portion of .ccl 278 # Return the .ccl path 292 # Return the .cxi path 306 # Return the .cia path 320 # Return the .cfa path 372 # Return the .cci path 387 # Return the .ccl path 404 # Return the .cia path [all …]
|
| D | CTR.commondefs.om | 56 # Tool path setting 128 # The full path of the vertex shader object file generated from .vsh is stored. 134 …# The path to the built vertex shader object file is stored as a relative path from resources/shad… 142 … the specified source file with SHADER_SOURCES in OMakefile, and get the full path to the .obj file
|
| D | CTR.commondefs.gl.om | 80 # Find the full path of the file name to output 115 # Convert sourcefiles_pre to full path in order to correctly obtain the dependency relationship. 119 # Find the full path of the file name to output
|
| /CTR-SDK-4.2.5/resources/specfiles/ |
| D | Application.rsf | 7 # Specifies the root path of the file system to include in the ROM.
|
| /CTR-SDK-4.2.5/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-4.2.5/include/ |
| D | zlib.h | 1736 ZEXTERN gzFile ZEXPORT gzopen_w OF((const wchar_t *path,
|