Lines Matching refs:pxTimeOut
3347 void vTaskSetTimeOutState( TimeOut_t * const pxTimeOut ) in vTaskSetTimeOutState() argument
3349 configASSERT( pxTimeOut ); in vTaskSetTimeOutState()
3352 pxTimeOut->xOverflowCount = xNumOfOverflows; in vTaskSetTimeOutState()
3353 pxTimeOut->xTimeOnEntering = xTickCount; in vTaskSetTimeOutState()
3359 void vTaskInternalSetTimeOutState( TimeOut_t * const pxTimeOut ) in vTaskInternalSetTimeOutState() argument
3362 pxTimeOut->xOverflowCount = xNumOfOverflows; in vTaskInternalSetTimeOutState()
3363 pxTimeOut->xTimeOnEntering = xTickCount; in vTaskInternalSetTimeOutState()
3367 BaseType_t xTaskCheckForTimeOut( TimeOut_t * const pxTimeOut, in xTaskCheckForTimeOut() argument
3372 configASSERT( pxTimeOut ); in xTaskCheckForTimeOut()
3379 const TickType_t xElapsedTime = xConstTickCount - pxTimeOut->xTimeOnEntering; in xTaskCheckForTimeOut()
3403 …if( ( xNumOfOverflows != pxTimeOut->xOverflowCount ) && ( xConstTickCount >= pxTimeOut->xTimeOnEnt… in xTaskCheckForTimeOut()
3417 vTaskInternalSetTimeOutState( pxTimeOut ); in xTaskCheckForTimeOut()