Home
last modified time | relevance | path

Searched refs:uxQueueLength (Results 1 – 6 of 6) sorted by relevance

/FreeRTOS-Kernel/include/
A Dqueue.h149 …#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,
A Dmpu_prototypes.h263 QueueHandle_t MPU_xQueueGenericCreate( const UBaseType_t uxQueueLength,
266 QueueHandle_t MPU_xQueueGenericCreateStatic( const UBaseType_t uxQueueLength,
291 QueueHandle_t MPU_xQueueGenericCreate( const UBaseType_t uxQueueLength,
294 QueueHandle_t MPU_xQueueGenericCreateStatic( const UBaseType_t uxQueueLength,
A DFreeRTOS.h1186 …#define traceENTER_xQueueGenericCreateStatic( uxQueueLength, uxItemSize, pucQueueStorage, pxStatic… argument
1202 #define traceENTER_xQueueGenericCreate( uxQueueLength, uxItemSize, ucQueueType ) argument
/FreeRTOS-Kernel/
A Dqueue.c226 static void prvInitialiseNewQueue( const UBaseType_t uxQueueLength,
376 QueueHandle_t xQueueGenericCreateStatic( const UBaseType_t uxQueueLength, in xQueueGenericCreateStatic() argument
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()
524 xQueueSizeInBytes = ( size_t ) ( ( size_t ) uxQueueLength * ( size_t ) uxItemSize ); in xQueueGenericCreate()
569 static void prvInitialiseNewQueue( const UBaseType_t uxQueueLength, in prvInitialiseNewQueue() argument
[all …]
/FreeRTOS-Kernel/portable/Common/
A Dmpu_wrappers.c1079 QueueHandle_t MPU_xQueueGenericCreate( UBaseType_t uxQueueLength, in MPU_xQueueGenericCreate() argument
1090 xReturn = xQueueGenericCreate( uxQueueLength, uxItemSize, ucQueueType ); in MPU_xQueueGenericCreate()
1098 xReturn = xQueueGenericCreate( uxQueueLength, uxItemSize, ucQueueType ); in MPU_xQueueGenericCreate()
1107 QueueHandle_t MPU_xQueueGenericCreateStatic( const UBaseType_t uxQueueLength, in MPU_xQueueGenericCreateStatic() argument
1120 …xReturn = xQueueGenericCreateStatic( uxQueueLength, uxItemSize, pucQueueStorage, pxStaticQueue, uc… in MPU_xQueueGenericCreateStatic()
1128 …xReturn = xQueueGenericCreateStatic( uxQueueLength, uxItemSize, pucQueueStorage, pxStaticQueue, uc… in MPU_xQueueGenericCreateStatic()
A Dmpu_wrappers_v2.c2185 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()

Completed in 37 milliseconds