Lines Matching refs:xTimerQueue

149     PRIVILEGED_DATA static QueueHandle_t xTimerQueue = NULL;  variable
249 if( xTimerQueue != NULL ) in xTimerCreateTimerTask()
465 if( xTimerQueue != NULL ) in xTimerGenericCommandFromTask()
478 xReturn = xQueueSendToBack( xTimerQueue, &xMessage, xTicksToWait ); in xTimerGenericCommandFromTask()
482 xReturn = xQueueSendToBack( xTimerQueue, &xMessage, tmrNO_DELAY ); in xTimerGenericCommandFromTask()
516 if( xTimerQueue != NULL ) in xTimerGenericCommandFromISR()
527 … xReturn = xQueueSendToBackFromISR( xTimerQueue, &xMessage, pxHigherPriorityTaskWoken ); in xTimerGenericCommandFromISR()
820 … vQueueWaitForMessageRestricted( xTimerQueue, ( xNextExpireTime - xTimeNow ), xListWasEmpty ); in prvProcessTimerOrBlockTask()
945 while( xQueueReceive( xTimerQueue, &xMessage, tmrNO_DELAY ) != pdFAIL ) in prvProcessReceivedCommands()
1118 if( xTimerQueue == NULL ) in prvCheckForValidListAndQueue()
1132xTimerQueue = xQueueCreateStatic( ( UBaseType_t ) configTIMER_QUEUE_LENGTH, ( UBaseType_t ) sizeof… in prvCheckForValidListAndQueue()
1136xTimerQueue = xQueueCreate( ( UBaseType_t ) configTIMER_QUEUE_LENGTH, ( UBaseType_t ) sizeof( Daem… in prvCheckForValidListAndQueue()
1142 if( xTimerQueue != NULL ) in prvCheckForValidListAndQueue()
1144 vQueueAddToRegistry( xTimerQueue, "TmrQ" ); in prvCheckForValidListAndQueue()
1250 xReturn = xQueueSendFromISR( xTimerQueue, &xMessage, pxHigherPriorityTaskWoken ); in xTimerPendFunctionCallFromISR()
1276 configASSERT( xTimerQueue ); in xTimerPendFunctionCall()
1285 xReturn = xQueueSendToBack( xTimerQueue, &xMessage, xTicksToWait ); in xTimerPendFunctionCall()