Lines Matching refs:pxTimeOut
5545 void vTaskSetTimeOutState( TimeOut_t * const pxTimeOut ) in vTaskSetTimeOutState() argument
5547 traceENTER_vTaskSetTimeOutState( pxTimeOut ); in vTaskSetTimeOutState()
5549 configASSERT( pxTimeOut ); in vTaskSetTimeOutState()
5552 pxTimeOut->xOverflowCount = xNumOfOverflows; in vTaskSetTimeOutState()
5553 pxTimeOut->xTimeOnEntering = xTickCount; in vTaskSetTimeOutState()
5561 void vTaskInternalSetTimeOutState( TimeOut_t * const pxTimeOut ) in vTaskInternalSetTimeOutState() argument
5563 traceENTER_vTaskInternalSetTimeOutState( pxTimeOut ); in vTaskInternalSetTimeOutState()
5566 pxTimeOut->xOverflowCount = xNumOfOverflows; in vTaskInternalSetTimeOutState()
5567 pxTimeOut->xTimeOnEntering = xTickCount; in vTaskInternalSetTimeOutState()
5573 BaseType_t xTaskCheckForTimeOut( TimeOut_t * const pxTimeOut, in xTaskCheckForTimeOut() argument
5578 traceENTER_xTaskCheckForTimeOut( pxTimeOut, pxTicksToWait ); in xTaskCheckForTimeOut()
5580 configASSERT( pxTimeOut ); in xTaskCheckForTimeOut()
5587 const TickType_t xElapsedTime = xConstTickCount - pxTimeOut->xTimeOnEntering; in xTaskCheckForTimeOut()
5611 …if( ( xNumOfOverflows != pxTimeOut->xOverflowCount ) && ( xConstTickCount >= pxTimeOut->xTimeOnEnt… in xTaskCheckForTimeOut()
5625 vTaskInternalSetTimeOutState( pxTimeOut ); in xTaskCheckForTimeOut()