Lines Matching refs:priority
188 … TypeInfo& typeInfo, ThreadFunc f, const void* p, uptr stackBottom, s32 priority, s32 coreNo, bool… in TryInitializeAndStartImpl() argument
220 os::detail::ConvertLibraryToSvcPriority(priority), in TryInitializeAndStartImpl()
244 …(const TypeInfo& typeInfo, ThreadFunc f, const void* p, size_t stackSize, s32 priority, s32 coreNo) in TryInitializeAndStartImplUsingAutoStack() argument
252 Result result = TryInitializeAndStartImpl(typeInfo, f, p, stack, priority, coreNo, true); in TryInitializeAndStartImplUsingAutoStack()
290 …izeAndStart(nnosThread* p, void (*f)(uptr), uptr param, uptr stackBottom, s32 priority, s32 coreNo) in nnosThreadInitializeAndStart() argument
294 pThread->Start(f, param, stack, priority, coreNo); in nnosThreadInitializeAndStart()
297 …izeAndStart(nnosThread* p, void (*f)(uptr), uptr param, uptr stackBottom, s32 priority, s32 coreNo) in nnosThreadTryInitializeAndStart() argument
301 Result result = pThread->TryStart(f, param, stack, priority, coreNo); in nnosThreadTryInitializeAndStart()
343 void nnosThreadChangePriority(nnosThread* p, s32 priority) in nnosThreadChangePriority() argument
346 return pThread->ChangePriority(priority); in nnosThreadChangePriority()
349 void nnosThreadChangeCurrentPriority(s32 priority) in nnosThreadChangeCurrentPriority() argument
351 Thread::ChangeCurrentPriority(priority); in nnosThreadChangeCurrentPriority()