Lines Matching refs:priority
187 … TypeInfo& typeInfo, ThreadFunc f, const void* p, uptr stackBottom, s32 priority, s32 coreNo, bool… in TryInitializeAndStartImpl() argument
219 os::detail::ConvertLibraryToSvcPriority(priority), in TryInitializeAndStartImpl()
243 …(const TypeInfo& typeInfo, ThreadFunc f, const void* p, size_t stackSize, s32 priority, s32 coreNo) in TryInitializeAndStartImplUsingAutoStack() argument
251 Result result = TryInitializeAndStartImpl(typeInfo, f, p, stack, priority, coreNo, true); in TryInitializeAndStartImplUsingAutoStack()
289 …izeAndStart(nnosThread* p, void (*f)(uptr), uptr param, uptr stackBottom, s32 priority, s32 coreNo) in nnosThreadInitializeAndStart() argument
293 pThread->Start(f, param, stack, priority, coreNo); in nnosThreadInitializeAndStart()
296 …izeAndStart(nnosThread* p, void (*f)(uptr), uptr param, uptr stackBottom, s32 priority, s32 coreNo) in nnosThreadTryInitializeAndStart() argument
300 Result result = pThread->TryStart(f, param, stack, priority, coreNo); in nnosThreadTryInitializeAndStart()
342 void nnosThreadChangePriority(nnosThread* p, s32 priority) in nnosThreadChangePriority() argument
345 return pThread->ChangePriority(priority); in nnosThreadChangePriority()
348 void nnosThreadChangeCurrentPriority(s32 priority) in nnosThreadChangeCurrentPriority() argument
350 Thread::ChangeCurrentPriority(priority); in nnosThreadChangeCurrentPriority()