Lines Matching refs:xInternalQueueHandle

2176         QueueHandle_t xInternalQueueHandle = NULL;  in MPU_xQueueGenericSendImpl()  local
2190xInternalQueueHandle = MPU_GetQueueHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_xQueueGenericSendImpl()
2192 if( xInternalQueueHandle != NULL ) in MPU_xQueueGenericSendImpl()
2194 uxQueueItemSize = uxQueueGetQueueItemSize( xInternalQueueHandle ); in MPU_xQueueGenericSendImpl()
2195 uxQueueLength = uxQueueGetQueueLength( xInternalQueueHandle ); in MPU_xQueueGenericSendImpl()
2213 … xReturn = xQueueGenericSend( xInternalQueueHandle, pvItemToQueue, xTicksToWait, xCopyPosition ); in MPU_xQueueGenericSendImpl()
2229 QueueHandle_t xInternalQueueHandle = NULL; in MPU_uxQueueMessagesWaitingImpl() local
2241xInternalQueueHandle = MPU_GetQueueHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_uxQueueMessagesWaitingImpl()
2243 if( xInternalQueueHandle != NULL ) in MPU_uxQueueMessagesWaitingImpl()
2245 uxReturn = uxQueueMessagesWaiting( xInternalQueueHandle ); in MPU_uxQueueMessagesWaitingImpl()
2259 QueueHandle_t xInternalQueueHandle = NULL; in MPU_uxQueueSpacesAvailableImpl() local
2271xInternalQueueHandle = MPU_GetQueueHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_uxQueueSpacesAvailableImpl()
2273 if( xInternalQueueHandle != NULL ) in MPU_uxQueueSpacesAvailableImpl()
2275 uxReturn = uxQueueSpacesAvailable( xInternalQueueHandle ); in MPU_uxQueueSpacesAvailableImpl()
2293 QueueHandle_t xInternalQueueHandle = NULL; in MPU_xQueueReceiveImpl() local
2307xInternalQueueHandle = MPU_GetQueueHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_xQueueReceiveImpl()
2309 if( xInternalQueueHandle != NULL ) in MPU_xQueueReceiveImpl()
2311 uxQueueItemSize = uxQueueGetQueueItemSize( xInternalQueueHandle ); in MPU_xQueueReceiveImpl()
2325 xReturn = xQueueReceive( xInternalQueueHandle, pvBuffer, xTicksToWait ); in MPU_xQueueReceiveImpl()
2345 QueueHandle_t xInternalQueueHandle = NULL; in MPU_xQueuePeekImpl() local
2359xInternalQueueHandle = MPU_GetQueueHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_xQueuePeekImpl()
2361 if( xInternalQueueHandle != NULL ) in MPU_xQueuePeekImpl()
2363 uxQueueItemSize = uxQueueGetQueueItemSize( xInternalQueueHandle ); in MPU_xQueuePeekImpl()
2377 xReturn = xQueuePeek( xInternalQueueHandle, pvBuffer, xTicksToWait ); in MPU_xQueuePeekImpl()
2395 QueueHandle_t xInternalQueueHandle = NULL; in MPU_xQueueSemaphoreTakeImpl() local
2408xInternalQueueHandle = MPU_GetQueueHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_xQueueSemaphoreTakeImpl()
2410 if( xInternalQueueHandle != NULL ) in MPU_xQueueSemaphoreTakeImpl()
2412 uxQueueItemSize = uxQueueGetQueueItemSize( xInternalQueueHandle ); in MPU_xQueueSemaphoreTakeImpl()
2420 xReturn = xQueueSemaphoreTake( xInternalQueueHandle, xTicksToWait ); in MPU_xQueueSemaphoreTakeImpl()
2439 QueueHandle_t xInternalQueueHandle = NULL; in MPU_xQueueGetMutexHolderImpl() local
2451xInternalQueueHandle = MPU_GetQueueHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_xQueueGetMutexHolderImpl()
2453 if( xInternalQueueHandle != NULL ) in MPU_xQueueGetMutexHolderImpl()
2455 … xMutexHolderTaskInternalHandle = xQueueGetMutexHolder( xInternalQueueHandle ); in MPU_xQueueGetMutexHolderImpl()
2487 QueueHandle_t xInternalQueueHandle = NULL; in MPU_xQueueTakeMutexRecursiveImpl() local
2498xInternalQueueHandle = MPU_GetQueueHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_xQueueTakeMutexRecursiveImpl()
2500 if( xInternalQueueHandle != NULL ) in MPU_xQueueTakeMutexRecursiveImpl()
2502 uxQueueItemSize = uxQueueGetQueueItemSize( xInternalQueueHandle ); in MPU_xQueueTakeMutexRecursiveImpl()
2506 xReturn = xQueueTakeMutexRecursive( xInternalQueueHandle, xBlockTime ); in MPU_xQueueTakeMutexRecursiveImpl()
2527 QueueHandle_t xInternalQueueHandle = NULL; in MPU_xQueueGiveMutexRecursiveImpl() local
2537xInternalQueueHandle = MPU_GetQueueHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_xQueueGiveMutexRecursiveImpl()
2539 if( xInternalQueueHandle != NULL ) in MPU_xQueueGiveMutexRecursiveImpl()
2541 xReturn = xQueueGiveMutexRecursive( xInternalQueueHandle ); in MPU_xQueueGiveMutexRecursiveImpl()
2650 QueueHandle_t xInternalQueueHandle = NULL; in MPU_vQueueAddToRegistryImpl() local
2661xInternalQueueHandle = MPU_GetQueueHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_vQueueAddToRegistryImpl()
2663 if( xInternalQueueHandle != NULL ) in MPU_vQueueAddToRegistryImpl()
2665 vQueueAddToRegistry( xInternalQueueHandle, pcName ); in MPU_vQueueAddToRegistryImpl()
2681 QueueHandle_t xInternalQueueHandle = NULL; in MPU_vQueueUnregisterQueueImpl() local
2692xInternalQueueHandle = MPU_GetQueueHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_vQueueUnregisterQueueImpl()
2694 if( xInternalQueueHandle != NULL ) in MPU_vQueueUnregisterQueueImpl()
2696 vQueueUnregisterQueue( xInternalQueueHandle ); in MPU_vQueueUnregisterQueueImpl()
2712 QueueHandle_t xInternalQueueHandle = NULL; in MPU_pcQueueGetNameImpl() local
2724xInternalQueueHandle = MPU_GetQueueHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_pcQueueGetNameImpl()
2726 if( xInternalQueueHandle != NULL ) in MPU_pcQueueGetNameImpl()
2728 pcReturn = pcQueueGetName( xInternalQueueHandle ); in MPU_pcQueueGetNameImpl()
2746 QueueHandle_t xInternalQueueHandle = NULL; in MPU_vQueueDelete() local
2753 xInternalQueueHandle = MPU_GetQueueHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_vQueueDelete()
2755 if( xInternalQueueHandle != NULL ) in MPU_vQueueDelete()
2757 vQueueDelete( xInternalQueueHandle ); in MPU_vQueueDelete()
2768 QueueHandle_t xInternalQueueHandle = NULL; in MPU_xQueueCreateMutex() local
2776 xInternalQueueHandle = xQueueCreateMutex( ucQueueType ); in MPU_xQueueCreateMutex()
2778 if( xInternalQueueHandle != NULL ) in MPU_xQueueCreateMutex()
2780 MPU_StoreQueueHandleAtIndex( lIndex, xInternalQueueHandle ); in MPU_xQueueCreateMutex()
2800 QueueHandle_t xInternalQueueHandle = NULL; in MPU_xQueueCreateMutexStatic() local
2808 xInternalQueueHandle = xQueueCreateMutexStatic( ucQueueType, pxStaticQueue ); in MPU_xQueueCreateMutexStatic()
2810 if( xInternalQueueHandle != NULL ) in MPU_xQueueCreateMutexStatic()
2812 MPU_StoreQueueHandleAtIndex( lIndex, xInternalQueueHandle ); in MPU_xQueueCreateMutexStatic()
2832 QueueHandle_t xInternalQueueHandle = NULL; in MPU_xQueueCreateCountingSemaphore() local
2840xInternalQueueHandle = xQueueCreateCountingSemaphore( uxCountValue, uxInitialCount ); in MPU_xQueueCreateCountingSemaphore()
2842 if( xInternalQueueHandle != NULL ) in MPU_xQueueCreateCountingSemaphore()
2844 MPU_StoreQueueHandleAtIndex( lIndex, xInternalQueueHandle ); in MPU_xQueueCreateCountingSemaphore()
2865 QueueHandle_t xInternalQueueHandle = NULL; in MPU_xQueueCreateCountingSemaphoreStatic() local
2873xInternalQueueHandle = xQueueCreateCountingSemaphoreStatic( uxMaxCount, uxInitialCount, pxStaticQu… in MPU_xQueueCreateCountingSemaphoreStatic()
2875 if( xInternalQueueHandle != NULL ) in MPU_xQueueCreateCountingSemaphoreStatic()
2877 MPU_StoreQueueHandleAtIndex( lIndex, xInternalQueueHandle ); in MPU_xQueueCreateCountingSemaphoreStatic()
2898 QueueHandle_t xInternalQueueHandle = NULL; in MPU_xQueueGenericCreate() local
2906xInternalQueueHandle = xQueueGenericCreate( uxQueueLength, uxItemSize, ucQueueType ); in MPU_xQueueGenericCreate()
2908 if( xInternalQueueHandle != NULL ) in MPU_xQueueGenericCreate()
2910 MPU_StoreQueueHandleAtIndex( lIndex, xInternalQueueHandle ); in MPU_xQueueGenericCreate()
2933 QueueHandle_t xInternalQueueHandle = NULL; in MPU_xQueueGenericCreateStatic() local
2941xInternalQueueHandle = xQueueGenericCreateStatic( uxQueueLength, uxItemSize, pucQueueStorage, pxSt… in MPU_xQueueGenericCreateStatic()
2943 if( xInternalQueueHandle != NULL ) in MPU_xQueueGenericCreateStatic()
2945 MPU_StoreQueueHandleAtIndex( lIndex, xInternalQueueHandle ); in MPU_xQueueGenericCreateStatic()
2964 QueueHandle_t xInternalQueueHandle = NULL; in MPU_xQueueGenericReset() local
2971 xInternalQueueHandle = MPU_GetQueueHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_xQueueGenericReset()
2973 if( xInternalQueueHandle != NULL ) in MPU_xQueueGenericReset()
2975 xReturn = xQueueGenericReset( xInternalQueueHandle, xNewQueue ); in MPU_xQueueGenericReset()
3052 QueueHandle_t xInternalQueueHandle = NULL; in MPU_xQueueGenericGetStaticBuffers() local
3059xInternalQueueHandle = MPU_GetQueueHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_xQueueGenericGetStaticBuffers()
3061 if( xInternalQueueHandle != NULL ) in MPU_xQueueGenericGetStaticBuffers()
3063 … xReturn = xQueueGenericGetStaticBuffers( xInternalQueueHandle, ppucQueueStorage, ppxStaticQueue ); in MPU_xQueueGenericGetStaticBuffers()
3080 QueueHandle_t xInternalQueueHandle = NULL; in MPU_xQueueGenericSendFromISR() local
3086 xInternalQueueHandle = MPU_GetQueueHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_xQueueGenericSendFromISR()
3088 if( xInternalQueueHandle != NULL ) in MPU_xQueueGenericSendFromISR()
3090 …xReturn = xQueueGenericSendFromISR( xInternalQueueHandle, pvItemToQueue, pxHigherPriorityTaskWoken… in MPU_xQueueGenericSendFromISR()
3104 QueueHandle_t xInternalQueueHandle = NULL; in MPU_xQueueGiveFromISR() local
3110 xInternalQueueHandle = MPU_GetQueueHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_xQueueGiveFromISR()
3112 if( xInternalQueueHandle != NULL ) in MPU_xQueueGiveFromISR()
3114 xReturn = xQueueGiveFromISR( xInternalQueueHandle, pxHigherPriorityTaskWoken ); in MPU_xQueueGiveFromISR()
3128 QueueHandle_t xInternalQueueHandle = NULL; in MPU_xQueuePeekFromISR() local
3134 xInternalQueueHandle = MPU_GetQueueHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_xQueuePeekFromISR()
3136 if( xInternalQueueHandle != NULL ) in MPU_xQueuePeekFromISR()
3138 xReturn = xQueuePeekFromISR( xInternalQueueHandle, pvBuffer ); in MPU_xQueuePeekFromISR()
3153 QueueHandle_t xInternalQueueHandle = NULL; in MPU_xQueueReceiveFromISR() local
3159 xInternalQueueHandle = MPU_GetQueueHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_xQueueReceiveFromISR()
3161 if( xInternalQueueHandle != NULL ) in MPU_xQueueReceiveFromISR()
3163 … xReturn = xQueueReceiveFromISR( xInternalQueueHandle, pvBuffer, pxHigherPriorityTaskWoken ); in MPU_xQueueReceiveFromISR()
3176 QueueHandle_t xInternalQueueHandle = NULL; in MPU_xQueueIsQueueEmptyFromISR() local
3182 xInternalQueueHandle = MPU_GetQueueHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_xQueueIsQueueEmptyFromISR()
3184 if( xInternalQueueHandle != NULL ) in MPU_xQueueIsQueueEmptyFromISR()
3186 xReturn = xQueueIsQueueEmptyFromISR( xInternalQueueHandle ); in MPU_xQueueIsQueueEmptyFromISR()
3198 QueueHandle_t xInternalQueueHandle = NULL; in MPU_xQueueIsQueueFullFromISR() local
3204 xInternalQueueHandle = MPU_GetQueueHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_xQueueIsQueueFullFromISR()
3206 if( xInternalQueueHandle != NULL ) in MPU_xQueueIsQueueFullFromISR()
3208 xReturn = xQueueIsQueueFullFromISR( xInternalQueueHandle ); in MPU_xQueueIsQueueFullFromISR()
3221 QueueHandle_t xInternalQueueHandle = NULL; in MPU_uxQueueMessagesWaitingFromISR() local
3227 xInternalQueueHandle = MPU_GetQueueHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_uxQueueMessagesWaitingFromISR()
3229 if( xInternalQueueHandle != NULL ) in MPU_uxQueueMessagesWaitingFromISR()
3231 uxReturn = uxQueueMessagesWaitingFromISR( xInternalQueueHandle ); in MPU_uxQueueMessagesWaitingFromISR()