Home
last modified time | relevance | path

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

/Kernel-v10.6.2/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.h109 #define xQueueGenericSend MPU_xQueueGenericSend macro
/Kernel-v10.6.2/
Dqueue.c608 ( 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
DHistory.txt1709 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/
Dmpu_wrappers.c1195 xReturn = xQueueGenericSend( xQueue, pvItemToQueue, xTicksToWait, xCopyPosition ); in MPU_xQueueGenericSend()
1203 xReturn = xQueueGenericSend( xQueue, pvItemToQueue, xTicksToWait, xCopyPosition ); in MPU_xQueueGenericSend()
Dmpu_wrappers_v2.c2149 … xReturn = xQueueGenericSend( xInternalQueueHandle, pvItemToQueue, xTicksToWait, xCopyPosition ); in MPU_xQueueGenericSendImpl()