Lines Matching refs:uxBitsToWaitFor

74                                         const EventBits_t uxBitsToWaitFor,
181 const EventBits_t uxBitsToWaitFor, in xEventGroupSync() argument
189 configASSERT( ( uxBitsToWaitFor & eventEVENT_BITS_CONTROL_BYTES ) == 0 ); in xEventGroupSync()
190 configASSERT( uxBitsToWaitFor != 0 ); in xEventGroupSync()
203 if( ( ( uxOriginalBitValue | uxBitsToSet ) & uxBitsToWaitFor ) == uxBitsToWaitFor ) in xEventGroupSync()
210 pxEventBits->uxEventBits &= ~uxBitsToWaitFor; in xEventGroupSync()
218 traceEVENT_GROUP_SYNC_BLOCK( xEventGroup, uxBitsToSet, uxBitsToWaitFor ); in xEventGroupSync()
223 …PlaceOnUnorderedEventList( &( pxEventBits->xTasksWaitingForBits ), ( uxBitsToWaitFor | eventCLEAR_… in xEventGroupSync()
270 if( ( uxReturn & uxBitsToWaitFor ) == uxBitsToWaitFor ) in xEventGroupSync()
272 pxEventBits->uxEventBits &= ~uxBitsToWaitFor; in xEventGroupSync()
293 traceEVENT_GROUP_SYNC_END( xEventGroup, uxBitsToSet, uxBitsToWaitFor, xTimeoutOccurred ); in xEventGroupSync()
303 const EventBits_t uxBitsToWaitFor, in xEventGroupWaitBits() argument
316 configASSERT( ( uxBitsToWaitFor & eventEVENT_BITS_CONTROL_BYTES ) == 0 ); in xEventGroupWaitBits()
317 configASSERT( uxBitsToWaitFor != 0 ); in xEventGroupWaitBits()
329 … xWaitConditionMet = prvTestWaitCondition( uxCurrentEventBits, uxBitsToWaitFor, xWaitForAllBits ); in xEventGroupWaitBits()
341 pxEventBits->uxEventBits &= ~uxBitsToWaitFor; in xEventGroupWaitBits()
382 …PlaceOnUnorderedEventList( &( pxEventBits->xTasksWaitingForBits ), ( uxBitsToWaitFor | uxControlBi… in xEventGroupWaitBits()
389 traceEVENT_GROUP_WAIT_BITS_BLOCK( xEventGroup, uxBitsToWaitFor ); in xEventGroupWaitBits()
420 if( prvTestWaitCondition( uxReturn, uxBitsToWaitFor, xWaitForAllBits ) != pdFALSE ) in xEventGroupWaitBits()
424 pxEventBits->uxEventBits &= ~uxBitsToWaitFor; in xEventGroupWaitBits()
449 traceEVENT_GROUP_WAIT_BITS_END( xEventGroup, uxBitsToWaitFor, xTimeoutOccurred ); in xEventGroupWaitBits()
715 const EventBits_t uxBitsToWaitFor, in prvTestWaitCondition() argument
724 if( ( uxCurrentEventBits & uxBitsToWaitFor ) != ( EventBits_t ) 0 ) in prvTestWaitCondition()
737 if( ( uxCurrentEventBits & uxBitsToWaitFor ) == uxBitsToWaitFor ) in prvTestWaitCondition()