Searched refs:uxQueueLength (Results 1 – 6 of 6) sorted by relevance
/Kernel-v11.1.0/include/ |
D | queue.h | 149 …#define xQueueCreate( uxQueueLength, uxItemSize ) xQueueGenericCreate( ( uxQueueLength ), ( uxI… argument 235 …ine xQueueCreateStatic( uxQueueLength, uxItemSize, pucQueueStorage, pxQueueBuffer ) xQueueGener… argument 1604 QueueHandle_t xQueueGenericCreate( const UBaseType_t uxQueueLength, 1615 QueueHandle_t xQueueGenericCreateStatic( const UBaseType_t uxQueueLength,
|
D | mpu_prototypes.h | 227 QueueHandle_t MPU_xQueueGenericCreate( const UBaseType_t uxQueueLength, 230 QueueHandle_t MPU_xQueueGenericCreateStatic( const UBaseType_t uxQueueLength,
|
D | FreeRTOS.h | 1169 …#define traceENTER_xQueueGenericCreateStatic( uxQueueLength, uxItemSize, pucQueueStorage, pxStatic… argument 1185 #define traceENTER_xQueueGenericCreate( uxQueueLength, uxItemSize, ucQueueType ) argument
|
/Kernel-v11.1.0/ |
D | queue.c | 226 static void prvInitialiseNewQueue( const UBaseType_t uxQueueLength, 376 QueueHandle_t xQueueGenericCreateStatic( const UBaseType_t uxQueueLength, in xQueueGenericCreateStatic() argument 384 …traceENTER_xQueueGenericCreateStatic( uxQueueLength, uxItemSize, pucQueueStorage, pxStaticQueue, u… in xQueueGenericCreateStatic() 390 if( ( uxQueueLength > ( UBaseType_t ) 0 ) && in xQueueGenericCreateStatic() 428 … prvInitialiseNewQueue( uxQueueLength, uxItemSize, pucQueueStorage, ucQueueType, pxNewQueue ); in xQueueGenericCreateStatic() 502 QueueHandle_t xQueueGenericCreate( const UBaseType_t uxQueueLength, in xQueueGenericCreate() argument 510 traceENTER_xQueueGenericCreate( uxQueueLength, uxItemSize, ucQueueType ); in xQueueGenericCreate() 512 if( ( uxQueueLength > ( UBaseType_t ) 0 ) && in xQueueGenericCreate() 514 ( ( SIZE_MAX / uxQueueLength ) >= uxItemSize ) && in xQueueGenericCreate() 516 ( ( UBaseType_t ) ( SIZE_MAX - sizeof( Queue_t ) ) >= ( uxQueueLength * uxItemSize ) ) ) in xQueueGenericCreate() [all …]
|
/Kernel-v11.1.0/portable/Common/ |
D | mpu_wrappers.c | 1077 QueueHandle_t MPU_xQueueGenericCreate( UBaseType_t uxQueueLength, in MPU_xQueueGenericCreate() argument 1088 xReturn = xQueueGenericCreate( uxQueueLength, uxItemSize, ucQueueType ); in MPU_xQueueGenericCreate() 1096 xReturn = xQueueGenericCreate( uxQueueLength, uxItemSize, ucQueueType ); in MPU_xQueueGenericCreate() 1105 QueueHandle_t MPU_xQueueGenericCreateStatic( const UBaseType_t uxQueueLength, in MPU_xQueueGenericCreateStatic() argument 1118 …xReturn = xQueueGenericCreateStatic( uxQueueLength, uxItemSize, pucQueueStorage, pxStaticQueue, uc… in MPU_xQueueGenericCreateStatic() 1126 …xReturn = xQueueGenericCreateStatic( uxQueueLength, uxItemSize, pucQueueStorage, pxStaticQueue, uc… in MPU_xQueueGenericCreateStatic()
|
D | mpu_wrappers_v2.c | 2185 UBaseType_t uxQueueItemSize, uxQueueLength; in MPU_xQueueGenericSendImpl() local 2200 uxQueueLength = uxQueueGetQueueLength( xInternalQueueHandle ); in MPU_xQueueGenericSendImpl() 2203 … ( !( ( xCopyPosition == queueOVERWRITE ) && ( uxQueueLength != ( UBaseType_t ) 1U ) ) ) in MPU_xQueueGenericSendImpl() 2899 QueueHandle_t MPU_xQueueGenericCreate( UBaseType_t uxQueueLength, in MPU_xQueueGenericCreate() argument 2911 … xInternalQueueHandle = xQueueGenericCreate( uxQueueLength, uxItemSize, ucQueueType ); in MPU_xQueueGenericCreate() 2932 QueueHandle_t MPU_xQueueGenericCreateStatic( const UBaseType_t uxQueueLength, in MPU_xQueueGenericCreateStatic() argument 2946 …xInternalQueueHandle = xQueueGenericCreateStatic( uxQueueLength, uxItemSize, pucQueueStorage, pxSt… in MPU_xQueueGenericCreateStatic()
|