Lines Matching refs:EventBits_t
51 EventBits_t uxEventBits;
73 static BaseType_t prvTestWaitCondition( const EventBits_t uxCurrentEventBits,
74 const EventBits_t uxBitsToWaitFor,
179 EventBits_t xEventGroupSync( EventGroupHandle_t xEventGroup, in xEventGroupSync()
180 const EventBits_t uxBitsToSet, in xEventGroupSync()
181 const EventBits_t uxBitsToWaitFor, in xEventGroupSync()
184 EventBits_t uxOriginalBitValue, uxReturn; in xEventGroupSync()
259 if( ( uxReturn & eventUNBLOCKED_DUE_TO_BIT_SET ) == ( EventBits_t ) 0 ) in xEventGroupSync()
302 EventBits_t xEventGroupWaitBits( EventGroupHandle_t xEventGroup, in xEventGroupWaitBits()
303 const EventBits_t uxBitsToWaitFor, in xEventGroupWaitBits()
309 EventBits_t uxReturn, uxControlBits = 0; in xEventGroupWaitBits()
326 const EventBits_t uxCurrentEventBits = pxEventBits->uxEventBits; in xEventGroupWaitBits()
411 if( ( uxReturn & eventUNBLOCKED_DUE_TO_BIT_SET ) == ( EventBits_t ) 0 ) in xEventGroupWaitBits()
458 EventBits_t xEventGroupClearBits( EventGroupHandle_t xEventGroup, in xEventGroupClearBits()
459 const EventBits_t uxBitsToClear ) in xEventGroupClearBits()
462 EventBits_t uxReturn; in xEventGroupClearBits()
489 const EventBits_t uxBitsToClear ) in xEventGroupClearBitsFromISR()
502 EventBits_t xEventGroupGetBitsFromISR( EventGroupHandle_t xEventGroup ) in xEventGroupGetBitsFromISR()
506 EventBits_t uxReturn; in xEventGroupGetBitsFromISR()
518 EventBits_t xEventGroupSetBits( EventGroupHandle_t xEventGroup, in xEventGroupSetBits()
519 const EventBits_t uxBitsToSet ) in xEventGroupSetBits()
525 EventBits_t uxBitsToClear = 0, uxBitsWaitedFor, uxControlBits; in xEventGroupSetBits()
556 if( ( uxControlBits & eventWAIT_FOR_ALL_BITS ) == ( EventBits_t ) 0 ) in xEventGroupSetBits()
559 if( ( uxBitsWaitedFor & pxEventBits->uxEventBits ) != ( EventBits_t ) 0 ) in xEventGroupSetBits()
581 if( ( uxControlBits & eventCLEAR_EVENTS_ON_EXIT_BIT ) != ( EventBits_t ) 0 ) in xEventGroupSetBits()
701 …( void ) xEventGroupSetBits( pvEventGroup, ( EventBits_t ) ulBitsToSet ); /*lint !e9079 Can't avoi… in vEventGroupSetBitsCallback()
710 …( void ) xEventGroupClearBits( pvEventGroup, ( EventBits_t ) ulBitsToClear ); /*lint !e9079 Can't … in vEventGroupClearBitsCallback()
714 static BaseType_t prvTestWaitCondition( const EventBits_t uxCurrentEventBits, in prvTestWaitCondition()
715 const EventBits_t uxBitsToWaitFor, in prvTestWaitCondition()
724 if( ( uxCurrentEventBits & uxBitsToWaitFor ) != ( EventBits_t ) 0 ) in prvTestWaitCondition()
754 const EventBits_t uxBitsToSet, in xEventGroupSetBitsFromISR()