Lines Matching refs:xTimerPeriodInTicks
79 TickType_t xTimerPeriodInTicks; /**< How quickly and often the timer expires. */ member
226 const TickType_t xTimerPeriodInTicks,
289 const TickType_t xTimerPeriodInTicks, in xTimerCreate() argument
304 …prvInitialiseNewTimer( pcTimerName, xTimerPeriodInTicks, xAutoReload, pvTimerID, pxCallbackFunctio… in xTimerCreate()
316 const TickType_t xTimerPeriodInTicks, in xTimerCreateStatic() argument
346 …prvInitialiseNewTimer( pcTimerName, xTimerPeriodInTicks, xAutoReload, pvTimerID, pxCallbackFunctio… in xTimerCreateStatic()
356 const TickType_t xTimerPeriodInTicks, in prvInitialiseNewTimer() argument
363 configASSERT( ( xTimerPeriodInTicks > 0 ) ); in prvInitialiseNewTimer()
372 pxNewTimer->xTimerPeriodInTicks = xTimerPeriodInTicks; in prvInitialiseNewTimer()
447 return pxTimer->xTimerPeriodInTicks; in xTimerGetPeriod()
553 …while( prvInsertTimerInActiveList( pxTimer, ( xExpiredTime + pxTimer->xTimerPeriodInTicks ), xTime… in prvReloadTimer()
556 xExpiredTime += pxTimer->xTimerPeriodInTicks; in prvReloadTimer()
752 …if( ( ( TickType_t ) ( xTimeNow - xCommandTime ) ) >= pxTimer->xTimerPeriodInTicks ) /*lint !e961 … in prvInsertTimerInActiveList()
850 …ist( pxTimer, xMessage.u.xTimerParameters.xMessageValue + pxTimer->xTimerPeriodInTicks, xTimeNow, … in prvProcessReceivedCommands()
856 …mer( pxTimer, xMessage.u.xTimerParameters.xMessageValue + pxTimer->xTimerPeriodInTicks, xTimeNow ); in prvProcessReceivedCommands()
883 pxTimer->xTimerPeriodInTicks = xMessage.u.xTimerParameters.xMessageValue; in prvProcessReceivedCommands()
884 configASSERT( ( pxTimer->xTimerPeriodInTicks > 0 ) ); in prvProcessReceivedCommands()
892 … void ) prvInsertTimerInActiveList( pxTimer, ( xTimeNow + pxTimer->xTimerPeriodInTicks ), xTimeNow… in prvProcessReceivedCommands()