Lines Matching refs:xTimerQueue
149 PRIVILEGED_DATA static QueueHandle_t xTimerQueue = NULL; variable
249 if( xTimerQueue != NULL ) in xTimerCreateTimerTask()
463 if( ( xTimerQueue != NULL ) && ( xTimer != NULL ) ) in xTimerGenericCommandFromTask()
476 xReturn = xQueueSendToBack( xTimerQueue, &xMessage, xTicksToWait ); in xTimerGenericCommandFromTask()
480 xReturn = xQueueSendToBack( xTimerQueue, &xMessage, tmrNO_DELAY ); in xTimerGenericCommandFromTask()
512 if( ( xTimerQueue != NULL ) && ( xTimer != NULL ) ) in xTimerGenericCommandFromISR()
523 … xReturn = xQueueSendToBackFromISR( xTimerQueue, &xMessage, pxHigherPriorityTaskWoken ); in xTimerGenericCommandFromISR()
816 … vQueueWaitForMessageRestricted( xTimerQueue, ( xNextExpireTime - xTimeNow ), xListWasEmpty ); in prvProcessTimerOrBlockTask()
941 while( xQueueReceive( xTimerQueue, &xMessage, tmrNO_DELAY ) != pdFAIL ) in prvProcessReceivedCommands()
1121 if( xTimerQueue == NULL ) in prvCheckForValidListAndQueue()
1135 …xTimerQueue = xQueueCreateStatic( ( UBaseType_t ) configTIMER_QUEUE_LENGTH, ( UBaseType_t ) sizeof… in prvCheckForValidListAndQueue()
1139 …xTimerQueue = xQueueCreate( ( UBaseType_t ) configTIMER_QUEUE_LENGTH, ( UBaseType_t ) sizeof( Daem… in prvCheckForValidListAndQueue()
1145 if( xTimerQueue != NULL ) in prvCheckForValidListAndQueue()
1147 vQueueAddToRegistry( xTimerQueue, "TmrQ" ); in prvCheckForValidListAndQueue()
1253 xReturn = xQueueSendFromISR( xTimerQueue, &xMessage, pxHigherPriorityTaskWoken ); in xTimerPendFunctionCallFromISR()
1279 configASSERT( xTimerQueue ); in xTimerPendFunctionCall()
1288 xReturn = xQueueSendToBack( xTimerQueue, &xMessage, xTicksToWait ); in xTimerPendFunctionCall()
1335 xTimerQueue = NULL; in vTimerResetState()