Lines Matching refs:xInternalQueueHandle

2112         QueueHandle_t xInternalQueueHandle = NULL;  in MPU_xQueueGenericSendImpl()  local
2126xInternalQueueHandle = MPU_GetQueueHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_xQueueGenericSendImpl()
2128 if( xInternalQueueHandle != NULL ) in MPU_xQueueGenericSendImpl()
2130 uxQueueItemSize = uxQueueGetQueueItemSize( xInternalQueueHandle ); in MPU_xQueueGenericSendImpl()
2131 uxQueueLength = uxQueueGetQueueLength( xInternalQueueHandle ); in MPU_xQueueGenericSendImpl()
2143 … uxQueueGetQueueItemSize( xInternalQueueHandle ), in MPU_xQueueGenericSendImpl()
2149 … xReturn = xQueueGenericSend( xInternalQueueHandle, pvItemToQueue, xTicksToWait, xCopyPosition ); in MPU_xQueueGenericSendImpl()
2165 QueueHandle_t xInternalQueueHandle = NULL; in MPU_uxQueueMessagesWaitingImpl() local
2177xInternalQueueHandle = MPU_GetQueueHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_uxQueueMessagesWaitingImpl()
2179 if( xInternalQueueHandle != NULL ) in MPU_uxQueueMessagesWaitingImpl()
2181 uxReturn = uxQueueMessagesWaiting( xInternalQueueHandle ); in MPU_uxQueueMessagesWaitingImpl()
2195 QueueHandle_t xInternalQueueHandle = NULL; in MPU_uxQueueSpacesAvailableImpl() local
2207xInternalQueueHandle = MPU_GetQueueHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_uxQueueSpacesAvailableImpl()
2209 if( xInternalQueueHandle != NULL ) in MPU_uxQueueSpacesAvailableImpl()
2211 uxReturn = uxQueueSpacesAvailable( xInternalQueueHandle ); in MPU_uxQueueSpacesAvailableImpl()
2229 QueueHandle_t xInternalQueueHandle = NULL; in MPU_xQueueReceiveImpl() local
2243xInternalQueueHandle = MPU_GetQueueHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_xQueueReceiveImpl()
2245 if( xInternalQueueHandle != NULL ) in MPU_xQueueReceiveImpl()
2247 uxQueueItemSize = uxQueueGetQueueItemSize( xInternalQueueHandle ); in MPU_xQueueReceiveImpl()
2256 … uxQueueGetQueueItemSize( xInternalQueueHandle ), in MPU_xQueueReceiveImpl()
2261 xReturn = xQueueReceive( xInternalQueueHandle, pvBuffer, xTicksToWait ); in MPU_xQueueReceiveImpl()
2281 QueueHandle_t xInternalQueueHandle = NULL; in MPU_xQueuePeekImpl() local
2295xInternalQueueHandle = MPU_GetQueueHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_xQueuePeekImpl()
2297 if( xInternalQueueHandle != NULL ) in MPU_xQueuePeekImpl()
2299 uxQueueItemSize = uxQueueGetQueueItemSize( xInternalQueueHandle ); in MPU_xQueuePeekImpl()
2308 … uxQueueGetQueueItemSize( xInternalQueueHandle ), in MPU_xQueuePeekImpl()
2313 xReturn = xQueuePeek( xInternalQueueHandle, pvBuffer, xTicksToWait ); in MPU_xQueuePeekImpl()
2331 QueueHandle_t xInternalQueueHandle = NULL; in MPU_xQueueSemaphoreTakeImpl() local
2344xInternalQueueHandle = MPU_GetQueueHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_xQueueSemaphoreTakeImpl()
2346 if( xInternalQueueHandle != NULL ) in MPU_xQueueSemaphoreTakeImpl()
2348 uxQueueItemSize = uxQueueGetQueueItemSize( xInternalQueueHandle ); in MPU_xQueueSemaphoreTakeImpl()
2356 xReturn = xQueueSemaphoreTake( xInternalQueueHandle, xTicksToWait ); in MPU_xQueueSemaphoreTakeImpl()
2375 QueueHandle_t xInternalQueueHandle = NULL; in MPU_xQueueGetMutexHolderImpl() local
2387xInternalQueueHandle = MPU_GetQueueHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_xQueueGetMutexHolderImpl()
2389 if( xInternalQueueHandle != NULL ) in MPU_xQueueGetMutexHolderImpl()
2391 … xMutexHolderTaskInternalHandle = xQueueGetMutexHolder( xInternalQueueHandle ); in MPU_xQueueGetMutexHolderImpl()
2423 QueueHandle_t xInternalQueueHandle = NULL; in MPU_xQueueTakeMutexRecursiveImpl() local
2434xInternalQueueHandle = MPU_GetQueueHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_xQueueTakeMutexRecursiveImpl()
2436 if( xInternalQueueHandle != NULL ) in MPU_xQueueTakeMutexRecursiveImpl()
2438 uxQueueItemSize = uxQueueGetQueueItemSize( xInternalQueueHandle ); in MPU_xQueueTakeMutexRecursiveImpl()
2442 xReturn = xQueueTakeMutexRecursive( xInternalQueueHandle, xBlockTime ); in MPU_xQueueTakeMutexRecursiveImpl()
2463 QueueHandle_t xInternalQueueHandle = NULL; in MPU_xQueueGiveMutexRecursiveImpl() local
2473xInternalQueueHandle = MPU_GetQueueHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_xQueueGiveMutexRecursiveImpl()
2475 if( xInternalQueueHandle != NULL ) in MPU_xQueueGiveMutexRecursiveImpl()
2477 xReturn = xQueueGiveMutexRecursive( xInternalQueueHandle ); in MPU_xQueueGiveMutexRecursiveImpl()
2586 QueueHandle_t xInternalQueueHandle = NULL; in MPU_vQueueAddToRegistryImpl() local
2597xInternalQueueHandle = MPU_GetQueueHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_vQueueAddToRegistryImpl()
2599 if( xInternalQueueHandle != NULL ) in MPU_vQueueAddToRegistryImpl()
2601 vQueueAddToRegistry( xInternalQueueHandle, pcName ); in MPU_vQueueAddToRegistryImpl()
2617 QueueHandle_t xInternalQueueHandle = NULL; in MPU_vQueueUnregisterQueueImpl() local
2628xInternalQueueHandle = MPU_GetQueueHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_vQueueUnregisterQueueImpl()
2630 if( xInternalQueueHandle != NULL ) in MPU_vQueueUnregisterQueueImpl()
2632 vQueueUnregisterQueue( xInternalQueueHandle ); in MPU_vQueueUnregisterQueueImpl()
2648 QueueHandle_t xInternalQueueHandle = NULL; in MPU_pcQueueGetNameImpl() local
2660xInternalQueueHandle = MPU_GetQueueHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_pcQueueGetNameImpl()
2662 if( xInternalQueueHandle != NULL ) in MPU_pcQueueGetNameImpl()
2664 pcReturn = pcQueueGetName( xInternalQueueHandle ); in MPU_pcQueueGetNameImpl()
2682 QueueHandle_t xInternalQueueHandle = NULL; in MPU_vQueueDelete() local
2689 xInternalQueueHandle = MPU_GetQueueHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_vQueueDelete()
2691 if( xInternalQueueHandle != NULL ) in MPU_vQueueDelete()
2693 vQueueDelete( xInternalQueueHandle ); in MPU_vQueueDelete()
2704 QueueHandle_t xInternalQueueHandle = NULL; in MPU_xQueueCreateMutex() local
2712 xInternalQueueHandle = xQueueCreateMutex( ucQueueType ); in MPU_xQueueCreateMutex()
2714 if( xInternalQueueHandle != NULL ) in MPU_xQueueCreateMutex()
2716 MPU_StoreQueueHandleAtIndex( lIndex, xInternalQueueHandle ); in MPU_xQueueCreateMutex()
2736 QueueHandle_t xInternalQueueHandle = NULL; in MPU_xQueueCreateMutexStatic() local
2744 xInternalQueueHandle = xQueueCreateMutexStatic( ucQueueType, pxStaticQueue ); in MPU_xQueueCreateMutexStatic()
2746 if( xInternalQueueHandle != NULL ) in MPU_xQueueCreateMutexStatic()
2748 MPU_StoreQueueHandleAtIndex( lIndex, xInternalQueueHandle ); in MPU_xQueueCreateMutexStatic()
2768 QueueHandle_t xInternalQueueHandle = NULL; in MPU_xQueueCreateCountingSemaphore() local
2776xInternalQueueHandle = xQueueCreateCountingSemaphore( uxCountValue, uxInitialCount ); in MPU_xQueueCreateCountingSemaphore()
2778 if( xInternalQueueHandle != NULL ) in MPU_xQueueCreateCountingSemaphore()
2780 MPU_StoreQueueHandleAtIndex( lIndex, xInternalQueueHandle ); in MPU_xQueueCreateCountingSemaphore()
2801 QueueHandle_t xInternalQueueHandle = NULL; in MPU_xQueueCreateCountingSemaphoreStatic() local
2809xInternalQueueHandle = xQueueCreateCountingSemaphoreStatic( uxMaxCount, uxInitialCount, pxStaticQu… in MPU_xQueueCreateCountingSemaphoreStatic()
2811 if( xInternalQueueHandle != NULL ) in MPU_xQueueCreateCountingSemaphoreStatic()
2813 MPU_StoreQueueHandleAtIndex( lIndex, xInternalQueueHandle ); in MPU_xQueueCreateCountingSemaphoreStatic()
2834 QueueHandle_t xInternalQueueHandle = NULL; in MPU_xQueueGenericCreate() local
2842xInternalQueueHandle = xQueueGenericCreate( uxQueueLength, uxItemSize, ucQueueType ); in MPU_xQueueGenericCreate()
2844 if( xInternalQueueHandle != NULL ) in MPU_xQueueGenericCreate()
2846 MPU_StoreQueueHandleAtIndex( lIndex, xInternalQueueHandle ); in MPU_xQueueGenericCreate()
2869 QueueHandle_t xInternalQueueHandle = NULL; in MPU_xQueueGenericCreateStatic() local
2877xInternalQueueHandle = xQueueGenericCreateStatic( uxQueueLength, uxItemSize, pucQueueStorage, pxSt… in MPU_xQueueGenericCreateStatic()
2879 if( xInternalQueueHandle != NULL ) in MPU_xQueueGenericCreateStatic()
2881 MPU_StoreQueueHandleAtIndex( lIndex, xInternalQueueHandle ); in MPU_xQueueGenericCreateStatic()
2900 QueueHandle_t xInternalQueueHandle = NULL; in MPU_xQueueGenericReset() local
2907 xInternalQueueHandle = MPU_GetQueueHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_xQueueGenericReset()
2909 if( xInternalQueueHandle != NULL ) in MPU_xQueueGenericReset()
2911 xReturn = xQueueGenericReset( xInternalQueueHandle, xNewQueue ); in MPU_xQueueGenericReset()
2988 QueueHandle_t xInternalQueueHandle = NULL; in MPU_xQueueGenericGetStaticBuffers() local
2995xInternalQueueHandle = MPU_GetQueueHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_xQueueGenericGetStaticBuffers()
2997 if( xInternalQueueHandle != NULL ) in MPU_xQueueGenericGetStaticBuffers()
2999 … xReturn = xQueueGenericGetStaticBuffers( xInternalQueueHandle, ppucQueueStorage, ppxStaticQueue ); in MPU_xQueueGenericGetStaticBuffers()
3016 QueueHandle_t xInternalQueueHandle = NULL; in MPU_xQueueGenericSendFromISR() local
3022 xInternalQueueHandle = MPU_GetQueueHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_xQueueGenericSendFromISR()
3024 if( xInternalQueueHandle != NULL ) in MPU_xQueueGenericSendFromISR()
3026 …xReturn = xQueueGenericSendFromISR( xInternalQueueHandle, pvItemToQueue, pxHigherPriorityTaskWoken… in MPU_xQueueGenericSendFromISR()
3040 QueueHandle_t xInternalQueueHandle = NULL; in MPU_xQueueGiveFromISR() local
3046 xInternalQueueHandle = MPU_GetQueueHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_xQueueGiveFromISR()
3048 if( xInternalQueueHandle != NULL ) in MPU_xQueueGiveFromISR()
3050 xReturn = xQueueGiveFromISR( xInternalQueueHandle, pxHigherPriorityTaskWoken ); in MPU_xQueueGiveFromISR()
3064 QueueHandle_t xInternalQueueHandle = NULL; in MPU_xQueuePeekFromISR() local
3070 xInternalQueueHandle = MPU_GetQueueHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_xQueuePeekFromISR()
3072 if( xInternalQueueHandle != NULL ) in MPU_xQueuePeekFromISR()
3074 xReturn = xQueuePeekFromISR( xInternalQueueHandle, pvBuffer ); in MPU_xQueuePeekFromISR()
3089 QueueHandle_t xInternalQueueHandle = NULL; in MPU_xQueueReceiveFromISR() local
3095 xInternalQueueHandle = MPU_GetQueueHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_xQueueReceiveFromISR()
3097 if( xInternalQueueHandle != NULL ) in MPU_xQueueReceiveFromISR()
3099 … xReturn = xQueueReceiveFromISR( xInternalQueueHandle, pvBuffer, pxHigherPriorityTaskWoken ); in MPU_xQueueReceiveFromISR()
3112 QueueHandle_t xInternalQueueHandle = NULL; in MPU_xQueueIsQueueEmptyFromISR() local
3118 xInternalQueueHandle = MPU_GetQueueHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_xQueueIsQueueEmptyFromISR()
3120 if( xInternalQueueHandle != NULL ) in MPU_xQueueIsQueueEmptyFromISR()
3122 xReturn = xQueueIsQueueEmptyFromISR( xInternalQueueHandle ); in MPU_xQueueIsQueueEmptyFromISR()
3134 QueueHandle_t xInternalQueueHandle = NULL; in MPU_xQueueIsQueueFullFromISR() local
3140 xInternalQueueHandle = MPU_GetQueueHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_xQueueIsQueueFullFromISR()
3142 if( xInternalQueueHandle != NULL ) in MPU_xQueueIsQueueFullFromISR()
3144 xReturn = xQueueIsQueueFullFromISR( xInternalQueueHandle ); in MPU_xQueueIsQueueFullFromISR()
3157 QueueHandle_t xInternalQueueHandle = NULL; in MPU_uxQueueMessagesWaitingFromISR() local
3163 xInternalQueueHandle = MPU_GetQueueHandleAtIndex( CONVERT_TO_INTERNAL_INDEX( lIndex ) ); in MPU_uxQueueMessagesWaitingFromISR()
3165 if( xInternalQueueHandle != NULL ) in MPU_uxQueueMessagesWaitingFromISR()
3167 uxReturn = uxQueueMessagesWaitingFromISR( xInternalQueueHandle ); in MPU_uxQueueMessagesWaitingFromISR()