Home
last modified time | relevance | path

Searched refs:xQueueGenericSend (Results 1 – 7 of 7) sorted by relevance

/Kernel-v11.1.0/include/
Dqueue.h346 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,
Dsemphr.h460 #define xSemaphoreGive( xSemaphore ) xQueueGenericSend( ( QueueHandle_t ) ( xSemaphore ), NULL, …
Dmpu_wrappers.h111 #define xQueueGenericSend MPU_xQueueGenericSend macro
/Kernel-v11.1.0/
Dqueue.c631 ( 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
DHistory.txt1878 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/
Dmpu_wrappers.c1171 xReturn = xQueueGenericSend( xQueue, pvItemToQueue, xTicksToWait, xCopyPosition ); in MPU_xQueueGenericSend()
1179 xReturn = xQueueGenericSend( xQueue, pvItemToQueue, xTicksToWait, xCopyPosition ); in MPU_xQueueGenericSend()
Dmpu_wrappers_v2.c2218 … xReturn = xQueueGenericSend( xInternalQueueHandle, pvItemToQueue, xTicksToWait, xCopyPosition ); in MPU_xQueueGenericSendImpl()