Lines Matching refs:ucStatus
93 …uint8_t ucStatus; /**< Holds bits to say if… member
356 pxNewTimer->ucStatus = 0x00; in xTimerCreate()
404 pxNewTimer->ucStatus = ( uint8_t ) tmrSTATUS_IS_STATICALLY_ALLOCATED; in xTimerCreateStatic()
441 pxNewTimer->ucStatus |= ( uint8_t ) tmrSTATUS_IS_AUTORELOAD; in prvInitialiseNewTimer()
579 pxTimer->ucStatus |= ( uint8_t ) tmrSTATUS_IS_AUTORELOAD; in vTimerSetReloadMode()
583 pxTimer->ucStatus &= ( ( uint8_t ) ~tmrSTATUS_IS_AUTORELOAD ); in vTimerSetReloadMode()
602 if( ( pxTimer->ucStatus & tmrSTATUS_IS_AUTORELOAD ) == 0U ) in xTimerGetReloadMode()
661 if( ( pxTimer->ucStatus & tmrSTATUS_IS_STATICALLY_ALLOCATED ) != 0U ) in xTimerGetStaticBuffer()
729 if( ( pxTimer->ucStatus & tmrSTATUS_IS_AUTORELOAD ) != 0U ) in prvProcessExpiredTimer()
735 pxTimer->ucStatus &= ( ( uint8_t ) ~tmrSTATUS_IS_ACTIVE ); in prvProcessExpiredTimer()
1002 pxTimer->ucStatus |= ( uint8_t ) tmrSTATUS_IS_ACTIVE; in prvProcessReceivedCommands()
1008 if( ( pxTimer->ucStatus & tmrSTATUS_IS_AUTORELOAD ) != 0U ) in prvProcessReceivedCommands()
1014 pxTimer->ucStatus &= ( ( uint8_t ) ~tmrSTATUS_IS_ACTIVE ); in prvProcessReceivedCommands()
1031 pxTimer->ucStatus &= ( ( uint8_t ) ~tmrSTATUS_IS_ACTIVE ); in prvProcessReceivedCommands()
1036 pxTimer->ucStatus |= ( uint8_t ) tmrSTATUS_IS_ACTIVE; in prvProcessReceivedCommands()
1055 … if( ( pxTimer->ucStatus & tmrSTATUS_IS_STATICALLY_ALLOCATED ) == ( uint8_t ) 0 ) in prvProcessReceivedCommands()
1061 pxTimer->ucStatus &= ( ( uint8_t ) ~tmrSTATUS_IS_ACTIVE ); in prvProcessReceivedCommands()
1070 pxTimer->ucStatus &= ( ( uint8_t ) ~tmrSTATUS_IS_ACTIVE ); in prvProcessReceivedCommands()
1177 if( ( pxTimer->ucStatus & tmrSTATUS_IS_ACTIVE ) == 0U ) in xTimerIsTimerActive()