Lines Matching refs:xInternalEventGroupHandle
3895 EventGroupHandle_t xInternalEventGroupHandle = NULL; in MPU_xEventGroupWaitBitsImpl() local
3924 … xInternalEventGroupHandle = MPU_GetEventGroupHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_xEventGroupWaitBitsImpl()
3926 if( xInternalEventGroupHandle != NULL ) in MPU_xEventGroupWaitBitsImpl()
3928 xReturn = xEventGroupWaitBits( xInternalEventGroupHandle, in MPU_xEventGroupWaitBitsImpl()
3950 EventGroupHandle_t xInternalEventGroupHandle = NULL; in MPU_xEventGroupClearBitsImpl() local
3964 … xInternalEventGroupHandle = MPU_GetEventGroupHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_xEventGroupClearBitsImpl()
3966 if( xInternalEventGroupHandle != NULL ) in MPU_xEventGroupClearBitsImpl()
3968 xReturn = xEventGroupClearBits( xInternalEventGroupHandle, uxBitsToClear ); in MPU_xEventGroupClearBitsImpl()
3985 EventGroupHandle_t xInternalEventGroupHandle = NULL; in MPU_xEventGroupSetBitsImpl() local
3999 … xInternalEventGroupHandle = MPU_GetEventGroupHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_xEventGroupSetBitsImpl()
4001 if( xInternalEventGroupHandle != NULL ) in MPU_xEventGroupSetBitsImpl()
4003 xReturn = xEventGroupSetBits( xInternalEventGroupHandle, uxBitsToSet ); in MPU_xEventGroupSetBitsImpl()
4024 EventGroupHandle_t xInternalEventGroupHandle = NULL; in MPU_xEventGroupSyncImpl() local
4043 … xInternalEventGroupHandle = MPU_GetEventGroupHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_xEventGroupSyncImpl()
4045 if( xInternalEventGroupHandle != NULL ) in MPU_xEventGroupSyncImpl()
4047 …xReturn = xEventGroupSync( xInternalEventGroupHandle, uxBitsToSet, uxBitsToWaitFor, xTicksToWait ); in MPU_xEventGroupSyncImpl()
4064 EventGroupHandle_t xInternalEventGroupHandle = NULL; in MPU_uxEventGroupGetNumberImpl() local
4076 … xInternalEventGroupHandle = MPU_GetEventGroupHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_uxEventGroupGetNumberImpl()
4078 if( xInternalEventGroupHandle != NULL ) in MPU_uxEventGroupGetNumberImpl()
4080 xReturn = uxEventGroupGetNumber( xInternalEventGroupHandle ); in MPU_uxEventGroupGetNumberImpl()
4099 EventGroupHandle_t xInternalEventGroupHandle = NULL; in MPU_vEventGroupSetNumberImpl() local
4111 … xInternalEventGroupHandle = MPU_GetEventGroupHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_vEventGroupSetNumberImpl()
4113 if( xInternalEventGroupHandle != NULL ) in MPU_vEventGroupSetNumberImpl()
4115 vEventGroupSetNumber( xInternalEventGroupHandle, uxEventGroupNumber ); in MPU_vEventGroupSetNumberImpl()
4133 EventGroupHandle_t xInternalEventGroupHandle = NULL; in MPU_xEventGroupCreate() local
4141 xInternalEventGroupHandle = xEventGroupCreate(); in MPU_xEventGroupCreate()
4143 if( xInternalEventGroupHandle != NULL ) in MPU_xEventGroupCreate()
4145 MPU_StoreEventGroupHandleAtIndex( lIndex, xInternalEventGroupHandle ); in MPU_xEventGroupCreate()
4164 EventGroupHandle_t xInternalEventGroupHandle = NULL; in MPU_xEventGroupCreateStatic() local
4172 xInternalEventGroupHandle = xEventGroupCreateStatic( pxEventGroupBuffer ); in MPU_xEventGroupCreateStatic()
4174 if( xInternalEventGroupHandle != NULL ) in MPU_xEventGroupCreateStatic()
4176 MPU_StoreEventGroupHandleAtIndex( lIndex, xInternalEventGroupHandle ); in MPU_xEventGroupCreateStatic()
4193 EventGroupHandle_t xInternalEventGroupHandle = NULL; in MPU_vEventGroupDelete() local
4200 … xInternalEventGroupHandle = MPU_GetEventGroupHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_vEventGroupDelete()
4202 if( xInternalEventGroupHandle != NULL ) in MPU_vEventGroupDelete()
4204 vEventGroupDelete( xInternalEventGroupHandle ); in MPU_vEventGroupDelete()
4217 EventGroupHandle_t xInternalEventGroupHandle = NULL; in MPU_xEventGroupGetStaticBuffer() local
4224 … xInternalEventGroupHandle = MPU_GetEventGroupHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_xEventGroupGetStaticBuffer()
4226 if( xInternalEventGroupHandle != NULL ) in MPU_xEventGroupGetStaticBuffer()
4228 … xReturn = xEventGroupGetStaticBuffer( xInternalEventGroupHandle, ppxEventGroupBuffer ); in MPU_xEventGroupGetStaticBuffer()
4244 EventGroupHandle_t xInternalEventGroupHandle = NULL; in MPU_xEventGroupClearBitsFromISR() local
4251 … xInternalEventGroupHandle = MPU_GetEventGroupHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_xEventGroupClearBitsFromISR()
4253 if( xInternalEventGroupHandle != NULL ) in MPU_xEventGroupClearBitsFromISR()
4255 … xReturn = xEventGroupClearBitsFromISR( xInternalEventGroupHandle, uxBitsToClear ); in MPU_xEventGroupClearBitsFromISR()
4272 EventGroupHandle_t xInternalEventGroupHandle = NULL; in MPU_xEventGroupSetBitsFromISR() local
4279 … xInternalEventGroupHandle = MPU_GetEventGroupHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_xEventGroupSetBitsFromISR()
4281 if( xInternalEventGroupHandle != NULL ) in MPU_xEventGroupSetBitsFromISR()
4283 …xReturn = xEventGroupSetBitsFromISR( xInternalEventGroupHandle, uxBitsToSet, pxHigherPriorityTaskW… in MPU_xEventGroupSetBitsFromISR()
4296 EventGroupHandle_t xInternalEventGroupHandle = NULL; in MPU_xEventGroupGetBitsFromISR() local
4303 … xInternalEventGroupHandle = MPU_GetEventGroupHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_xEventGroupGetBitsFromISR()
4305 if( xInternalEventGroupHandle != NULL ) in MPU_xEventGroupGetBitsFromISR()
4307 xReturn = xEventGroupGetBitsFromISR( xInternalEventGroupHandle ); in MPU_xEventGroupGetBitsFromISR()