| /CTR-SDK-2.4.0/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); 302 Result IsExist(bool *exist, const char* path); 317 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-2.4.0/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) 92 # Return the .o path 97 AddRuleToMakeObjectFromC(path, src, includes, flags, flags_build, flags_scan) = 98 private.scanner_name = $(SCANNER_PREFIX)-c-$(fullname $(rootname $(path))) 100 ….SCANNER: $(scanner_name): $(src) .PHONY/$(ROOT)/build-setup :value: $(digest-in-path-optional_ $(… [all …]
|
| D | commondefs.om | 69 private.path = $(absname $(HORIZON_ROOT)/../CTR/Addins) 70 value $(if $(file-exists $(path)),$(path),$(EMPTY)) 123 # 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 419 # When building a test, the path rules change
|
| /CTR-SDK-2.4.0/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 Result RegisterArchive(const char* path, IArchive* archive);
|
| 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_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);
|
| 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() 110 Result TryInitializeRaw(ArchiveHandle handle, const nn::fs::CTR::MPCore::Path& path, bit32 mode) in TryInitializeRaw() argument 112 return UserFileSystem::TryOpenFileRaw(&m_P, handle, path, mode); in TryInitializeRaw() 115 …e, const nn::fs::CTR::MPCore::Path& archivePath, const nn::fs::CTR::MPCore::Path& path, bit32 mode) in TryInitializeRawDirectly() argument 117 return UserFileSystem::TryOpenFileRawDirectly(&m_P, archiveType, archivePath, path, mode); in TryInitializeRawDirectly()
|
| /CTR-SDK-2.4.0/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-2.4.0/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-2.4.0/build/omake/platforms/CTR/ |
| D | CTR.commondefs.om | 46 # Tool path setting 96 # The full path of the vertex shader object file generated from .vsh is stored. 102 …# The path to the built vertex shader object file is stored as a relative path from resources/shad… 110 … the specified source file with SHADER_SOURCES in OMakefile, and get the full path to the .obj file
|
| D | CTR.commondefs.func.om | 220 # Return the .cci path 234 # Return the path to the E portion of .ccl 248 # Return the path to the R portion of .ccl 262 # Return the .ccl path 276 # Return the .cxi path 290 # Return the .cia path 304 # Return the .cfa path 343 # Return the .cci path 358 # Return the .ccl path 375 # Return the .cia path
|
| 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-2.4.0/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-2.4.0/build/omake_deprecated/ |
| D | commondefs.om | 231 GetSubPath(path) = 232 apath = $(absname $(path)) 329 …scanner_name): $(filename) .PHONY/$(ROOT)/build-setup :value: $(digest-in-path-optional $(INCLUDES… 342 …scanner_name): $(filename) .PHONY/$(ROOT)/build-setup :value: $(digest-in-path-optional $(INCLUDES… 435 ….SCANNER: $(scanner_name): $(infile) .PHONY/$(ROOT)/build-setup :value: $(digest-in-path-optional …
|