Lines Matching refs:p

104     void (*destroy)(void* p);                    //
105 void (*invoke)(ThreadFunc f, const void* p); //
107 void* p; // member
115 invoke(f, p); in Invoke()
121 destroy(p); in Destroy()
177 void Thread::ThreadStart(uptr p) in ThreadStart() argument
179 FunctionInfo& info = *reinterpret_cast<FunctionInfo*>(p); in ThreadStart()
196 Result Thread::TryInitializeAndStartImpl(const TypeInfo& typeInfo, ThreadFunc f, const void* p, upt… in TryInitializeAndStartImpl() argument
208 typeInfo.copy(p, obj); in TryInitializeAndStartImpl()
217 info.p = obj; in TryInitializeAndStartImpl()
252 …StartImplUsingAutoStack(const TypeInfo& typeInfo, ThreadFunc f, const void* p, size_t stackSize, s… in TryInitializeAndStartImplUsingAutoStack() argument
260 Result result = TryInitializeAndStartImpl(typeInfo, f, p, stack, priority, coreNo, true); in TryInitializeAndStartImplUsingAutoStack()
308 void nnosThreadInitializeAndStart(nnosThread* p, void (*f)(uptr), uptr param, uptr stackBottom, s32… in nnosThreadInitializeAndStart() argument
310 Thread* pThread = new (p) Thread(); in nnosThreadInitializeAndStart()
315 bool nnosThreadTryInitializeAndStart(nnosThread* p, void (*f)(uptr), uptr param, uptr stackBottom, … in nnosThreadTryInitializeAndStart() argument
317 Thread* pThread = new (p) Thread(); in nnosThreadTryInitializeAndStart()
323 void nnosThreadFinalize(nnosThread* p) in nnosThreadFinalize() argument
325 Thread* pThread = reinterpret_cast<Thread*>(p); in nnosThreadFinalize()
329 void nnosThreadJoin(nnosThread* p) in nnosThreadJoin() argument
331 Thread* pThread = reinterpret_cast<Thread*>(p); in nnosThreadJoin()
350 s32 nnosThreadGetPriority(const nnosThread* p) in nnosThreadGetPriority() argument
352 const Thread* pThread = reinterpret_cast<const Thread*>(p); in nnosThreadGetPriority()
361 void nnosThreadChangePriority(nnosThread* p, s32 priority) in nnosThreadChangePriority() argument
363 Thread* pThread = reinterpret_cast<Thread*>(p); in nnosThreadChangePriority()
373 void nnosThreadGetAffinityMask(const nnosThread* p, bit8* pAffinityMask, s32 numProcessor) in nnosThreadGetAffinityMask() argument
375 const Thread* pThread = reinterpret_cast<const Thread*>(p); in nnosThreadGetAffinityMask()
389 void nnosThreadChangeAffinityMask(nnosThread* p, const bit8* pAffinityMask, s32 numProcessor) in nnosThreadChangeAffinityMask() argument
391 Thread* pThread = reinterpret_cast<Thread*>(p); in nnosThreadChangeAffinityMask()
406 s32 nnosThreadGetIdealProcessor(const nnosThread* p) in nnosThreadGetIdealProcessor() argument
408 const Thread* pThread = reinterpret_cast<const Thread*>(p); in nnosThreadGetIdealProcessor()
422 void nnosThreadChangeIdealProcessor(nnosThread* p, s32 coreNo) in nnosThreadChangeIdealProcessor() argument
424 Thread* pThread = reinterpret_cast<Thread*>(p); in nnosThreadChangeIdealProcessor()
443 bit32 nnosThreadGetId(nnosThread* p) in nnosThreadGetId() argument
445 Thread* pThread = reinterpret_cast<Thread*>(p); in nnosThreadGetId()
449 bool nnosThreadIsAlive(nnosThread* p) in nnosThreadIsAlive() argument
451 Thread* pThread = reinterpret_cast<Thread*>(p); in nnosThreadIsAlive()