Lines Matching refs:xInternalEventGroupHandle
3902 EventGroupHandle_t xInternalEventGroupHandle = NULL; in MPU_xEventGroupWaitBitsImpl() local
3931 … xInternalEventGroupHandle = MPU_GetEventGroupHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_xEventGroupWaitBitsImpl()
3933 if( xInternalEventGroupHandle != NULL ) in MPU_xEventGroupWaitBitsImpl()
3935 xReturn = xEventGroupWaitBits( xInternalEventGroupHandle, in MPU_xEventGroupWaitBitsImpl()
3961 EventGroupHandle_t xInternalEventGroupHandle = NULL; in MPU_xEventGroupClearBitsImpl() local
3975 … xInternalEventGroupHandle = MPU_GetEventGroupHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_xEventGroupClearBitsImpl()
3977 if( xInternalEventGroupHandle != NULL ) in MPU_xEventGroupClearBitsImpl()
3979 … xReturn = xEventGroupClearBits( xInternalEventGroupHandle, uxBitsToClear ); in MPU_xEventGroupClearBitsImpl()
4000 EventGroupHandle_t xInternalEventGroupHandle = NULL; in MPU_xEventGroupSetBitsImpl() local
4014 … xInternalEventGroupHandle = MPU_GetEventGroupHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_xEventGroupSetBitsImpl()
4016 if( xInternalEventGroupHandle != NULL ) in MPU_xEventGroupSetBitsImpl()
4018 xReturn = xEventGroupSetBits( xInternalEventGroupHandle, uxBitsToSet ); in MPU_xEventGroupSetBitsImpl()
4043 EventGroupHandle_t xInternalEventGroupHandle = NULL; in MPU_xEventGroupSyncImpl() local
4062 … xInternalEventGroupHandle = MPU_GetEventGroupHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_xEventGroupSyncImpl()
4064 if( xInternalEventGroupHandle != NULL ) in MPU_xEventGroupSyncImpl()
4066 …xReturn = xEventGroupSync( xInternalEventGroupHandle, uxBitsToSet, uxBitsToWaitFor, xTicksToWait ); in MPU_xEventGroupSyncImpl()
4085 EventGroupHandle_t xInternalEventGroupHandle = NULL; in MPU_uxEventGroupGetNumberImpl() local
4097 … xInternalEventGroupHandle = MPU_GetEventGroupHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_uxEventGroupGetNumberImpl()
4099 if( xInternalEventGroupHandle != NULL ) in MPU_uxEventGroupGetNumberImpl()
4101 xReturn = uxEventGroupGetNumber( xInternalEventGroupHandle ); in MPU_uxEventGroupGetNumberImpl()
4120 EventGroupHandle_t xInternalEventGroupHandle = NULL; in MPU_vEventGroupSetNumberImpl() local
4132 … xInternalEventGroupHandle = MPU_GetEventGroupHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_vEventGroupSetNumberImpl()
4134 if( xInternalEventGroupHandle != NULL ) in MPU_vEventGroupSetNumberImpl()
4136 vEventGroupSetNumber( xInternalEventGroupHandle, uxEventGroupNumber ); in MPU_vEventGroupSetNumberImpl()
4154 EventGroupHandle_t xInternalEventGroupHandle = NULL; in MPU_xEventGroupCreate() local
4162 xInternalEventGroupHandle = xEventGroupCreate(); in MPU_xEventGroupCreate()
4164 if( xInternalEventGroupHandle != NULL ) in MPU_xEventGroupCreate()
4166 MPU_StoreEventGroupHandleAtIndex( lIndex, xInternalEventGroupHandle ); in MPU_xEventGroupCreate()
4185 EventGroupHandle_t xInternalEventGroupHandle = NULL; in MPU_xEventGroupCreateStatic() local
4193 xInternalEventGroupHandle = xEventGroupCreateStatic( pxEventGroupBuffer ); in MPU_xEventGroupCreateStatic()
4195 if( xInternalEventGroupHandle != NULL ) in MPU_xEventGroupCreateStatic()
4197 MPU_StoreEventGroupHandleAtIndex( lIndex, xInternalEventGroupHandle ); in MPU_xEventGroupCreateStatic()
4216 EventGroupHandle_t xInternalEventGroupHandle = NULL; in MPU_vEventGroupDelete() local
4223 … xInternalEventGroupHandle = MPU_GetEventGroupHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_vEventGroupDelete()
4225 if( xInternalEventGroupHandle != NULL ) in MPU_vEventGroupDelete()
4227 vEventGroupDelete( xInternalEventGroupHandle ); in MPU_vEventGroupDelete()
4242 EventGroupHandle_t xInternalEventGroupHandle = NULL; in MPU_xEventGroupGetStaticBuffer() local
4249 … xInternalEventGroupHandle = MPU_GetEventGroupHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_xEventGroupGetStaticBuffer()
4251 if( xInternalEventGroupHandle != NULL ) in MPU_xEventGroupGetStaticBuffer()
4253 … xReturn = xEventGroupGetStaticBuffer( xInternalEventGroupHandle, ppxEventGroupBuffer ); in MPU_xEventGroupGetStaticBuffer()
4269 EventGroupHandle_t xInternalEventGroupHandle = NULL; in MPU_xEventGroupClearBitsFromISR() local
4276 … xInternalEventGroupHandle = MPU_GetEventGroupHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_xEventGroupClearBitsFromISR()
4278 if( xInternalEventGroupHandle != NULL ) in MPU_xEventGroupClearBitsFromISR()
4280 … xReturn = xEventGroupClearBitsFromISR( xInternalEventGroupHandle, uxBitsToClear ); in MPU_xEventGroupClearBitsFromISR()
4297 EventGroupHandle_t xInternalEventGroupHandle = NULL; in MPU_xEventGroupSetBitsFromISR() local
4304 … xInternalEventGroupHandle = MPU_GetEventGroupHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_xEventGroupSetBitsFromISR()
4306 if( xInternalEventGroupHandle != NULL ) in MPU_xEventGroupSetBitsFromISR()
4308 …xReturn = xEventGroupSetBitsFromISR( xInternalEventGroupHandle, uxBitsToSet, pxHigherPriorityTaskW… in MPU_xEventGroupSetBitsFromISR()
4323 EventGroupHandle_t xInternalEventGroupHandle = NULL; in MPU_xEventGroupGetBitsFromISR() local
4330 … xInternalEventGroupHandle = MPU_GetEventGroupHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_xEventGroupGetBitsFromISR()
4332 if( xInternalEventGroupHandle != NULL ) in MPU_xEventGroupGetBitsFromISR()
4334 xReturn = xEventGroupGetBitsFromISR( xInternalEventGroupHandle ); in MPU_xEventGroupGetBitsFromISR()