Lines Matching refs:EventBits_t
56 EventBits_t uxEventBits;
78 static BaseType_t prvTestWaitCondition( const EventBits_t uxCurrentEventBits,
79 const EventBits_t uxBitsToWaitFor,
185 EventBits_t xEventGroupSync( EventGroupHandle_t xEventGroup, in xEventGroupSync()
186 const EventBits_t uxBitsToSet, in xEventGroupSync()
187 const EventBits_t uxBitsToWaitFor, in xEventGroupSync()
190 EventBits_t uxOriginalBitValue, uxReturn; in xEventGroupSync()
267 if( ( uxReturn & eventUNBLOCKED_DUE_TO_BIT_SET ) == ( EventBits_t ) 0 ) in xEventGroupSync()
312 EventBits_t xEventGroupWaitBits( EventGroupHandle_t xEventGroup, in xEventGroupWaitBits()
313 const EventBits_t uxBitsToWaitFor, in xEventGroupWaitBits()
319 EventBits_t uxReturn, uxControlBits = 0; in xEventGroupWaitBits()
338 const EventBits_t uxCurrentEventBits = pxEventBits->uxEventBits; in xEventGroupWaitBits()
423 if( ( uxReturn & eventUNBLOCKED_DUE_TO_BIT_SET ) == ( EventBits_t ) 0 ) in xEventGroupWaitBits()
472 EventBits_t xEventGroupClearBits( EventGroupHandle_t xEventGroup, in xEventGroupClearBits()
473 const EventBits_t uxBitsToClear ) in xEventGroupClearBits()
476 EventBits_t uxReturn; in xEventGroupClearBits()
507 const EventBits_t uxBitsToClear ) in xEventGroupClearBitsFromISR()
524 EventBits_t xEventGroupGetBitsFromISR( EventGroupHandle_t xEventGroup ) in xEventGroupGetBitsFromISR()
528 EventBits_t uxReturn; in xEventGroupGetBitsFromISR()
547 EventBits_t xEventGroupSetBits( EventGroupHandle_t xEventGroup, in xEventGroupSetBits()
548 const EventBits_t uxBitsToSet ) in xEventGroupSetBits()
554 EventBits_t uxBitsToClear = 0, uxBitsWaitedFor, uxControlBits; in xEventGroupSetBits()
587 if( ( uxControlBits & eventWAIT_FOR_ALL_BITS ) == ( EventBits_t ) 0 ) in xEventGroupSetBits()
590 if( ( uxBitsWaitedFor & pxEventBits->uxEventBits ) != ( EventBits_t ) 0 ) in xEventGroupSetBits()
612 if( ( uxControlBits & eventCLEAR_EVENTS_ON_EXIT_BIT ) != ( EventBits_t ) 0 ) in xEventGroupSetBits()
753 ( void ) xEventGroupSetBits( pvEventGroup, ( EventBits_t ) ulBitsToSet ); in vEventGroupSetBitsCallback()
769 ( void ) xEventGroupClearBits( pvEventGroup, ( EventBits_t ) ulBitsToClear ); in vEventGroupClearBitsCallback()
775 static BaseType_t prvTestWaitCondition( const EventBits_t uxCurrentEventBits, in prvTestWaitCondition()
776 const EventBits_t uxBitsToWaitFor, in prvTestWaitCondition()
785 if( ( uxCurrentEventBits & uxBitsToWaitFor ) != ( EventBits_t ) 0 ) in prvTestWaitCondition()
815 const EventBits_t uxBitsToSet, in xEventGroupSetBitsFromISR()