| /CTR-SDK-0.13.2/include/nn/fnd/ |
| D | fnd_BufferManager.h | 23 namespace nn { namespace fnd { 44 class Entry : public nn::fnd::IntrusiveLinkedList<Entry>::Item 49 nn::fnd::MemoryRange m_MemoryRange; 59 void Register(CacheHandle handle, nn::fnd::MemoryRange memoryRange) in Register() 67 nn::fnd::MemoryRange Unregister() in Unregister() 85 nn::fnd::IntrusiveLinkedList<Entry> m_CacheList; 125 bool Register(CacheHandle* pOut, const nn::fnd::MemoryRange& memoryRange) in Register() 143 bool Unregister(nn::fnd::MemoryRange* pOut, CacheHandle handle) in Unregister() 159 bool UnregisterOldest(nn::fnd::MemoryRange* pOut) in UnregisterOldest() 178 nn::fnd::BuddyHeapTemplate<BUDDY_PAGE_SIZE, MaxOrder, nn::os::LockPolicy::NoLock > m_Buddy; [all …]
|
| D | fnd_Result.h | 28 namespace nn { namespace fnd { 44 …Result::LEVEL_USAGE, Result::SUMMARY_INVALID_ARGUMENT, Result::MODULE_NN_FND, nn::fnd::DESCRIPTION… 49 …Result::LEVEL_USAGE, Result::SUMMARY_INVALID_ARGUMENT, Result::MODULE_NN_FND, nn::fnd::DESCRIPTION…
|
| /CTR-SDK-0.13.2/include/nn/os/ |
| D | os_Alarm.h | 119 void SetOneShot(nn::fnd::TimeSpan time, AlarmHandler handler, void* param); 122 void SetOneShot(nn::fnd::TimeSpan time, void (*handler)(T* param, bool cancelled), T* param); 137 …void SetPeriodic(nn::fnd::TimeSpan initial, nn::fnd::TimeSpan interval, AlarmHandler handler, void… 140 …void SetPeriodic(nn::fnd::TimeSpan initial, nn::fnd::TimeSpan interval, void (*handler)(T* param, … 153 …void SetPeriodic(nn::fnd::TimeSpan interval, AlarmHandler handler, void* param) { SetPeriodic(0, i… in SetPeriodic() 156 … void SetPeriodic(nn::fnd::TimeSpan interval, void (*handler)(T* param, bool cancelled), T* param); 199 nn::fnd::InterlockedVariable<Flags> m_Flags; 208 inline void Alarm::SetOneShot(nn::fnd::TimeSpan time, void (*handler)(T* param, bool cancelled), T*… in SetOneShot() 214 inline void Alarm::SetPeriodic(nn::fnd::TimeSpan initial, nn::fnd::TimeSpan interval, void (*handle… in SetPeriodic() 220 inline void Alarm::SetPeriodic(nn::fnd::TimeSpan interval, void (*handler)(T*, bool), T* param) in SetPeriodic()
|
| D | os_Tick.h | 58 Tick(nn::fnd::TimeSpan span); 68 operator nn::fnd::TimeSpan() const; 75 nn::fnd::TimeSpan ToTimeSpan() const; 95 inline Tick& operator+=(fnd::TimeSpan rhs); 96 Tick operator+(fnd::TimeSpan rhs) const { Tick ret(*this); return ret += rhs; } 108 inline Tick::Tick(nn::fnd::TimeSpan span) : m_Tick(nnmathMultiplyAndDivide(span.GetNanoSeconds(), T… in Tick() 112 inline Tick::operator nn::fnd::TimeSpan() const in TimeSpan() 114 …return nn::fnd::TimeSpan::FromNanoSeconds(nnmathMultiplyAndDivide(m_Tick, 1000 * 1000 * 1000, TICK… in TimeSpan() 117 inline nn::fnd::TimeSpan Tick::ToTimeSpan() const in ToTimeSpan() 122 inline Tick& Tick::operator+=(fnd::TimeSpan rhs)
|
| D | os_Timer.h | 111 void StartOneShot(nn::fnd::TimeSpan timeSpan); 122 void StartPeriodic(nn::fnd::TimeSpan first, nn::fnd::TimeSpan interval); 160 void StartImpl(nn::fnd::TimeSpan first, nn::fnd::TimeSpan interval); 195 inline void Timer::StartImpl(nn::fnd::TimeSpan initial, nn::fnd::TimeSpan interval) in StartImpl() 200 inline void Timer::StartPeriodic(nn::fnd::TimeSpan initial, nn::fnd::TimeSpan interval) in StartPeriodic() 206 inline void Timer::StartOneShot(nn::fnd::TimeSpan initial) in StartOneShot()
|
| D | os_Synchronization.h | 77 bool WaitOne(nn::fnd::TimeSpan timeout); 99 static bool WaitAll(WaitObject* objs[], s32 numObjects, nn::fnd::TimeSpan timeout); 122 static s32 WaitAny(WaitObject* objs[], s32 numObjects, nn::fnd::TimeSpan timeout); 163 inline bool WaitObject::WaitOne(nn::fnd::TimeSpan timeout) in WaitOne() 170 inline bool WaitObject::WaitAll(WaitObject* objs[], s32 numObjects, nn::fnd::TimeSpan timeout) in WaitAll() 184 inline s32 WaitObject::WaitAny(WaitObject* objs[], s32 numObjects, nn::fnd::TimeSpan timeout) in WaitAny()
|
| /CTR-SDK-0.13.2/sources/libraries/fnd/ |
| D | fnd_PrintResultImpl.cpp | 37 namespace nn { namespace fnd { namespace 42 CASE_GET_RESULT_DESCRIPTION_STRING_IMPL(::nn::fnd, DESCRIPTION_INVALID_NODE) in CASE_GET_RESULT_DESCRIPTION_STRING_IMPL() argument 43 CASE_GET_RESULT_DESCRIPTION_STRING_IMPL(::nn::fnd, DESCRIPTION_ALREADY_LISTED) in CASE_GET_RESULT_DESCRIPTION_STRING_IMPL() 44 CASE_GET_RESULT_DESCRIPTION_STRING_IMPL(::nn::fnd, DESCRIPTION_OBSOLETE_RESULT) in CASE_GET_RESULT_DESCRIPTION_STRING_IMPL()
|
| D | fnd_ExpHeap.cpp | 19 namespace nn { namespace fnd { namespace 31 …nn::fnd::detail::Heap heap = detail::CreateHeap(&m_ExpHeapImpl, reinterpret_cast<void*>(addr), siz… in Initialize() 83 nn::fnd::ExpHeapBase::BlockVisitor f; 96 void ExpHeapBase::VisitAllBlocks(nn::fnd::ExpHeapBase::BlockVisitor visitor, uptr param) in VisitAllBlocks()
|
| /CTR-SDK-0.13.2/include/nn/net/osl/ |
| D | osl_EventFlag.h | 66 bit32 Wait(bit32 pattern, WaitMode mode, nn::fnd::TimeSpan timeout); 69 return Wait(pattern, mode, nn::fnd::TimeSpan::FromNanoSeconds(NN_OS_WAIT_INFINITE)); in Wait() 72 bit32 WaitAndClear(bit32 pattern, WaitMode mode, bit32 clear, nn::fnd::TimeSpan timeout); 75 …return WaitAndClear(pattern, mode, clear, nn::fnd::TimeSpan::FromNanoSeconds(NN_OS_WAIT_INFINITE)); in WaitAndClear() 81 bool WaitEventWithTimeout(EventImpl& event, nn::fnd::TimeSpan& timeout); 84 static inline fnd::TimeSpan InfiniteTimeSpan() in InfiniteTimeSpan() 86 return fnd::TimeSpan::FromNanoSeconds(-1); in InfiniteTimeSpan() 99 nn::fnd::InterlockedVariable<bit32> m_flag;
|
| /CTR-SDK-0.13.2/sources/libraries/test/ |
| D | test_New.cpp | 43 namespace nn { namespace drivers { namespace fnd { namespace 44 extern nn::fnd::MemoryRange AllocateBuffer(size_t requiredSize, size_t idealSize) in AllocateBuffer() 50 return nn::fnd::MemoryRange(begin, begin + requiredSize); in AllocateBuffer() 53 extern void DeallocateBuffer(const nn::fnd::MemoryRange& memoryRange) in DeallocateBuffer()
|
| /CTR-SDK-0.13.2/include/nn/cec/CTR/private/ |
| D | cec_DataTypes.h | 46 nn::fnd::DateTimeParameters sendDate; //!< 送信日時(ms) 47 nn::fnd::DateTimeParameters recvDate; //!< 受信日時(ms) 48 nn::fnd::DateTimeParameters createDate; //!< 作成日時(ms)
|
| /CTR-SDK-0.13.2/include/nn/hid/CTR/ |
| D | hid_HidBase.h | 64 bool WaitSampling(nn::fnd::TimeSpan timeout); 89 static s32 WaitSamplingAny(HidBase* devices[], s32 numDevices, nn::fnd::TimeSpan timeout); 104 inline bool HidBase::WaitSampling(nn::fnd::TimeSpan timeout) in WaitSampling() 115 inline s32 HidBase::WaitSamplingAny(HidBase* devices[], s32 numDevices, nn::fnd::TimeSpan timeout) in WaitSamplingAny()
|
| /CTR-SDK-0.13.2/sources/libraries/os/ |
| D | os_Initialize.cpp | 25 NN_DBG_DECLARE_GET_RESULT_DESCRIPTION_STRING_IMPL_KEEPER(fnd) 37 NN_DBG_USE_GET_RESULT_DESCRIPTION_STRING_IMPL_KEEPER(fnd); in Initialize()
|
| D | os_Timer.cpp | 55 …pTimer->StartPeriodic(nn::fnd::TimeSpan::FromNanoSeconds(first), nn::fnd::TimeSpan::FromNanoSecond… in nnosTimerStartPeriodic() 61 pTimer->StartOneShot(nn::fnd::TimeSpan::FromNanoSeconds(time)); in nnosTimerStartOneShot()
|
| D | os_Alarm.cpp | 28 using namespace nn::fnd; 229 pAlarm->SetOneShot(nn::fnd::TimeSpan::FromNanoSeconds(time), handler, param); in nnosAlarmSetOneShot() 235 …pAlarm->SetPeriodic(nn::fnd::TimeSpan::FromNanoSeconds(initial), nn::fnd::TimeSpan::FromNanoSecond… in nnosAlarmSetPeriodic()
|
| /CTR-SDK-0.13.2/include/nn/init/ |
| D | init_Allocator.h | 27 namespace nn { namespace fnd { 49 nn::fnd::IAllocator* GetAllocator(void);
|
| /CTR-SDK-0.13.2/sources/libraries/fnd/detail/ |
| D | fnd_DetailHeapCommon.h | 25 namespace nn { namespace fnd { namespace detail { 132 ((void*)(((nn::fnd::detail::NNSiFndHeapHead*)(heap))->heapStart)) 144 (((nn::fnd::detail::NNSiFndHeapHead*)(heap))->heapEnd)
|
| /CTR-SDK-0.13.2/include/nn/applet/CTR/ |
| D | applet_API.h | 40 bool TryLock( nn::fnd::TimeSpan timeout=NO_WAIT); 46 bool WaitForRegister( AppletId appletId, nn::fnd::TimeSpan span ); 77 …u8* pParam, size_t paramSize, nn::Handle handle=NN_APPLET_HANDLE_NONE, nn::fnd::TimeSpan timeout=W… 100 … pParam=NULL, size_t paramSize=0, Handle handle=NN_APPLET_HANDLE_NONE, nn::fnd::TimeSpan timeout=W… 213 inline bool TryLock(nn::fnd::TimeSpan timeout = NN_APPLET_NO_WAIT) 343 … inline bool WaitForRegister( AppletId appletId, nn::fnd::TimeSpan span = NN_APPLET_WAIT_INFINITE ) 456 …u8* pParam, size_t paramSize, nn::Handle handle=NN_APPLET_HANDLE_NONE, nn::fnd::TimeSpan timeout=W… 617 … pParam=NULL, size_t paramSize=0, Handle handle=NN_APPLET_HANDLE_NONE, nn::fnd::TimeSpan timeout=W… 845 NN_EXTERN_C inline bool nnappletTryLock(nn::fnd::TimeSpan timeout=NN_APPLET_NO_WAIT) 879 NN_EXTERN_C inline bool nnappletWaitForRegister( AppletId appletId, nn::fnd::TimeSpan span=NN_APPLE…
|
| /CTR-SDK-0.13.2/include/nn/ptm/CTR/ |
| D | ptm_Api.h | 61 Result SetRtcAlarm(nn::fnd::DateTime datetime); 73 Result GetRtcAlarm(nn::fnd::DateTime *pDatetime);
|
| /CTR-SDK-0.13.2/include/nn/cec/CTR/ |
| D | cec_MessageBoxSystem.h | 77 void SetLastOpenedDate(const nn::fnd::DateTimeParameters& dateTime); 78 nn::fnd::DateTimeParameters GetLastOpenedDate();
|
| D | cec_Control.h | 41 nn::fnd::DateTimeParameters recvDate; //!< 受信日時 104 static nn::Result Initialize(nn::fnd::IAllocator& cecAllocFunc); 216 nn::Result Initialize(nn::fnd::IAllocator& cecAllocFunc); 232 inline nn::Result Initialize(nn::fnd::IAllocator& cecAllocFunc) in Initialize()
|
| D | cec_Message.h | 296 nn::Result SetSendDate(const nn::fnd::DateTimeParameters& date); 301 nn::fnd::DateTimeParameters GetSendDate() const; 303 nn::Result SetRecvDate(const nn::fnd::DateTimeParameters& date); 308 nn::fnd::DateTimeParameters GetRecvDate() const; 310 nn::Result SetCreateDate(const nn::fnd::DateTimeParameters& date); 315 nn::fnd::DateTimeParameters GetCreateDate() const;
|
| D | cec_MessageBoxInfoReader.h | 277 nn::fnd::DateTimeParameters GetMessageSendDate(CecBoxType boxType, u32 messIndex); 285 nn::fnd::DateTimeParameters GetMessageRecvDate(CecBoxType boxType, u32 messIndex); 293 nn::fnd::DateTimeParameters GetMessageCreateDate(CecBoxType boxType, u32 messIndex);
|
| /CTR-SDK-0.13.2/include/nn/font/ |
| D | font_Stopwatch.h | 45 using namespace nn::fnd; in Stop() 56 nn::fnd::TimeSpan GetElapsedTime() const in GetElapsedTime()
|
| /CTR-SDK-0.13.2/include/nn/http/ |
| D | http_Connection.h | 241 nn::Result Read(u8* pBodyBuf, size_t bufLen, const nn::fnd::TimeSpan& timeout); 282 …nn::Result GetHeaderField(const char* pLabel, char* pFieldBuf, size_t bufSize, const nn::fnd::Time… 312 …nn::Result GetHeaderAll(char* pHeaderBuf, size_t bufSize, const nn::fnd::TimeSpan& timeout, size_t… 336 nn::Result GetStatusCode(s32* pStatusCodeCourier, const nn::fnd::TimeSpan& timeout) const; 492 …nn::Result SendPostDataAscii(const char* pLabel, const char* pValue, const nn::fnd::TimeSpan& time… 523 …Binary(const char* pLabel, const void* pValue, size_t valueSize, const nn::fnd::TimeSpan& timeout); 552 …nn::Result SendPostDataRaw(const void* pValue, size_t valueSize, const nn::fnd::TimeSpan& timeout);
|