Home
last modified time | relevance | path

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

/device/soc/esp/esp32/components/osal/include/esp_osal/
Dqueue.h275 #define xQueueSendToFront( xQueue, pvItemToQueue, xTicksToWait ) xQueueGenericSend( ( xQueue ), ( p…
347 #define xQueueSendToBack( xQueue, pvItemToQueue, xTicksToWait ) xQueueGenericSend( ( xQueue ), ( pv…
421 #define xQueueSend( xQueue, pvItemToQueue, xTicksToWait ) xQueueGenericSend( ( xQueue ), ( pvItemTo…
495 #define xQueueOverwrite( xQueue, pvItemToQueue ) xQueueGenericSend( ( xQueue ), ( pvItemToQueue ), …
572 BaseType_t xQueueGenericSend( QueueHandle_t xQueue, const void * const pvItemToQueue, TickType_t xT…
Dsemphr.h442 #define xSemaphoreGive( xSemaphore ) xQueueGenericSend( ( QueueHandle_t ) ( xSemaphore ), NULL, se…
Dmpu_wrappers.h93 #define xQueueGenericSend MPU_xQueueGenericSend macro
/device/soc/esp/esp32/components/osal/
Dqueue.c559 ( void ) xQueueGenericSend( pxNewQueue, NULL, ( TickType_t ) 0U, queueSEND_TO_BACK ); in prvInitialiseMutex()
637 ( void ) xQueueGenericSend( pxMutex, NULL, queueMUTEX_GIVE_BLOCK_TIME, queueSEND_TO_BACK ); in xQueueGiveMutexRecursive()
755 BaseType_t xQueueGenericSend( QueueHandle_t xQueue, const void * const pvItemToQueue, TickType_t xT… in xQueueGenericSend() function