| /CTR-SDK-0.13.2/include/nn/svc/ |
| D | svc_Stub.h | 41 nn::Result GetProcessAffinityMask ( bit8 pAffinityMask[], nn::Handle pro… 42 nn::Result SetProcessAffinityMask ( nn::Handle process, const bit8 pAffi… 43 nn::Result GetProcessIdealProcessor ( s32* pOut, nn::Handle process ); 44 nn::Result SetProcessIdealProcessor ( nn::Handle process, s32 processorNum… 45 nn::Result CreateThread ( nn::Handle* pOut, nn::os::ThreadFunc… 48 nn::Result GetThreadPriority ( s32* pOut, nn::Handle thread ); 49 nn::Result SetThreadPriority ( nn::Handle thread, s32 prio ); 50 nn::Result GetThreadAffinityMask ( bit8 pAffinityMask[], nn::Handle thr… 51 nn::Result SetThreadAffinityMask ( nn::Handle thread, const bit8 pAffin… 52 nn::Result GetThreadIdealProcessor ( s32* pOut, nn::Handle thread ); [all …]
|
| D | svc_Inlines.h | 32 inline Result CreateEvent(Handle* pOut, bool isManualReset) in CreateEvent() 37 inline Result CreateTimer(Handle* pOut, bool isManualReset) in CreateTimer() 42 …inline Result WaitSynchronization(s32* pOut, Handle handles[], s32 numHandles, bool waitAll, s64 t… in WaitSynchronization() 54 …inline Result AllocateSharedMemory(Handle* pOut, size_t size, bit32 myPermission, bit32 otherPermi… in AllocateSharedMemory() 58 inline Result MapSharedMemory(Handle sm, uptr addr, bit32 permission) in MapSharedMemory() 63 inline Result UnmapSharedMemory(Handle sm, uptr addr) in UnmapSharedMemory()
|
| /CTR-SDK-0.13.2/include/nn/ |
| D | Handle.h | 82 class Handle{ 84 Handle() : m_Handle(0) in Handle() function 88 Handle(nnHandle handle) : m_Handle(handle.value) in Handle() function 92 explicit Handle(bit32 handle) in Handle() function 119 bool operator ==(const Handle& rhs) const { return this->m_Handle == rhs.m_Handle; } 120 bool operator !=(const Handle& rhs) const { return this->m_Handle != rhs.m_Handle; }
|
| /CTR-SDK-0.13.2/include/nn/os/ |
| D | os_HandleObject.h | 59 nn::Handle GetHandle() const { return m_Handle; } in GetHandle() 91 void SetHandle(nn::Handle handle); 106 nn::Handle m_Handle; 118 m_Handle = Handle(); in Close() 132 inline void HandleObject::SetHandle(nn::Handle handle) in SetHandle() 142 m_Handle = Handle(); in ClearHandle()
|
| /CTR-SDK-0.13.2/include/nn/applet/CTR/ |
| D | applet_Ipc.h | 100 static Handle s_Session; 106 static nn::Result GetLockHandle( nn::Handle* pMutexHandle ); 107 …tId appletId, nn::applet::CTR::AppletAttr appletAttr, nn::Handle* pEventHandle_mesg, nn::Handle* p… 115 …::CTR::AppletId receiverId, u32 command, const u8 pParam[], size_t paramSize, nn::Handle pHandle ); 116 …tId receiverId, u32* pCommand, u8 pParam[], size_t paramSize, s32* pReadLen, nn::Handle* pHandle ); 117 …tId receiverId, u32* pCommand, u8 pParam[], size_t paramSize, s32* pReadLen, nn::Handle* pHandle ); 131 …raryApplet( nn::applet::CTR::AppletId id, const u8 pParam[], size_t paramSize, nn::Handle handle ); 132 …stemApplet( nn::applet::CTR::AppletId id, const u8 pParam[], size_t paramSize, nn::Handle handle ); 133 …raryApplet( nn::applet::CTR::AppletId id, const u8 pParam[], size_t paramSize, nn::Handle handle ); 138 … static nn::Result CloseApplication( const u8 pParam[], size_t paramSize, nn::Handle handle ); [all …]
|
| D | applet_API.h | 73 …void AttachSharedMemoryHandle( os::SharedMemoryBlock* sharedMemory, nn::Handle handle, size_t size… 77 …Result SendMessage( AppletId receiverId, const u8* pParam, size_t paramSize, nn::Handle handle=NN_… 78 …Result TrySendMessage( AppletId receiverId, const u8* pParam, size_t paramSize, nn::Handle handle=… 100 …Result StartLibraryApplet( AppletId id, const u8* pParam=NULL, size_t paramSize=0, Handle handle=N… 107 …Result CloseApplication( const u8* pParam=NULL, size_t paramSize=0, Handle handle=NN_APPLET_HANDLE… 111 …Result JumpToHomeMenu( const u8* pParam=NULL, size_t paramSize=0, Handle handle=NN_APPLET_HANDLE_N… 435 …inline void AttachSharedMemoryHandle( os::SharedMemoryBlock* sharedMemory, nn::Handle handle, size… in AttachSharedMemoryHandle() 456 …inline Result SendMessage( AppletId receiverId, const u8* pParam, size_t paramSize, nn::Handle han… 469 …endMessage( AppletId receiverId, const u8* pParam, size_t paramSize, nn::Handle handle=NN_APPLET_H… 617 …rtLibraryApplet( AppletId id, const u8* pParam=NULL, size_t paramSize=0, Handle handle=NN_APPLET_H… [all …]
|
| D | applet_Wrapper.h | 31 … nn::Handle *pHandle=NULL, nn::fnd::TimeSpan span=NN_APPLET_WAIT_INFINITE ); 257 … nn::Handle *pHandle=NULL, nn::fnd::TimeSpan timeout=NN_APPLET_WAIT_INFINITE ) 278 …pSenderId=NULL, u8* pParam=NULL, size_t paramSize=0, s32* pReadLen=NULL, nn::Handle *pHandle=NULL )
|
| /CTR-SDK-0.13.2/include/nn/dsp/CTR/MPCore/ |
| D | dsp_Api.h | 30 nn::Result InitializeBase(Handle* pSession, const char* name); 31 nn::Result FinalizeBase (Handle* pSession); 39 inline nn::Result InitializeIpc(Handle* pSession) { return detail::InitializeBase(pSession, PORT… in InitializeIpc() 40 inline nn::Result FinalizeIpc (Handle* pSession) { return detail::FinalizeBase (pSession); } in FinalizeIpc() 99 nn::Result RegisterInterruptEvents(nn::Handle handle, s32 type, s32 port = 0); 220 nn::Result GetSemaphoreEventHandle ( nn::Handle *);
|
| /CTR-SDK-0.13.2/include/nn/net/osl/ |
| D | osl_MbufSystem.h | 105 void GetInfomation(nn::Handle* phSharedMemory, size_t* pSize, nn::Handle* phEvent); 114 void Initialize(nn::Handle hSharedMemory, size_t size, nn::Handle hEvent);
|
| /CTR-SDK-0.13.2/include/nn/fs/ |
| D | fs_IpcFile.h | 53 Handle m_Session; 56 File(Handle session) : m_Session(session) {} in File() 59 nn::Result OpenSubFile( nn::Handle* pOut, s64 offset, s64 length );
|
| D | fs_IpcDirectory.h | 47 Handle m_Session; 50 Directory(Handle session) : m_Session(session) {} in Directory()
|
| /CTR-SDK-0.13.2/include/nn/fslow/ |
| D | fslow_HandleTable.h | 31 class Handle 41 Handle() in Handle() function 47 Handle(bit8 fixedValue) in Handle() function 53 Handle(const HandleValue& value) in Handle() function 148 Handle m_Handle; 230 Handle handle(value); in FindEntryFromHandle()
|
| /CTR-SDK-0.13.2/include/nn/y2r/CTR/ |
| D | y2r_Y2r.h | 90 static Handle s_Session; 110 static nn::Result GetTransferEndEvent( nn::Handle* pHandle ); 111 …static nn::Result SetSendingY( nn::Handle srcProcess, u32 pSrc, size_t imageSize, s16 transferUnit… 112 …static nn::Result SetSendingU( nn::Handle srcProcess, u32 pSrc, size_t imageSize, s16 transferUnit… 113 …static nn::Result SetSendingV( nn::Handle srcProcess, u32 pSrc, size_t imageSize, s16 transferUnit… 114 …static nn::Result SetSendingYuv( nn::Handle srcProcess, u32 pSrc, size_t imageSize, s16 transferUn… 119 …static nn::Result SetReceiving( nn::Handle dstProcess, u32 pDst, size_t imageSize, s16 transferUni…
|
| /CTR-SDK-0.13.2/include/nn/midi/CTR/ |
| D | midi_Midi.h | 50 Handle m_Session; 53 Midi(Handle session) : m_Session(session) {} in Midi()
|
| /CTR-SDK-0.13.2/sources/libraries/ndm/CTR/ |
| D | ndm_Interface.hid | 4 "nn/Handle.h", 13 "nn/Handle.h", 31 abstract struct Handle 101 out Handle hEvent
|
| /CTR-SDK-0.13.2/include/nn/dlp/CTR/ |
| D | dlp_ServerIpcClient.h | 60 static Handle s_Session; 66 …static nn::Result Initialize( nn::Handle hSharedMemory, size_t bufSize, u8 maxClientNum, nn::Handl…
|
| D | dlp_FakeClientIpcClient.h | 62 static Handle s_Session; 68 …static nn::Result Initialize( nn::Handle hSharedMemory, size_t bufSize, u8 scanNum, nn::Handle han…
|
| /CTR-SDK-0.13.2/include/nn/ac/CTR/ |
| D | ac_Ac.h | 102 static Handle s_Session; 111 static nn::Result ConnectAsync( const nn::ac::CTR::Config& config, nn::Handle event ); 113 … static nn::Result ConnectFromBrowserAsync( const nn::ac::CTR::Config& config, nn::Handle event ); 118 static nn::Result CloseAsync( nn::Handle event ); 136 static nn::Result BeginScanUsbAccessPoint( nn::Handle allowEvent, nn::Handle denyEvent ); 151 static nn::Result GetNintendoZoneBeaconNotFoundEvent( nn::Handle event ); 152 static nn::Result RegisterDisconnectEvent( nn::Handle event ); 153 static nn::Result GetStatusChangeEvent( nn::Handle* event );
|
| /CTR-SDK-0.13.2/include/nn/fs/CTR/MPCore/ |
| D | fs_UserFileSystem.h | 41 static Result Initialize(nn::Handle handle); 45 static void OpenDirect(void** pOut, Handle handle); 47 static Handle GetFileHandle(void* p); 50 static Result DuplicateHandleForFile(Handle* pOut, void* p, s64 offset, s64 length);
|
| D | fs_UserArchive.h | 31 virtual Result DuplicateHandle(Handle* pOut, s64 offset, s64 length) = 0; 33 virtual Handle GetFileHandle() { return nn::Handle(); } in GetFileHandle()
|
| D | fs_FileBase.h | 60 Result DuplicateHandle(Handle* pOut, s64 offset, s64 length) in DuplicateHandle() 65 void OpenDirect(Handle handle) in OpenDirect() 75 Handle GetHandle() in GetHandle()
|
| /CTR-SDK-0.13.2/sources/libraries/os/ |
| D | os_Synchronization.cpp | 41 nn::Result WaitMultipleImpl(WaitMultipleObjectsArgs* args, nn::Handle* handles) in WaitMultipleImpl() 50 NN_STATIC_ASSERT(sizeof(nn::Handle) == 4); 51 …mplWithAlloca(WaitMultipleObjectsArgs*, s32, nn::Result (*)(WaitMultipleObjectsArgs*, nn::Handle*)) in WaitMultipleImplWithAlloca() argument 84 nn::Handle handles[STATIC_ALLOCATE_SIZE]; in WaitMultiple()
|
| D | os_TransferMemoryBlock.cpp | 39 Handle handle; in Initialize() 59 Handle handle; in TryInitialize() 82 Handle handle, in AttachAndMap()
|
| /CTR-SDK-0.13.2/include/nn/cec/CTR/ |
| D | cec_CecSys.h | 63 static Handle s_Session; 83 static nn::Result GetCecInfoEventHandle( nn::Handle* pEventHandle ); 84 static nn::Result GetChangeStateEventHandle( nn::Handle* pEventHandle ); 86 static nn::Result GetCecInfoEventHandleSys( nn::Handle* pEventHandle );
|
| /CTR-SDK-0.13.2/include/nn/socket/ |
| D | socket_Privileged.h | 52 static Handle s_Session; 64 static nn::Result GetErrorReportEvent( nn::Handle* pEventHandle );
|