Home
last modified time | relevance | path

Searched refs:configASSERT (Results 1 – 8 of 8) sorted by relevance

/device/soc/esp/esp32/components/esp_ringbuf/
Dringbuf.c270 configASSERT(xReturn <= pxRingbuffer->xSize); in prvGetFreeSize()
277configASSERT(rbCHECK_ALIGNED(pxRingbuffer->pucAcquire)); //pucAcquire is always align… in prvCheckItemFitsDefault()
278configASSERT(pxRingbuffer->pucAcquire >= pxRingbuffer->pucHead && pxRingbuffer->pucAcquire < pxRin… in prvCheckItemFitsDefault()
305configASSERT(pxRingbuffer->pucAcquire >= pxRingbuffer->pucHead && pxRingbuffer->pucAcquire < pxRin… in prvCheckItemFitsByteBuffer()
324configASSERT(rbCHECK_ALIGNED(pxRingbuffer->pucAcquire)); //pucAcquire is always align… in prvAcquireItemNoSplit()
325configASSERT(pxRingbuffer->pucAcquire >= pxRingbuffer->pucHead && pxRingbuffer->pucAcquire < pxRin… in prvAcquireItemNoSplit()
326configASSERT(xRemLen >= rbHEADER_SIZE); //Remaining length must be abl… in prvAcquireItemNoSplit()
361 configASSERT(rbCHECK_ALIGNED(pucItem)); in prvSendItemDoneNoSplit()
362 configASSERT(pucItem >= pxRingbuffer->pucHead); in prvSendItemDoneNoSplit()
363configASSERT(pucItem <= pxRingbuffer->pucTail); //Inclusive of pucTail in the case of zero len… in prvSendItemDoneNoSplit()
[all …]
/device/soc/esp/esp32/components/osal/
Dqueue.c324 configASSERT( pxQueue ); in xQueueGenericReset()
376 configASSERT( uxQueueLength > ( UBaseType_t ) 0 ); in xQueueGenericCreateStatic()
380 configASSERT( pxStaticQueue != NULL ); in xQueueGenericCreateStatic()
384 configASSERT( !( ( pucQueueStorage != NULL ) && ( uxItemSize == 0 ) ) ); in xQueueGenericCreateStatic()
385 configASSERT( !( ( pucQueueStorage == NULL ) && ( uxItemSize != 0 ) ) ); in xQueueGenericCreateStatic()
393 configASSERT( xSize == sizeof( Queue_t ) ); in xQueueGenericCreateStatic()
436 configASSERT( uxQueueLength > ( UBaseType_t ) 0 ); in xQueueGenericCreate()
451 configASSERT( ( uxItemSize == 0 ) || ( uxQueueLength == ( xQueueSizeInBytes / uxItemSize ) ) ); in xQueueGenericCreate()
454 configASSERT( ( sizeof( Queue_t ) + xQueueSizeInBytes ) > xQueueSizeInBytes ); in xQueueGenericCreate()
613 configASSERT( pxMutex ); in xQueueGiveMutexRecursive()
[all …]
/device/soc/esp/esp32/components/osal/port/xtensa/include/esp_osal/
Dosal_config.h81 #define configASSERT(a) /* assertions disabled */ macro
83 #define configASSERT(a) if (unlikely(!(a))) { \ macro
88 #define configASSERT(a) assert(a) macro
92 … { esp_rom_printf("Untested FreeRTOS function %s\r\n", __FUNCTION__); configASSERT(false); } while…
Dportmacro.h481 #define configASSERT( x ) if (!(x)) { porttracePrint(-1); printf("\nAssertion failed in %s:%d\n",… macro
/device/soc/esp/esp32/components/osal/include/esp_osal/
Dlist.h131 …#define listTEST_LIST_ITEM_INTEGRITY( pxItem ) configASSERT( ( ( pxItem )->xListItemIntegrityValu…
132 …#define listTEST_LIST_INTEGRITY( pxList ) configASSERT( ( ( pxList )->xListIntegrityValue1 == pd…
Desp_osal.h239 #ifndef configASSERT
240 #define configASSERT( x ) macro
252 #define configPRECONDITION( X ) configASSERT(X)
/device/soc/esp/esp32/components/newlib/
Dlocks.c107 configASSERT(xSemaphoreGetMutexHolder(h) == NULL); /* mutex should not be held */ in _lock_close()
129 configASSERT(h != NULL); in lock_acquire_generic()
/device/soc/esp/esp32/components/osal/port/xtensa/
Dport.c331 configASSERT(xPortInIsrContext()); in vPortAssertIfInISR()