Lines Matching refs:uxReturn
190 EventBits_t uxOriginalBitValue, uxReturn; in xEventGroupSync() local
214 uxReturn = ( uxOriginalBitValue | uxBitsToSet ); in xEventGroupSync()
237 uxReturn = 0; in xEventGroupSync()
243 uxReturn = pxEventBits->uxEventBits; in xEventGroupSync()
265 uxReturn = uxTaskResetEventItemValue(); in xEventGroupSync()
267 if( ( uxReturn & eventUNBLOCKED_DUE_TO_BIT_SET ) == ( EventBits_t ) 0 ) in xEventGroupSync()
272 uxReturn = pxEventBits->uxEventBits; in xEventGroupSync()
278 if( ( uxReturn & uxBitsToWaitFor ) == uxBitsToWaitFor ) in xEventGroupSync()
298 uxReturn &= ~eventEVENT_BITS_CONTROL_BYTES; in xEventGroupSync()
306 traceRETURN_xEventGroupSync( uxReturn ); in xEventGroupSync()
308 return uxReturn; in xEventGroupSync()
319 EventBits_t uxReturn, uxControlBits = 0; in xEventGroupWaitBits() local
347 uxReturn = uxCurrentEventBits; in xEventGroupWaitBits()
364 uxReturn = uxCurrentEventBits; in xEventGroupWaitBits()
399 uxReturn = 0; in xEventGroupWaitBits()
421 uxReturn = uxTaskResetEventItemValue(); in xEventGroupWaitBits()
423 if( ( uxReturn & eventUNBLOCKED_DUE_TO_BIT_SET ) == ( EventBits_t ) 0 ) in xEventGroupWaitBits()
428 uxReturn = pxEventBits->uxEventBits; in xEventGroupWaitBits()
432 … if( prvTestWaitCondition( uxReturn, uxBitsToWaitFor, xWaitForAllBits ) != pdFALSE ) in xEventGroupWaitBits()
458 uxReturn &= ~eventEVENT_BITS_CONTROL_BYTES; in xEventGroupWaitBits()
466 traceRETURN_xEventGroupWaitBits( uxReturn ); in xEventGroupWaitBits()
468 return uxReturn; in xEventGroupWaitBits()
476 EventBits_t uxReturn; in xEventGroupClearBits() local
491 uxReturn = pxEventBits->uxEventBits; in xEventGroupClearBits()
498 traceRETURN_xEventGroupClearBits( uxReturn ); in xEventGroupClearBits()
500 return uxReturn; in xEventGroupClearBits()
528 EventBits_t uxReturn; in xEventGroupGetBitsFromISR() local
537 uxReturn = pxEventBits->uxEventBits; in xEventGroupGetBitsFromISR()
541 traceRETURN_xEventGroupGetBitsFromISR( uxReturn ); in xEventGroupGetBitsFromISR()
543 return uxReturn; in xEventGroupGetBitsFromISR()