Searched refs:ucQueueType (Results 1 – 6 of 6) sorted by relevance
/FreeRTOS-Kernel/ |
A D | queue.c | 134 uint8_t ucQueueType; member 229 const uint8_t ucQueueType, 504 const uint8_t ucQueueType ) in xQueueGenericCreate() argument 551 traceQUEUE_CREATE_FAILED( ucQueueType ); in xQueueGenericCreate() 572 const uint8_t ucQueueType, in prvInitialiseNewQueue() argument 577 ( void ) ucQueueType; in prvInitialiseNewQueue() 601 pxNewQueue->ucQueueType = ucQueueType; in prvInitialiseNewQueue() 647 QueueHandle_t xQueueCreateMutex( const uint8_t ucQueueType ) in xQueueCreateMutex() argument 652 traceENTER_xQueueCreateMutex( ucQueueType ); in xQueueCreateMutex() 677 ( void ) ucQueueType; in xQueueCreateMutexStatic() [all …]
|
/FreeRTOS-Kernel/include/ |
A D | queue.h | 1498 QueueHandle_t xQueueCreateMutex( const uint8_t ucQueueType ) PRIVILEGED_FUNCTION; 1501 QueueHandle_t xQueueCreateMutexStatic( const uint8_t ucQueueType, 1606 const uint8_t ucQueueType ) PRIVILEGED_FUNCTION; 1619 const uint8_t ucQueueType ) PRIVILEGED_FUNCTION;
|
A D | mpu_prototypes.h | 255 QueueHandle_t MPU_xQueueCreateMutex( const uint8_t ucQueueType ) FREERTOS_SYSTEM_CALL; 256 QueueHandle_t MPU_xQueueCreateMutexStatic( const uint8_t ucQueueType, 265 const uint8_t ucQueueType ) FREERTOS_SYSTEM_CALL; 270 const uint8_t ucQueueType ) FREERTOS_SYSTEM_CALL; 283 QueueHandle_t MPU_xQueueCreateMutex( const uint8_t ucQueueType ) PRIVILEGED_FUNCTION; 284 QueueHandle_t MPU_xQueueCreateMutexStatic( const uint8_t ucQueueType, 293 const uint8_t ucQueueType ) PRIVILEGED_FUNCTION; 298 const uint8_t ucQueueType ) PRIVILEGED_FUNCTION;
|
A D | FreeRTOS.h | 746 #define traceQUEUE_CREATE_FAILED( ucQueueType ) argument 1186 …xQueueGenericCreateStatic( uxQueueLength, uxItemSize, pucQueueStorage, pxStaticQueue, ucQueueType ) argument 1202 #define traceENTER_xQueueGenericCreate( uxQueueLength, uxItemSize, ucQueueType ) argument 1210 #define traceENTER_xQueueCreateMutex( ucQueueType ) argument 1218 #define traceENTER_xQueueCreateMutexStatic( ucQueueType, pxStaticQueue ) argument 1390 #define traceRETURN_ucQueueGetQueueType( ucQueueType ) argument
|
/FreeRTOS-Kernel/portable/Common/ |
A D | mpu_wrappers.c | 1081 uint8_t ucQueueType ) /* FREERTOS_SYSTEM_CALL */ in MPU_xQueueGenericCreate() argument 1090 xReturn = xQueueGenericCreate( uxQueueLength, uxItemSize, ucQueueType ); in MPU_xQueueGenericCreate() 1098 xReturn = xQueueGenericCreate( uxQueueLength, uxItemSize, ucQueueType ); in MPU_xQueueGenericCreate() 1111 … const uint8_t ucQueueType ) /* FREERTOS_SYSTEM_CALL */ in MPU_xQueueGenericCreateStatic() argument 1120 …QueueGenericCreateStatic( uxQueueLength, uxItemSize, pucQueueStorage, pxStaticQueue, ucQueueType ); in MPU_xQueueGenericCreateStatic() 1340 QueueHandle_t MPU_xQueueCreateMutex( const uint8_t ucQueueType ) /* FREERTOS_SYSTEM_CALL */ in MPU_xQueueCreateMutex() argument 1349 xReturn = xQueueCreateMutex( ucQueueType ); in MPU_xQueueCreateMutex() 1357 xReturn = xQueueCreateMutex( ucQueueType ); in MPU_xQueueCreateMutex() 1366 QueueHandle_t MPU_xQueueCreateMutexStatic( const uint8_t ucQueueType, in MPU_xQueueCreateMutexStatic() argument 1376 xReturn = xQueueCreateMutexStatic( ucQueueType, pxStaticQueue ); in MPU_xQueueCreateMutexStatic() [all …]
|
A D | mpu_wrappers_v2.c | 2771 QueueHandle_t MPU_xQueueCreateMutex( const uint8_t ucQueueType ) /* PRIVILEGED_FUNCTION */ in MPU_xQueueCreateMutex() argument 2781 xInternalQueueHandle = xQueueCreateMutex( ucQueueType ); in MPU_xQueueCreateMutex() 2802 QueueHandle_t MPU_xQueueCreateMutexStatic( const uint8_t ucQueueType, in MPU_xQueueCreateMutexStatic() argument 2813 xInternalQueueHandle = xQueueCreateMutexStatic( ucQueueType, pxStaticQueue ); in MPU_xQueueCreateMutexStatic() 2901 uint8_t ucQueueType ) /* PRIVILEGED_FUNCTION */ in MPU_xQueueGenericCreate() argument 2911 … xInternalQueueHandle = xQueueGenericCreate( uxQueueLength, uxItemSize, ucQueueType ); in MPU_xQueueGenericCreate() 2936 … const uint8_t ucQueueType ) /* PRIVILEGED_FUNCTION */ in MPU_xQueueGenericCreateStatic() argument 2946 …QueueGenericCreateStatic( uxQueueLength, uxItemSize, pucQueueStorage, pxStaticQueue, ucQueueType ); in MPU_xQueueGenericCreateStatic()
|
Completed in 38 milliseconds