Lines Matching refs:p

120     void (*destroy)(void* p);                    //
121 void (*invoke)(ThreadFunc f, const void* p); //
123 void* p; // member
129 invoke(f, p); in Invoke()
135 destroy(p); in Destroy()
191 void Thread::ThreadStart(uptr p) in ThreadStart() argument
193 FunctionInfo& info = *reinterpret_cast<FunctionInfo*>(p); in ThreadStart()
213 const void* p, in TryInitializeAndStartImpl() argument
222 p, in TryInitializeAndStartImpl()
232 const void* p, in TryInitializeAndStartImpl() argument
248 typeInfo.copy(p, obj); in TryInitializeAndStartImpl()
257 info.p = obj; in TryInitializeAndStartImpl()
312 …StartImplUsingAutoStack(const TypeInfo& typeInfo, ThreadFunc f, const void* p, size_t stackSize, s… in TryInitializeAndStartImplUsingAutoStack() argument
317 Result result = TryInitializeAndStartImpl(typeInfo, f, p, stackBottom, priority, coreNo, true); in TryInitializeAndStartImplUsingAutoStack()
369 void nnosThreadInitializeAndStart(nnosThread* p, void (*f)(uptr), uptr param, uptr stackBottom, s32… in nnosThreadInitializeAndStart() argument
371 Thread* pThread = new (p) Thread(); in nnosThreadInitializeAndStart()
376 bool nnosThreadTryInitializeAndStart(nnosThread* p, void (*f)(uptr), uptr param, uptr stackBottom, … in nnosThreadTryInitializeAndStart() argument
378 Thread* pThread = new (p) Thread(); in nnosThreadTryInitializeAndStart()
384 void nnosThreadFinalize(nnosThread* p) in nnosThreadFinalize() argument
386 Thread* pThread = reinterpret_cast<Thread*>(p); in nnosThreadFinalize()
390 void nnosThreadJoin(nnosThread* p) in nnosThreadJoin() argument
392 Thread* pThread = reinterpret_cast<Thread*>(p); in nnosThreadJoin()
411 s32 nnosThreadGetPriority(const nnosThread* p) in nnosThreadGetPriority() argument
413 const Thread* pThread = reinterpret_cast<const Thread*>(p); in nnosThreadGetPriority()
422 void nnosThreadChangePriority(nnosThread* p, s32 priority) in nnosThreadChangePriority() argument
424 Thread* pThread = reinterpret_cast<Thread*>(p); in nnosThreadChangePriority()
467 s32 nnosThreadGetIdealProcessor(const nnosThread* p) in nnosThreadGetIdealProcessor() argument
469 const Thread* pThread = reinterpret_cast<const Thread*>(p); in nnosThreadGetIdealProcessor()
504 bit32 nnosThreadGetId(nnosThread* p) in nnosThreadGetId() argument
506 Thread* pThread = reinterpret_cast<Thread*>(p); in nnosThreadGetId()
510 bool nnosThreadIsAlive(nnosThread* p) in nnosThreadIsAlive() argument
512 Thread* pThread = reinterpret_cast<Thread*>(p); in nnosThreadIsAlive()