Lines Matching refs:xTicksToWait
507 #define xTimerStart( xTimer, xTicksToWait ) \ argument
508 …imerGenericCommand( ( xTimer ), tmrCOMMAND_START, ( xTaskGetTickCount() ), NULL, ( xTicksToWait ) )
550 #define xTimerStop( xTimer, xTicksToWait ) \ argument
551 xTimerGenericCommand( ( xTimer ), tmrCOMMAND_STOP, 0U, NULL, ( xTicksToWait ) )
631 #define xTimerChangePeriod( xTimer, xNewPeriod, xTicksToWait ) \ argument
632 …TimerGenericCommand( ( xTimer ), tmrCOMMAND_CHANGE_PERIOD, ( xNewPeriod ), NULL, ( xTicksToWait ) )
670 #define xTimerDelete( xTimer, xTicksToWait ) \ argument
671 xTimerGenericCommand( ( xTimer ), tmrCOMMAND_DELETE, 0U, NULL, ( xTicksToWait ) )
795 #define xTimerReset( xTimer, xTicksToWait ) \ argument
796 …imerGenericCommand( ( xTimer ), tmrCOMMAND_RESET, ( xTaskGetTickCount() ), NULL, ( xTicksToWait ) )
1242 TickType_t xTicksToWait ) PRIVILEGED_FUNCTION;
1364 const TickType_t xTicksToWait ) PRIVILEGED_FUNCTION;
1370 const TickType_t xTicksToWait ) PRIVILEGED_FUNCTION;
1372 …ricCommand( xTimer, xCommandID, xOptionalValue, pxHigherPriorityTaskWoken, xTicksToWait ) \ argument
1374 …cCommandFromTask( xTimer, xCommandID, xOptionalValue, pxHigherPriorityTaskWoken, xTicksToWait ) : \
1375 …ericCommandFromISR( xTimer, xCommandID, xOptionalValue, pxHigherPriorityTaskWoken, xTicksToWait ) )