Lines Matching refs:pxTimeOut
5506 void vTaskSetTimeOutState( TimeOut_t * const pxTimeOut ) in vTaskSetTimeOutState() argument
5508 traceENTER_vTaskSetTimeOutState( pxTimeOut ); in vTaskSetTimeOutState()
5510 configASSERT( pxTimeOut ); in vTaskSetTimeOutState()
5513 pxTimeOut->xOverflowCount = xNumOfOverflows; in vTaskSetTimeOutState()
5514 pxTimeOut->xTimeOnEntering = xTickCount; in vTaskSetTimeOutState()
5522 void vTaskInternalSetTimeOutState( TimeOut_t * const pxTimeOut ) in vTaskInternalSetTimeOutState() argument
5524 traceENTER_vTaskInternalSetTimeOutState( pxTimeOut ); in vTaskInternalSetTimeOutState()
5527 pxTimeOut->xOverflowCount = xNumOfOverflows; in vTaskInternalSetTimeOutState()
5528 pxTimeOut->xTimeOnEntering = xTickCount; in vTaskInternalSetTimeOutState()
5534 BaseType_t xTaskCheckForTimeOut( TimeOut_t * const pxTimeOut, in xTaskCheckForTimeOut() argument
5539 traceENTER_xTaskCheckForTimeOut( pxTimeOut, pxTicksToWait ); in xTaskCheckForTimeOut()
5541 configASSERT( pxTimeOut ); in xTaskCheckForTimeOut()
5548 const TickType_t xElapsedTime = xConstTickCount - pxTimeOut->xTimeOnEntering; in xTaskCheckForTimeOut()
5572 …if( ( xNumOfOverflows != pxTimeOut->xOverflowCount ) && ( xConstTickCount >= pxTimeOut->xTimeOnEnt… in xTaskCheckForTimeOut()
5586 vTaskInternalSetTimeOutState( pxTimeOut ); in xTaskCheckForTimeOut()