Searched refs:pxTimeOut (Results 1 – 8 of 8) sorted by relevance
3143 void vTaskSetTimeOutState( TimeOut_t * const pxTimeOut ) PRIVILEGED_FUNCTION;3232 BaseType_t xTaskCheckForTimeOut( TimeOut_t * const pxTimeOut,3499 void vTaskInternalSetTimeOutState( TimeOut_t * const pxTimeOut ) PRIVILEGED_FUNCTION;
114 void MPU_vTaskSetTimeOutState( TimeOut_t * const pxTimeOut ) FREERTOS_SYSTEM_CALL;115 BaseType_t MPU_xTaskCheckForTimeOut( TimeOut_t * const pxTimeOut,
37 150 vTaskSetTimeOutState pxTimeOut=%u38 151 xTaskCheckForTimeOut pxTimeOut=%u pxTicksToWait=%u
3773 void vTaskSetTimeOutState( TimeOut_t * const pxTimeOut ) in vTaskSetTimeOutState() argument3775 configASSERT( pxTimeOut ); in vTaskSetTimeOutState()3778 pxTimeOut->xOverflowCount = xNumOfOverflows; in vTaskSetTimeOutState()3779 pxTimeOut->xTimeOnEntering = xTickCount; in vTaskSetTimeOutState()3785 void vTaskInternalSetTimeOutState( TimeOut_t * const pxTimeOut ) in vTaskInternalSetTimeOutState() argument3788 pxTimeOut->xOverflowCount = xNumOfOverflows; in vTaskInternalSetTimeOutState()3789 pxTimeOut->xTimeOnEntering = xTickCount; in vTaskInternalSetTimeOutState()3793 BaseType_t xTaskCheckForTimeOut( TimeOut_t * const pxTimeOut, in xTaskCheckForTimeOut() argument3798 configASSERT( pxTimeOut ); in xTaskCheckForTimeOut()3805 const TickType_t xElapsedTime = xConstTickCount - pxTimeOut->xTimeOnEntering; in xTaskCheckForTimeOut()[all …]