Lines Matching refs:uxBitsToWaitFor

79                                             const EventBits_t uxBitsToWaitFor,
187 const EventBits_t uxBitsToWaitFor, in xEventGroupSync() argument
195 traceENTER_xEventGroupSync( xEventGroup, uxBitsToSet, uxBitsToWaitFor, xTicksToWait ); in xEventGroupSync()
197 configASSERT( ( uxBitsToWaitFor & eventEVENT_BITS_CONTROL_BYTES ) == 0 ); in xEventGroupSync()
198 configASSERT( uxBitsToWaitFor != 0 ); in xEventGroupSync()
211 if( ( ( uxOriginalBitValue | uxBitsToSet ) & uxBitsToWaitFor ) == uxBitsToWaitFor ) in xEventGroupSync()
218 pxEventBits->uxEventBits &= ~uxBitsToWaitFor; in xEventGroupSync()
226 traceEVENT_GROUP_SYNC_BLOCK( xEventGroup, uxBitsToSet, uxBitsToWaitFor ); in xEventGroupSync()
231 …PlaceOnUnorderedEventList( &( pxEventBits->xTasksWaitingForBits ), ( uxBitsToWaitFor | eventCLEAR_… in xEventGroupSync()
278 if( ( uxReturn & uxBitsToWaitFor ) == uxBitsToWaitFor ) in xEventGroupSync()
280 pxEventBits->uxEventBits &= ~uxBitsToWaitFor; in xEventGroupSync()
301 traceEVENT_GROUP_SYNC_END( xEventGroup, uxBitsToSet, uxBitsToWaitFor, xTimeoutOccurred ); in xEventGroupSync()
313 const EventBits_t uxBitsToWaitFor, in xEventGroupWaitBits() argument
323 …traceENTER_xEventGroupWaitBits( xEventGroup, uxBitsToWaitFor, xClearOnExit, xWaitForAllBits, xTick… in xEventGroupWaitBits()
328 configASSERT( ( uxBitsToWaitFor & eventEVENT_BITS_CONTROL_BYTES ) == 0 ); in xEventGroupWaitBits()
329 configASSERT( uxBitsToWaitFor != 0 ); in xEventGroupWaitBits()
341 … xWaitConditionMet = prvTestWaitCondition( uxCurrentEventBits, uxBitsToWaitFor, xWaitForAllBits ); in xEventGroupWaitBits()
353 pxEventBits->uxEventBits &= ~uxBitsToWaitFor; in xEventGroupWaitBits()
394 …PlaceOnUnorderedEventList( &( pxEventBits->xTasksWaitingForBits ), ( uxBitsToWaitFor | uxControlBi… in xEventGroupWaitBits()
401 traceEVENT_GROUP_WAIT_BITS_BLOCK( xEventGroup, uxBitsToWaitFor ); in xEventGroupWaitBits()
432 … if( prvTestWaitCondition( uxReturn, uxBitsToWaitFor, xWaitForAllBits ) != pdFALSE ) in xEventGroupWaitBits()
436 pxEventBits->uxEventBits &= ~uxBitsToWaitFor; in xEventGroupWaitBits()
461 traceEVENT_GROUP_WAIT_BITS_END( xEventGroup, uxBitsToWaitFor, xTimeoutOccurred ); in xEventGroupWaitBits()
776 const EventBits_t uxBitsToWaitFor, in prvTestWaitCondition() argument
785 if( ( uxCurrentEventBits & uxBitsToWaitFor ) != ( EventBits_t ) 0 ) in prvTestWaitCondition()
798 if( ( uxCurrentEventBits & uxBitsToWaitFor ) == uxBitsToWaitFor ) in prvTestWaitCondition()