Lines Matching refs:owner
71 muxNode->owner = (LosTaskCB *)NULL; in OsMuxInit()
112 muxCreated->owner = (LosTaskCB *)NULL; in LOS_MuxCreate()
216 muxPended->owner = runningTask; in LOS_MuxPend()
222 if (muxPended->owner == runningTask) { in LOS_MuxPend()
235 if (muxPended->owner->priority > runningTask->priority) { in LOS_MuxPend()
236 (VOID)OsSchedModifyTaskSchedParam(muxPended->owner, runningTask->priority); in LOS_MuxPend()
292 if ((muxPosted->muxCount == 0) || (muxPosted->owner != runningTask)) { in LOS_MuxPost()
303 if ((muxPosted->owner->priority) != muxPosted->priority) { in LOS_MuxPost()
304 (VOID)OsSchedModifyTaskSchedParam(muxPosted->owner, muxPosted->priority); in LOS_MuxPost()
311 muxPosted->owner = resumedTask; in LOS_MuxPost()
321 muxPosted->owner = NULL; in LOS_MuxPost()