Lines Matching refs:p

92     void (*destroy)(void* p);                    //!< 終了処理関数
93 void (*invoke)(ThreadFunc f, const void* p); //!< ハンドラを呼び出す関数
95 void* p; //!< ハンドラに渡すパラメータ member
103 invoke(f, p); in Invoke()
109 destroy(p); in Destroy()
169 void Thread::ThreadStart(uptr p) in ThreadStart() argument
171 FunctionInfo& info = *reinterpret_cast<FunctionInfo*>(p); in ThreadStart()
188 Result Thread::TryInitializeAndStartImpl(const TypeInfo& typeInfo, ThreadFunc f, const void* p, upt… in TryInitializeAndStartImpl() argument
200 typeInfo.copy(p, obj); in TryInitializeAndStartImpl()
209 info.p = obj; in TryInitializeAndStartImpl()
244 …StartImplUsingAutoStack(const TypeInfo& typeInfo, ThreadFunc f, const void* p, size_t stackSize, s… in TryInitializeAndStartImplUsingAutoStack() argument
252 Result result = TryInitializeAndStartImpl(typeInfo, f, p, stack, priority, coreNo, true); in TryInitializeAndStartImplUsingAutoStack()
290 void nnosThreadInitializeAndStart(nnosThread* p, void (*f)(uptr), uptr param, uptr stackBottom, s32… in nnosThreadInitializeAndStart() argument
292 Thread* pThread = new (p) Thread(); in nnosThreadInitializeAndStart()
297 bool nnosThreadTryInitializeAndStart(nnosThread* p, void (*f)(uptr), uptr param, uptr stackBottom, … in nnosThreadTryInitializeAndStart() argument
299 Thread* pThread = new (p) Thread(); in nnosThreadTryInitializeAndStart()
305 void nnosThreadFinalize(nnosThread* p) in nnosThreadFinalize() argument
307 Thread* pThread = reinterpret_cast<Thread*>(p); in nnosThreadFinalize()
311 void nnosThreadJoin(nnosThread* p) in nnosThreadJoin() argument
313 Thread* pThread = reinterpret_cast<Thread*>(p); in nnosThreadJoin()
332 s32 nnosThreadGetPriority(const nnosThread* p) in nnosThreadGetPriority() argument
334 const Thread* pThread = reinterpret_cast<const Thread*>(p); in nnosThreadGetPriority()
343 void nnosThreadChangePriority(nnosThread* p, s32 priority) in nnosThreadChangePriority() argument
345 Thread* pThread = reinterpret_cast<Thread*>(p); in nnosThreadChangePriority()
355 void nnosThreadGetAffinityMask(const nnosThread* p, bit8* pAffinityMask, s32 numProcessor) in nnosThreadGetAffinityMask() argument
357 const Thread* pThread = reinterpret_cast<const Thread*>(p); in nnosThreadGetAffinityMask()
371 void nnosThreadChangeAffinityMask(nnosThread* p, const bit8* pAffinityMask, s32 numProcessor) in nnosThreadChangeAffinityMask() argument
373 Thread* pThread = reinterpret_cast<Thread*>(p); in nnosThreadChangeAffinityMask()
388 s32 nnosThreadGetIdealProcessor(const nnosThread* p) in nnosThreadGetIdealProcessor() argument
390 const Thread* pThread = reinterpret_cast<const Thread*>(p); in nnosThreadGetIdealProcessor()
404 void nnosThreadChangeIdealProcessor(nnosThread* p, s32 coreNo) in nnosThreadChangeIdealProcessor() argument
406 Thread* pThread = reinterpret_cast<Thread*>(p); in nnosThreadChangeIdealProcessor()
425 bit32 nnosThreadGetId(nnosThread* p) in nnosThreadGetId() argument
427 Thread* pThread = reinterpret_cast<Thread*>(p); in nnosThreadGetId()
431 bool nnosThreadIsAlive(nnosThread* p) in nnosThreadIsAlive() argument
433 Thread* pThread = reinterpret_cast<Thread*>(p); in nnosThreadIsAlive()