Lines Matching refs:pThread
371 Thread* pThread = new (p) Thread(); in nnosThreadInitializeAndStart() local
373 pThread->Start(f, param, stack, priority, coreNo); in nnosThreadInitializeAndStart()
378 Thread* pThread = new (p) Thread(); in nnosThreadTryInitializeAndStart() local
380 Result result = pThread->TryStart(f, param, stack, priority, coreNo); in nnosThreadTryInitializeAndStart()
386 Thread* pThread = reinterpret_cast<Thread*>(p); in nnosThreadFinalize() local
387 pThread->~Thread(); in nnosThreadFinalize()
392 Thread* pThread = reinterpret_cast<Thread*>(p); in nnosThreadJoin() local
393 pThread->Join(); in nnosThreadJoin()
413 const Thread* pThread = reinterpret_cast<const Thread*>(p); in nnosThreadGetPriority() local
414 return pThread->GetPriority(); in nnosThreadGetPriority()
424 Thread* pThread = reinterpret_cast<Thread*>(p); in nnosThreadChangePriority() local
425 return pThread->ChangePriority(priority); in nnosThreadChangePriority()
469 const Thread* pThread = reinterpret_cast<const Thread*>(p); in nnosThreadGetIdealProcessor() local
470 return pThread->GetIdealProcessor(); in nnosThreadGetIdealProcessor()
506 Thread* pThread = reinterpret_cast<Thread*>(p); in nnosThreadGetId() local
507 return pThread->GetId(); in nnosThreadGetId()
512 Thread* pThread = reinterpret_cast<Thread*>(p); in nnosThreadIsAlive() local
513 return pThread->IsAlive(); in nnosThreadIsAlive()