Lines Matching refs:Thread
118 struct Thread::FunctionInfo
141 Thread Thread::s_MainThread = Thread::InitializeAsCurrentTag();
142 Thread::AutoStackManager* Thread::s_pAutoStackManager = NULL;
151 inline void Thread::OnThreadStart() in OnThreadStart()
156 inline void Thread::OnThreadExit() in OnThreadExit()
161 void Thread::NoParameterFunc(void (*f)()) in NoParameterFunc()
167 asm void Thread::CallDestructorAndExit(void* pStackBottom NN_IS_UNUSED_VAR) in CallDestructorAndExit()
191 void Thread::ThreadStart(uptr p) in ThreadStart()
210 Result Thread::TryInitializeAndStartImpl( in TryInitializeAndStartImpl()
229 Result Thread::TryInitializeAndStartImpl( in TryInitializeAndStartImpl()
277 void Thread::SleepImpl(nn::fnd::TimeSpan span) in SleepImpl()
291 uptr Thread::PreStartUsingAutoStack(size_t stackSize) in PreStartUsingAutoStack()
301 Result Thread::PostStartUsingAutoStack(Result result, uptr stackBottom) in PostStartUsingAutoStack()
312 Result Thread::TryInitializeAndStartImplUsingAutoStack(const TypeInfo& typeInfo, ThreadFunc f, cons… in TryInitializeAndStartImplUsingAutoStack()
323 Thread::Thread(const Thread::InitializeAsCurrentTag&) in Thread() function in nn::os::Thread
332 void Thread::SetAutoStackManager(AutoStackManager* pManager) in SetAutoStackManager()
337 void Thread::FinalizeImpl() in FinalizeImpl()
348 s32 Thread::GetCurrentCount() in GetCurrentCount()
353 s32 Thread::GetMaxCount() in GetMaxCount()
371 Thread* pThread = new (p) Thread(); in nnosThreadInitializeAndStart()
378 Thread* pThread = new (p) Thread(); in nnosThreadTryInitializeAndStart()
386 Thread* pThread = reinterpret_cast<Thread*>(p); in nnosThreadFinalize()
387 pThread->~Thread(); in nnosThreadFinalize()
392 Thread* pThread = reinterpret_cast<Thread*>(p); in nnosThreadJoin()
398 Thread::Sleep(TimeSpan::FromNanoSeconds(nanoSeconds)); in nnosThreadSleep()
403 Thread::Yield(); in nnosThreadYield()
408 return Thread::GetCurrentId(); in nnosThreadGetCurrentId()
413 const Thread* pThread = reinterpret_cast<const Thread*>(p); in nnosThreadGetPriority()
419 return Thread::GetCurrentPriority(); in nnosThreadGetCurrentPriority()
424 Thread* pThread = reinterpret_cast<Thread*>(p); in nnosThreadChangePriority()
430 Thread::ChangeCurrentPriority(priority); in nnosThreadChangeCurrentPriority()
469 const Thread* pThread = reinterpret_cast<const Thread*>(p); in nnosThreadGetIdealProcessor()
480 return Thread::GetDefaultIdealProcessor(); in nnosThreadGetDefaultIdealProcessor()
501 return Thread::GetCurrentProcessorNumber(); in nnosThreadGetCurrentProcessorNumber()
506 Thread* pThread = reinterpret_cast<Thread*>(p); in nnosThreadGetId()
512 Thread* pThread = reinterpret_cast<Thread*>(p); in nnosThreadIsAlive()
518 return reinterpret_cast<nnosThread*>(&nn::os::Thread::GetMainThread()); in nnosThreadGetMainThread()