Home
last modified time | relevance | path

Searched defs:handle (Results 1 – 19 of 19) sorted by relevance

/CTR-SDK-0.14.4/include/nn/fslow/
Dfslow_ArchiveMapFileSystem.h67 ArchiveHandle handle = GetSelf().GetHandleTable().Register(archive); in AddArchive() local
82 ArchiveHandle handle; in RemoveArchive() local
103 ArchiveHandle handle; in OpenFile() local
118 Result ReadFile(s32* pOut, const FileHandle& handle, s64 offset, void* buffer, size_t size) in ReadFile()
128 … Result WriteFile(s32* pOut, const FileHandle& handle, s64 offset, const void* buffer, size_t size) in WriteFile()
138 Result GetFileSize(s64* pOut, const FileHandle& handle) in GetFileSize()
148 Result SetFileSize(const FileHandle& handle, s64 size) in SetFileSize()
158 Result CloseFile(const FileHandle& handle) in CloseFile()
177 ArchiveHandle handle; in OpenDirectory() local
192 …Result ReadDirectory(s32* pNumEntriesOut, const DirectoryHandle& handle, DirectoryEntry entries[],… in ReadDirectory()
[all …]
Dfslow_SafeHandle.h270 …bool HasHandle(const SafeHandle& handle) const { return IsInitialized() && (handle == m_Han… in HasHandle()
302 void* LockHandle(SafeHandle handle) in LockHandle()
308 void UnlockHandle(SafeHandle handle) { return UnlockEntry(FindEntry(handle)); } in UnlockHandle()
321 Accessor(SafeHandleTable& table, SafeHandle handle) in Accessor()
376 void Unregister(SafeHandle handle) in Unregister()
381 TObject* LockHandle(SafeHandle handle) in LockHandle()
386 void UnlockHandle(SafeHandle handle) in UnlockHandle()
391 bool HasHandle(SafeHandle handle) in HasHandle()
400 Entry* FindEntry(Handle handle) const { return m_Table.FindEntry(handle); } in FindEntry()
407 …Accessor(SafeArchiveHandleTable& table, Handle handle) : SafeHandleTable::Accessor(table.m_Table, … in Accessor()
/CTR-SDK-0.14.4/sources/libraries/os/
Dos_HandleManager.cpp23 void nnosHandleManagerAttachEventHandle(nnosEvent* p, nnHandle handle) in nnosHandleManagerAttachEventHandle()
35 void nnosHandleManagerAttachMutexHandle(nnosMutex* p, nnHandle handle) in nnosHandleManagerAttachMutexHandle()
47 void nnosHandleManagerAttachSemaphoreHandle(nnosSemaphore* p, nnHandle handle) in nnosHandleManagerAttachSemaphoreHandle()
59 void nnosHandleManagerAttachTimerHandle(nnosTimer* p, nnHandle handle) in nnosHandleManagerAttachTimerHandle()
72 void nnosHandleManagerAttachSharedMemoryHandle(nnosSharedMemoryBlock* p, nnHandle handle) in nnosHandleManagerAttachSharedMemoryHandle()
Dos_TransferMemoryBlock.cpp40 Handle handle; in Initialize() local
60 Handle handle; in TryInitialize() local
83 Handle handle, in AttachAndMap()
Dos_SharedMemory.cpp102 Handle handle; in TryInitialize() local
120 void SharedMemoryBlock::AttachAndMap(Handle handle, size_t size, bool readOnly) in AttachAndMap()
Dos_Thread.cpp213 Handle handle; in TryInitializeAndStartImpl() local
268 Handle handle; in Thread() local
/CTR-SDK-0.14.4/include/nn/
DHandle.h88 Handle(nnHandle handle) : m_Handle(handle.value) in Handle()
92 explicit Handle(bit32 handle) in Handle()
121 operator nnHandle() const { nnHandle handle = {this->m_Handle}; return handle; } in nnHandle() local
/CTR-SDK-0.14.4/include/nn/fnd/
Dfnd_BufferManager.h59 void Register(CacheHandle handle, nn::fnd::MemoryRange memoryRange) in Register()
74 bool HasHandle(CacheHandle handle) in HasHandle()
89 Entry* FindEntry(CacheHandle handle) in FindEntry()
131 CacheHandle handle = PublishCacheHandle(); in Register() local
143 bool Unregister(nn::fnd::MemoryRange* pOut, CacheHandle handle) in Unregister()
213 bool AcquireCache(nn::fnd::MemoryRange* pOut, CacheHandle handle) in AcquireCache()
/CTR-SDK-0.14.4/include/nn/os/
Dos_HandleObject.h132 inline void HandleObject::SetHandle(nn::Handle handle) in SetHandle()
Dos_Mutex.h174 Handle handle; in TryInitializeImpl() local
Dos_Semaphore.h148 Handle handle; in TryInitializeImpl() local
Dos_Timer.h168 Handle handle; in TryInitializeImpl() local
Dos_Event.h61 Handle handle; in TryInitializeImpl() local
Dos_Synchronization.h155 Handle handle = GetHandle(); in WaitOneImpl() local
/CTR-SDK-0.14.4/include/nn/fs/CTR/MPCore/
Dfs_DirectoryBase.h40 Result TryInitializeRaw(ArchiveHandle handle, const nn::fs::CTR::MPCore::Path& path) in TryInitializeRaw()
Dfs_FileBase.h87 void OpenDirect(Handle handle) in OpenDirect()
111 Result TryInitializeRaw(ArchiveHandle handle, const nn::fs::CTR::MPCore::Path& path, bit32 mode) in TryInitializeRaw()
/CTR-SDK-0.14.4/sources/libraries/fslow/
Dfslow_SafeHandle.cpp301 void SafeHandleTable::Unregister(SafeHandle handle) in Unregister()
354 bool SafeHandleTable::LockEntry(SafeHandleTableEntry* pEntry, SafeHandle handle) in LockEntry()
/CTR-SDK-0.14.4/include/nn/applet/CTR/
Dapplet_API.h485 …ttachTransferMemoryHandle( os::TransferMemoryBlock* transferMemory, nn::Handle handle, size_t size… in AttachTransferMemoryHandle()
1028 …hTransferMemoryHandle( nn::os::TransferMemoryBlock* transferMemory, nn::Handle handle, size_t size… in nnappletAttachTransferMemoryHandle()
/CTR-SDK-0.14.4/sources/libraries/fnd/detail/
Dfnd_DetailHeap.cpp103 IsValidHeapHandle(ConstHeap handle) in IsValidHeapHandle()