Home
last modified time | relevance | path

Searched refs:timeout (Results 1 – 25 of 28) sorted by relevance

12

/CTR-SDK-0.14.23/CTR_SDK-0_14_23-20110107-en/CTR_SDK/include/nn/hid/CTR/
Dhid_HidBase.h62 bool WaitSampling(nn::fnd::TimeSpan timeout);
87 static s32 WaitSamplingAny(HidBase* devices[], s32 numDevices, nn::fnd::TimeSpan timeout);
101 inline bool HidBase::WaitSampling(nn::fnd::TimeSpan timeout) in WaitSampling() argument
103 return WaitOne(timeout); in WaitSampling()
112 inline s32 HidBase::WaitSamplingAny(HidBase* devices[], s32 numDevices, nn::fnd::TimeSpan timeout) in WaitSamplingAny() argument
114 … nn::os::WaitObject::WaitAny(reinterpret_cast<nn::os::WaitObject**>(devices), numDevices, timeout); in WaitSamplingAny()
/CTR-SDK-0.14.23/CTR_SDK-0_14_23-20110107-en/CTR_SDK/include/nn/os/
Dos_Synchronization.h78 bool WaitOne(nn::fnd::TimeSpan timeout);
100 static bool WaitAll(WaitObject* objs[], s32 numObjects, nn::fnd::TimeSpan timeout);
123 static s32 WaitAny(WaitObject* objs[], s32 numObjects, nn::fnd::TimeSpan timeout);
164 inline bool WaitObject::WaitOne(nn::fnd::TimeSpan timeout) in WaitOne() argument
166 nn::Result result = WaitOneImpl(timeout.GetNanoSeconds()); in WaitOne()
171 inline bool WaitObject::WaitAll(WaitObject* objs[], s32 numObjects, nn::fnd::TimeSpan timeout) in WaitAll() argument
174 nn::Result result = WaitMultiple(&dummy, objs, numObjects, true, timeout.GetNanoSeconds()); in WaitAll()
185 inline s32 WaitObject::WaitAny(WaitObject* objs[], s32 numObjects, nn::fnd::TimeSpan timeout) in WaitAny() argument
188 nn::Result result = WaitMultiple(&ret, objs, numObjects, false, timeout.GetNanoSeconds()); in WaitAny()
Dos_Mutex.h146 bool TryLock(nn::fnd::TimeSpan timeout = 0) { return this->WaitOne(timeout); }
259 NN_EXTERN_C bool nnosMutexTryLock(nnosMutex* this_, s64 timeout);
Dos_Semaphore.h136 bool TryAcquire(nn::fnd::TimeSpan timeout) { return this->WaitOne(timeout); } in TryAcquire() argument
Dos_Event.h193 bool Wait(nn::fnd::TimeSpan timeout) { return EventBase::WaitOne(timeout); } in Wait() argument
/CTR-SDK-0.14.23/CTR_SDK-0_14_23-20110107-en/CTR_SDK/sources/libraries/os/
Dos_Synchronization.cpp38 s64* timeout; member
47 …nn::svc::WaitSynchronization(args->pOut, handles, args->numHandles, args->waitAll, *args->timeout); in WaitMultipleImpl()
78 … WaitObject::WaitMultiple(s32* pOut, WaitObject* objs[], s32 numHandles, bool waitAll, s64 timeout) in WaitMultiple() argument
89 return nn::svc::WaitSynchronization(pOut, handles, numHandles, waitAll, timeout); in WaitMultiple()
98 args.timeout = &timeout; in WaitMultiple()
Dos_Mutex.cpp59 bool nnosMutexTryLock(nnosMutex* p, s64 timeout) in nnosMutexTryLock() argument
62 return pMutex->TryLock(TimeSpan::FromNanoSeconds(timeout)); in nnosMutexTryLock()
/CTR-SDK-0.14.23/CTR_SDK-0_14_23-20110107-en/CTR_SDK/include/nn/net/osl/
Dosl_EventFlag.h60 bit32 Wait(bit32 pattern, WaitMode mode, nn::fnd::TimeSpan timeout);
63 bit32 WaitAndClear(bit32 pattern, WaitMode mode, bit32 clear, nn::fnd::TimeSpan timeout);
109 …slEventFlagWaitSignal(nnnetOslEventFlag* this_, bit32 pattern, nnnetOslWaitMode mode, s64 timeout);
111 …AndClear(nnnetOslEventFlag* this_, bit32 pattern, nnnetOslWaitMode mode, bit32 clear, s64 timeout);
/CTR-SDK-0.14.23/CTR_SDK-0_14_23-20110107-en/CTR_SDK/include/nn/svc/
Dsvc_Inlines.h42 … Result WaitSynchronization(s32* pOut, Handle handles[], s32 numHandles, bool waitAll, s64 timeout) in WaitSynchronization() argument
51 return WaitSynchronizationN(pOut, handles, numHandles, waitAll, timeout); in WaitSynchronization()
/CTR-SDK-0.14.23/CTR_SDK-0_14_23-20110107-en/CTR_SDK/build/runner/
Drun-core_0_2.py31 def run_partner(macro, debuggername, timeout, stoppattern): argument
32 …window-title %s --timeout %d --stop-pattern "%s"' % (PP, macro, debuggername, timeout, stoppattern)
33 …indow-title %s --timeout %d --stop-pattern "%s"' % (PP, macro, debuggername, timeout, stoppattern))
/CTR-SDK-0.14.23/CTR_SDK-0_14_23-20110107-en/CTR_SDK/include/nn/http/
Dhttp_Connection.h302 nn::Result Read(u8* pBodyBuf, size_t bufLen, const nn::fnd::TimeSpan& timeout);
356 … char* pLabel, char* pFieldBuf, size_t bufSize, const nn::fnd::TimeSpan& timeout, size_t* pFieldLe…
386 …nn::Result GetHeaderAll(char* pHeaderBuf, size_t bufSize, const nn::fnd::TimeSpan& timeout, size_t…
410 nn::Result GetStatusCode(s32* pStatusCodeCourier, const nn::fnd::TimeSpan& timeout) const;
626 …Result SendPostDataAscii(const char* pLabel, const char* pValue, const nn::fnd::TimeSpan& timeout);
670 …Binary(const char* pLabel, const void* pValue, size_t valueSize, const nn::fnd::TimeSpan& timeout);
712 …nn::Result SendPostDataRaw(const void* pValue, size_t valueSize, const nn::fnd::TimeSpan& timeout);
Dhttp_ConnectionIpc.h117 …adBodyWithTimeout( ConnectionHandle handle, u8 bodyCourier[], size_t bodyCourierLen, s64 timeout );
128 … handle, const char8 label[], size_t labelLen, const char8 value[], size_t valueLen, s64 timeout );
130 …dle handle, const char8 label[], size_t labelLen, const u8 value[], size_t valueLen, s64 timeout );
132 …dPostDataRawWithTimeout( ConnectionHandle handle, const u8 value[], size_t valueLen, s64 timeout );
136 …size_t labelLen, char8 valueCourier[], size_t valueCourierLen, u32* fieldLenCourier, s64 timeout );
138 …le handle, char8 headerCourier[], size_t headerCourierLen, u32* allHeaderLenCourier, s64 timeout );
140 …n::Result GetResultCodeWithTimeout( ConnectionHandle handle, s32* resultCodeCourier, s64 timeout );
/CTR-SDK-0.14.23/CTR_SDK-0_14_23-20110107-en/CTR_SDK/include/nn/net/compatible/nnet/
Dnnet.h77 s32 (* startup) (struct NNETInstance *ins, s32 timeout); /**< startup関数 */
78 s32 (* cleanup) (struct NNETInstance *ins, s32 timeout); /**< cleanup関数 */
133 extern s32 NNET_StartupIF(NNETInstance *ins, s32 timeout);
134 extern s32 NNET_CleanupIF(NNETInstance *ins, s32 timeout);
/CTR-SDK-0.14.23/CTR_SDK-0_14_23-20110107-en/CTR_SDK/include/nn/applet/CTR/
Dapplet_API.h41 bool TryLock( nn::fnd::TimeSpan timeout=NO_WAIT);
83 …ze_t paramSize, nn::Handle handle=NN_APPLET_HANDLE_NONE, nn::fnd::TimeSpan timeout=WAIT_INFINITE );
214 inline bool TryLock(nn::fnd::TimeSpan timeout = NN_APPLET_NO_WAIT)
216 return detail::TryLock(timeout);
503 …ize_t paramSize, nn::Handle handle=NN_APPLET_HANDLE_NONE, nn::fnd::TimeSpan timeout=WAIT_INFINITE )
505 return detail::SendMessage( receiverId, pParam, paramSize, handle, timeout );
950 NN_EXTERN_C inline bool nnappletTryLock(nn::fnd::TimeSpan timeout=NN_APPLET_NO_WAIT)
952 return nn::applet::CTR::TryLock(timeout);
Dapplet_Wrapper.h264 … nn::Handle *pHandle=NULL, nn::fnd::TimeSpan timeout=NN_APPLET_WAIT_INFINITE )
266 return detail::WaitForStarting( pSenderId, pParam, paramSize, pReadLen, pHandle, timeout );
/CTR-SDK-0.14.23/CTR_SDK-0_14_23-20110107-en/CTR_SDK/include/nn/net/compatible/
Dpeth.h135 extern s32 PETH_StartupIns(NNETInstance *ins, s32 timeout);
136 extern s32 PETH_CleanupIns(NNETInstance *ins, s32 timeout);
Dhioeth.h141 extern s32 HIOETH_StartupIns(NNETInstance* ins, s32 timeout);
142 extern s32 HIOETH_CleanupIns(NNETInstance* ins, s32 timeout);
Dnwcm.h281 s32 NWCM_StartupIns(NNETInstance *ins, s32 timeout);
282 s32 NWCM_CleanupIns(NNETInstance *ins, s32 timeout);
/CTR-SDK-0.14.23/CTR_SDK-0_14_23-20110107-en/CTR_SDK/include/nn/net/compatible/nsoc/
Dnsoc_admin.h196 extern s32 NSOC_StartupIns(NNETInstance *ins, s32 timeout);
197 extern s32 NSOC_CleanupIns(NNETInstance *ins, s32 timeout);
/CTR-SDK-0.14.23/CTR_SDK-0_14_23-20110107-en/CTR_SDK/include/nn/net/compatible/nwcm/
Dnwcm.h194 extern s32 NWCM_StartupIns(NNETInstance *ins, s32 timeout);
195 extern s32 NWCM_CleanupIns(NNETInstance *ins, s32 timeout);
/CTR-SDK-0.14.23/CTR_SDK-0_14_23-20110107-en/CTR_SDK/build/omake/
Dtestutil.om242 new(program, exitpattern, timeout, depends) =
245 this.timeOut = $(timeout)
269 public.MakeProgramRunnerWithDepends(program, exitpattern, timeout, deps) =
270 return $(ProgramRunner.new $(program),$(exitpattern),$(timeout), $(deps))
272 public.MakeProgramRunner(program, exitpattern, timeout) =
273 return $(ProgramRunner.new $(program),$(exitpattern),$(timeout), "")
/CTR-SDK-0.14.23/CTR_SDK-0_14_23-20110107-en/CTR_SDK/include/nn/socket/
Dsocket_IpcWrapper.h51 Result Poll( s32* rval, PollFd fds[], u32 nfds, s32 timeout );
65 …ult IcmpPing( s32* rval, s32 s, const u8 data[], s32 len, u8 remote[], size_t salen, s32 timeout );
Dsocket_User.h105 …32* rval, const nn::socket::PollFd fds_in[], nn::socket::PollFd fds_out[], u32 nfds, s32 timeout );
113 …mpPing( s32* rval, s32 s, const u8 data[], s32 len, const u8 remote[], size_t salen, s32 timeout );
Dsocket_Berkeley.h543 inline s32 Poll( PollFd fds[], u32 nfds, s32 timeout ) in Poll() argument
546 Result result = detail::Poll(&rval, fds, nfds, timeout); in Poll()
/CTR-SDK-0.14.23/CTR_SDK-0_14_23-20110107-en/CTR_SDK/include/nn/boss/
Dboss_Task.h213 nn::Result WaitFinish(const nn::fnd::TimeSpan& timeout);

12