Searched refs:xQueueGenericSend (Results 1 – 7 of 7) sorted by relevance
/Kernel-v11.1.0/include/ |
D | queue.h | 346 xQueueGenericSend( ( xQueue ), ( pvItemToQueue ), ( xTicksToWait ), queueSEND_TO_FRONT ) 429 xQueueGenericSend( ( xQueue ), ( pvItemToQueue ), ( xTicksToWait ), queueSEND_TO_BACK ) 514 xQueueGenericSend( ( xQueue ), ( pvItemToQueue ), ( xTicksToWait ), queueSEND_TO_BACK ) 598 xQueueGenericSend( ( xQueue ), ( pvItemToQueue ), 0, queueOVERWRITE ) 686 BaseType_t xQueueGenericSend( QueueHandle_t xQueue,
|
D | semphr.h | 460 #define xSemaphoreGive( xSemaphore ) xQueueGenericSend( ( QueueHandle_t ) ( xSemaphore ), NULL, …
|
D | mpu_wrappers.h | 111 #define xQueueGenericSend MPU_xQueueGenericSend macro
|
/Kernel-v11.1.0/ |
D | queue.c | 631 ( void ) xQueueGenericSend( pxNewQueue, NULL, ( TickType_t ) 0U, queueSEND_TO_BACK ); in prvInitialiseMutex() 787 … ( void ) xQueueGenericSend( pxMutex, NULL, queueMUTEX_GIVE_BLOCK_TIME, queueSEND_TO_BACK ); in xQueueGiveMutexRecursive() 939 BaseType_t xQueueGenericSend( QueueHandle_t xQueue, in xQueueGenericSend() function
|
D | History.txt | 1878 after the call to xQueueGenericSend() [within the same function] to before 2436 + Corrected the prototype for xQueueGenericSend() within queue.h.
|
/Kernel-v11.1.0/portable/Common/ |
D | mpu_wrappers.c | 1171 xReturn = xQueueGenericSend( xQueue, pvItemToQueue, xTicksToWait, xCopyPosition ); in MPU_xQueueGenericSend() 1179 xReturn = xQueueGenericSend( xQueue, pvItemToQueue, xTicksToWait, xCopyPosition ); in MPU_xQueueGenericSend()
|
D | mpu_wrappers_v2.c | 2218 … xReturn = xQueueGenericSend( xInternalQueueHandle, pvItemToQueue, xTicksToWait, xCopyPosition ); in MPU_xQueueGenericSendImpl()
|