Lines Matching refs:uxReturn

184     EventBits_t uxOriginalBitValue, uxReturn;  in xEventGroupSync()  local
206 uxReturn = ( uxOriginalBitValue | uxBitsToSet ); in xEventGroupSync()
229 uxReturn = 0; in xEventGroupSync()
235 uxReturn = pxEventBits->uxEventBits; in xEventGroupSync()
257 uxReturn = uxTaskResetEventItemValue(); in xEventGroupSync()
259 if( ( uxReturn & eventUNBLOCKED_DUE_TO_BIT_SET ) == ( EventBits_t ) 0 ) in xEventGroupSync()
264 uxReturn = pxEventBits->uxEventBits; in xEventGroupSync()
270 if( ( uxReturn & uxBitsToWaitFor ) == uxBitsToWaitFor ) in xEventGroupSync()
290 uxReturn &= ~eventEVENT_BITS_CONTROL_BYTES; in xEventGroupSync()
298 return uxReturn; in xEventGroupSync()
309 EventBits_t uxReturn, uxControlBits = 0; in xEventGroupWaitBits() local
335 uxReturn = uxCurrentEventBits; in xEventGroupWaitBits()
352 uxReturn = uxCurrentEventBits; in xEventGroupWaitBits()
387 uxReturn = 0; in xEventGroupWaitBits()
409 uxReturn = uxTaskResetEventItemValue(); in xEventGroupWaitBits()
411 if( ( uxReturn & eventUNBLOCKED_DUE_TO_BIT_SET ) == ( EventBits_t ) 0 ) in xEventGroupWaitBits()
416 uxReturn = pxEventBits->uxEventBits; in xEventGroupWaitBits()
420 if( prvTestWaitCondition( uxReturn, uxBitsToWaitFor, xWaitForAllBits ) != pdFALSE ) in xEventGroupWaitBits()
446 uxReturn &= ~eventEVENT_BITS_CONTROL_BYTES; in xEventGroupWaitBits()
454 return uxReturn; in xEventGroupWaitBits()
462 EventBits_t uxReturn; in xEventGroupClearBits() local
475 uxReturn = pxEventBits->uxEventBits; in xEventGroupClearBits()
482 return uxReturn; in xEventGroupClearBits()
506 EventBits_t uxReturn; in xEventGroupGetBitsFromISR() local
510 uxReturn = pxEventBits->uxEventBits; in xEventGroupGetBitsFromISR()
514 return uxReturn; in xEventGroupGetBitsFromISR()