Lines Matching refs:uxBitsToWaitFor
73 const EventBits_t uxBitsToWaitFor,
181 const EventBits_t uxBitsToWaitFor, in xEventGroupSync() argument
189 traceENTER_xEventGroupSync( xEventGroup, uxBitsToSet, uxBitsToWaitFor, xTicksToWait ); in xEventGroupSync()
191 configASSERT( ( uxBitsToWaitFor & eventEVENT_BITS_CONTROL_BYTES ) == 0 ); in xEventGroupSync()
192 configASSERT( uxBitsToWaitFor != 0 ); in xEventGroupSync()
205 if( ( ( uxOriginalBitValue | uxBitsToSet ) & uxBitsToWaitFor ) == uxBitsToWaitFor ) in xEventGroupSync()
212 pxEventBits->uxEventBits &= ~uxBitsToWaitFor; in xEventGroupSync()
220 traceEVENT_GROUP_SYNC_BLOCK( xEventGroup, uxBitsToSet, uxBitsToWaitFor ); in xEventGroupSync()
225 …PlaceOnUnorderedEventList( &( pxEventBits->xTasksWaitingForBits ), ( uxBitsToWaitFor | eventCLEAR_… in xEventGroupSync()
272 if( ( uxReturn & uxBitsToWaitFor ) == uxBitsToWaitFor ) in xEventGroupSync()
274 pxEventBits->uxEventBits &= ~uxBitsToWaitFor; in xEventGroupSync()
295 traceEVENT_GROUP_SYNC_END( xEventGroup, uxBitsToSet, uxBitsToWaitFor, xTimeoutOccurred ); in xEventGroupSync()
307 const EventBits_t uxBitsToWaitFor, in xEventGroupWaitBits() argument
317 …traceENTER_xEventGroupWaitBits( xEventGroup, uxBitsToWaitFor, xClearOnExit, xWaitForAllBits, xTick… in xEventGroupWaitBits()
322 configASSERT( ( uxBitsToWaitFor & eventEVENT_BITS_CONTROL_BYTES ) == 0 ); in xEventGroupWaitBits()
323 configASSERT( uxBitsToWaitFor != 0 ); in xEventGroupWaitBits()
335 … xWaitConditionMet = prvTestWaitCondition( uxCurrentEventBits, uxBitsToWaitFor, xWaitForAllBits ); in xEventGroupWaitBits()
347 pxEventBits->uxEventBits &= ~uxBitsToWaitFor; in xEventGroupWaitBits()
388 …PlaceOnUnorderedEventList( &( pxEventBits->xTasksWaitingForBits ), ( uxBitsToWaitFor | uxControlBi… in xEventGroupWaitBits()
395 traceEVENT_GROUP_WAIT_BITS_BLOCK( xEventGroup, uxBitsToWaitFor ); in xEventGroupWaitBits()
426 if( prvTestWaitCondition( uxReturn, uxBitsToWaitFor, xWaitForAllBits ) != pdFALSE ) in xEventGroupWaitBits()
430 pxEventBits->uxEventBits &= ~uxBitsToWaitFor; in xEventGroupWaitBits()
455 traceEVENT_GROUP_WAIT_BITS_END( xEventGroup, uxBitsToWaitFor, xTimeoutOccurred ); in xEventGroupWaitBits()
767 const EventBits_t uxBitsToWaitFor, in prvTestWaitCondition() argument
776 if( ( uxCurrentEventBits & uxBitsToWaitFor ) != ( EventBits_t ) 0 ) in prvTestWaitCondition()
789 if( ( uxCurrentEventBits & uxBitsToWaitFor ) == uxBitsToWaitFor ) in prvTestWaitCondition()