Lines Matching refs:priority
196 … TypeInfo& typeInfo, ThreadFunc f, const void* p, uptr stackBottom, s32 priority, s32 coreNo, bool… in TryInitializeAndStartImpl() argument
228 os::detail::ConvertLibraryToSvcPriority(priority), in TryInitializeAndStartImpl()
252 …(const TypeInfo& typeInfo, ThreadFunc f, const void* p, size_t stackSize, s32 priority, s32 coreNo) in TryInitializeAndStartImplUsingAutoStack() argument
260 Result result = TryInitializeAndStartImpl(typeInfo, f, p, stack, priority, coreNo, true); in TryInitializeAndStartImplUsingAutoStack()
308 …izeAndStart(nnosThread* p, void (*f)(uptr), uptr param, uptr stackBottom, s32 priority, s32 coreNo) in nnosThreadInitializeAndStart() argument
312 pThread->Start(f, param, stack, priority, coreNo); in nnosThreadInitializeAndStart()
315 …izeAndStart(nnosThread* p, void (*f)(uptr), uptr param, uptr stackBottom, s32 priority, s32 coreNo) in nnosThreadTryInitializeAndStart() argument
319 Result result = pThread->TryStart(f, param, stack, priority, coreNo); in nnosThreadTryInitializeAndStart()
361 void nnosThreadChangePriority(nnosThread* p, s32 priority) in nnosThreadChangePriority() argument
364 return pThread->ChangePriority(priority); in nnosThreadChangePriority()
367 void nnosThreadChangeCurrentPriority(s32 priority) in nnosThreadChangeCurrentPriority() argument
369 Thread::ChangeCurrentPriority(priority); in nnosThreadChangeCurrentPriority()