Home
last modified time | relevance | path

Searched refs:xQueue (Results 1 – 2 of 2) sorted by relevance

/FreeRTOS-Plus-TCP-v3.1.0/test/cbmc/include/
HDqueue_init.h33 …__CPROVER_assert( __CPROVER_w_ok( ( void * ) pxQueue->u.xQueue.pcReadFrom, ( size_t ) pxQueue->uxI… in prvCopyDataToQueue()
87 QueueHandle_t xQueue = in xUnconstrainedQueueBoundedItemSize() local
90 if( xQueue ) in xUnconstrainedQueueBoundedItemSize()
92 xQueue->cTxLock = nondet_int8_t(); in xUnconstrainedQueueBoundedItemSize()
93 __CPROVER_assume( xQueue->cTxLock != 127 ); in xUnconstrainedQueueBoundedItemSize()
94 xQueue->cRxLock = nondet_int8_t(); in xUnconstrainedQueueBoundedItemSize()
95 xQueue->uxMessagesWaiting = nondet_UBaseType_t(); in xUnconstrainedQueueBoundedItemSize()
99 __CPROVER_assume( xQueue->uxMessagesWaiting < xQueue->uxLength ); in xUnconstrainedQueueBoundedItemSize()
100 xQueue->xTasksWaitingToReceive.uxNumberOfItems = nondet_UBaseType_t(); in xUnconstrainedQueueBoundedItemSize()
101 xQueue->xTasksWaitingToSend.uxNumberOfItems = nondet_UBaseType_t(); in xUnconstrainedQueueBoundedItemSize()
[all …]
/FreeRTOS-Plus-TCP-v3.1.0/test/cbmc/proofs/Socket/vSocketWakeUpUser/
HDvSocketWakeUpUser_harness.c63 QueuePointers_t xQueue; member
99 BaseType_t xQueueGenericSend( QueueHandle_t xQueue, in xQueueGenericSend() argument
107 __CPROVER_assert( xQueue != NULL, "xQueue cannot be NULL" ); in xQueueGenericSend()
108 … __CPROVER_assert( !( ( pvItemToQueue == NULL ) && ( xQueue->uxItemSize != ( UBaseType_t ) 0U ) ), in xQueueGenericSend()
110 __CPROVER_assert( !( ( xCopyPosition == queueOVERWRITE ) && ( xQueue->uxLength != 1 ) ), in xQueueGenericSend()