Home
last modified time | relevance | path

Searched defs:pxRingbuffer (Results 1 – 1 of 1) sorted by relevance

/device/soc/esp/esp32/components/esp_ringbuf/
Dringbuf.c41 #define rbGET_TX_SEM_HANDLE( pxRingbuffer ) ( (SemaphoreHandle_t) &(pxRingbuffer->xTransSemStatic) ) argument
42 #define rbGET_RX_SEM_HANDLE( pxRingbuffer ) ( (SemaphoreHandle_t) &(pxRingbuffer->xRecvSemStatic) ) argument
44 #define rbGET_TX_SEM_HANDLE( pxRingbuffer ) ( pxRingbuffer->xTransSemHandle ) argument
45 #define rbGET_RX_SEM_HANDLE( pxRingbuffer ) ( pxRingbuffer->xRecvSemHandle ) argument
257 static size_t prvGetFreeSize(Ringbuffer_t *pxRingbuffer) in prvGetFreeSize()
274 static BaseType_t prvCheckItemFitsDefault( Ringbuffer_t *pxRingbuffer, size_t xItemSize) in prvCheckItemFitsDefault()
302 static BaseType_t prvCheckItemFitsByteBuffer( Ringbuffer_t *pxRingbuffer, size_t xItemSize) in prvCheckItemFitsByteBuffer()
319 static uint8_t* prvAcquireItemNoSplit(Ringbuffer_t *pxRingbuffer, size_t xItemSize) in prvAcquireItemNoSplit()
358 static void prvSendItemDoneNoSplit(Ringbuffer_t *pxRingbuffer, uint8_t* pucItem) in prvSendItemDoneNoSplit()
403 static void prvCopyItemNoSplit(Ringbuffer_t *pxRingbuffer, const uint8_t *pucItem, size_t xItemSize) in prvCopyItemNoSplit()
[all …]