Searched refs:xQueueGenericSend (Results 1 – 7 of 7) sorted by relevance
/Kernel-v10.6.2/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 | 109 #define xQueueGenericSend MPU_xQueueGenericSend macro
|
/Kernel-v10.6.2/ |
D | queue.c | 608 ( void ) xQueueGenericSend( pxNewQueue, NULL, ( TickType_t ) 0U, queueSEND_TO_BACK ); in prvInitialiseMutex() 746 … ( void ) xQueueGenericSend( pxMutex, NULL, queueMUTEX_GIVE_BLOCK_TIME, queueSEND_TO_BACK ); in xQueueGiveMutexRecursive() 884 BaseType_t xQueueGenericSend( QueueHandle_t xQueue, in xQueueGenericSend() function
|
D | History.txt | 1709 after the call to xQueueGenericSend() [within the same function] to before 2267 + Corrected the prototype for xQueueGenericSend() within queue.h.
|
/Kernel-v10.6.2/portable/Common/ |
D | mpu_wrappers.c | 1195 xReturn = xQueueGenericSend( xQueue, pvItemToQueue, xTicksToWait, xCopyPosition ); in MPU_xQueueGenericSend() 1203 xReturn = xQueueGenericSend( xQueue, pvItemToQueue, xTicksToWait, xCopyPosition ); in MPU_xQueueGenericSend()
|
D | mpu_wrappers_v2.c | 2149 … xReturn = xQueueGenericSend( xInternalQueueHandle, pvItemToQueue, xTicksToWait, xCopyPosition ); in MPU_xQueueGenericSendImpl()
|