Lines Matching refs:pxEventBits

83         EventGroup_t * pxEventBits;  in xEventGroupCreateStatic()  local
99pxEventBits = ( EventGroup_t * ) pxEventGroupBuffer; /*lint !e740 !e9087 EventGroup_t and StaticEv… in xEventGroupCreateStatic()
101 if( pxEventBits != NULL ) in xEventGroupCreateStatic()
103 pxEventBits->uxEventBits = 0; in xEventGroupCreateStatic()
104 vListInitialise( &( pxEventBits->xTasksWaitingForBits ) ); in xEventGroupCreateStatic()
111 pxEventBits->ucStaticallyAllocated = pdTRUE; in xEventGroupCreateStatic()
115 traceEVENT_GROUP_CREATE( pxEventBits ); in xEventGroupCreateStatic()
125 return pxEventBits; in xEventGroupCreateStatic()
135 EventGroup_t * pxEventBits; in xEventGroupCreate() local
150pxEventBits = ( EventGroup_t * ) pvPortMalloc( sizeof( EventGroup_t ) ); /*lint !e9087 !e9079 see … in xEventGroupCreate()
152 if( pxEventBits != NULL ) in xEventGroupCreate()
154 pxEventBits->uxEventBits = 0; in xEventGroupCreate()
155 vListInitialise( &( pxEventBits->xTasksWaitingForBits ) ); in xEventGroupCreate()
162 pxEventBits->ucStaticallyAllocated = pdFALSE; in xEventGroupCreate()
166 traceEVENT_GROUP_CREATE( pxEventBits ); in xEventGroupCreate()
173 return pxEventBits; in xEventGroupCreate()
185 EventGroup_t * pxEventBits = xEventGroup; in xEventGroupSync() local
199 uxOriginalBitValue = pxEventBits->uxEventBits; in xEventGroupSync()
210 pxEventBits->uxEventBits &= ~uxBitsToWaitFor; in xEventGroupSync()
223 …vTaskPlaceOnUnorderedEventList( &( pxEventBits->xTasksWaitingForBits ), ( uxBitsToWaitFor | eventC… in xEventGroupSync()
235 uxReturn = pxEventBits->uxEventBits; in xEventGroupSync()
264 uxReturn = pxEventBits->uxEventBits; in xEventGroupSync()
272 pxEventBits->uxEventBits &= ~uxBitsToWaitFor; in xEventGroupSync()
308 EventGroup_t * pxEventBits = xEventGroup; in xEventGroupWaitBits() local
326 const EventBits_t uxCurrentEventBits = pxEventBits->uxEventBits; in xEventGroupWaitBits()
341 pxEventBits->uxEventBits &= ~uxBitsToWaitFor; in xEventGroupWaitBits()
382 …vTaskPlaceOnUnorderedEventList( &( pxEventBits->xTasksWaitingForBits ), ( uxBitsToWaitFor | uxCont… in xEventGroupWaitBits()
416 uxReturn = pxEventBits->uxEventBits; in xEventGroupWaitBits()
424 pxEventBits->uxEventBits &= ~uxBitsToWaitFor; in xEventGroupWaitBits()
461 EventGroup_t * pxEventBits = xEventGroup; in xEventGroupClearBits() local
475 uxReturn = pxEventBits->uxEventBits; in xEventGroupClearBits()
478 pxEventBits->uxEventBits &= ~uxBitsToClear; in xEventGroupClearBits()
505 EventGroup_t const * const pxEventBits = xEventGroup; in xEventGroupGetBitsFromISR() local
510 uxReturn = pxEventBits->uxEventBits; in xEventGroupGetBitsFromISR()
526 EventGroup_t * pxEventBits = xEventGroup; in xEventGroupSetBits() local
534 pxList = &( pxEventBits->xTasksWaitingForBits ); in xEventGroupSetBits()
543 pxEventBits->uxEventBits |= uxBitsToSet; in xEventGroupSetBits()
559 if( ( uxBitsWaitedFor & pxEventBits->uxEventBits ) != ( EventBits_t ) 0 ) in xEventGroupSetBits()
568 else if( ( uxBitsWaitedFor & pxEventBits->uxEventBits ) == uxBitsWaitedFor ) in xEventGroupSetBits()
595 …vTaskRemoveFromUnorderedEventList( pxListItem, pxEventBits->uxEventBits | eventUNBLOCKED_DUE_TO_BI… in xEventGroupSetBits()
606 pxEventBits->uxEventBits &= ~uxBitsToClear; in xEventGroupSetBits()
610 return pxEventBits->uxEventBits; in xEventGroupSetBits()
616 EventGroup_t * pxEventBits = xEventGroup; in vEventGroupDelete() local
619 configASSERT( pxEventBits ); in vEventGroupDelete()
621 pxTasksWaitingForBits = &( pxEventBits->xTasksWaitingForBits ); in vEventGroupDelete()
641 vPortFree( pxEventBits ); in vEventGroupDelete()
647 if( pxEventBits->ucStaticallyAllocated == ( uint8_t ) pdFALSE ) in vEventGroupDelete()
649 vPortFree( pxEventBits ); in vEventGroupDelete()
665 EventGroup_t * pxEventBits = xEventGroup; in xEventGroupGetStaticBuffer() local
667 configASSERT( pxEventBits ); in xEventGroupGetStaticBuffer()
673 if( pxEventBits->ucStaticallyAllocated == ( uint8_t ) pdTRUE ) in xEventGroupGetStaticBuffer()
675 *ppxEventGroupBuffer = ( StaticEventGroup_t * ) pxEventBits; in xEventGroupGetStaticBuffer()
686 *ppxEventGroupBuffer = ( StaticEventGroup_t * ) pxEventBits; in xEventGroupGetStaticBuffer()
773 …EventGroup_t const * pxEventBits = ( EventGroup_t * ) xEventGroup; /*lint !e9087 !e9079 EventGroup… in uxEventGroupGetNumber() local
781 xReturn = pxEventBits->uxEventGroupNumber; in uxEventGroupGetNumber()