Home
last modified time | relevance | path

Searched refs:ucValid (Results 1 – 6 of 6) sorted by relevance

/FreeRTOS-Plus-TCP-v4.0.0/test/unit-test/FreeRTOS_ARP/
DFreeRTOS_ARP_utest.c733 xARPCache[ 0 ].ucValid = pdTRUE; in test_eARPProcessPacket_Request_GratuitousARP()
756 TEST_ASSERT_EQUAL( pdTRUE, xARPCache[ 0 ].ucValid ); in test_eARPProcessPacket_Request_GratuitousARP()
798 xARPCache[ 0 ].ucValid = pdTRUE; in test_eARPProcessPacket_Request_GratuitousARP_MACUnchanged()
819 TEST_ASSERT_EQUAL( pdTRUE, xARPCache[ 0 ].ucValid ); in test_eARPProcessPacket_Request_GratuitousARP_MACUnchanged()
860 xARPCache[ 0 ].ucValid = pdTRUE; in test_eARPProcessPacket_Request_GratuitousARP_OutOfSubnetIP()
876 TEST_ASSERT_EQUAL( pdTRUE, xARPCache[ 0 ].ucValid ); in test_eARPProcessPacket_Request_GratuitousARP_OutOfSubnetIP()
919 xARPCache[ 0 ].ucValid = pdTRUE; in test_eARPProcessPacket_Request_GratuitousARP_MACMatchesWithEndpoint()
935 TEST_ASSERT_EQUAL( pdTRUE, xARPCache[ 0 ].ucValid ); in test_eARPProcessPacket_Request_GratuitousARP_MACMatchesWithEndpoint()
979 xARPCache[ 0 ].ucValid = pdTRUE; in test_eARPProcessPacket_Request_GratuitousARP_TargetHWAddressNotBroadcast()
995 TEST_ASSERT_EQUAL( pdTRUE, xARPCache[ 0 ].ucValid ); in test_eARPProcessPacket_Request_GratuitousARP_TargetHWAddressNotBroadcast()
[all …]
/FreeRTOS-Plus-TCP-v4.0.0/test/unit-test/FreeRTOS_ND/
DFreeRTOS_ND_utest.c201 xNDCache[ xUseEntry ].ucValid = 1; in test_eNDGetCacheEntry_NDCacheLookupHit_InvalidEndPoint()
232 xNDCache[ xUseEntry ].ucValid = 1; in test_eNDGetCacheEntry_NDCacheLookupHit_ValidEndPoint()
259 xNDCache[ xUseEntry ].ucValid = 0; /*Invalid Cache entry needs to be skipped */ in test_eNDGetCacheEntry_NDCacheLookupMiss_InvalidEntry()
286 xNDCache[ xUseEntry ].ucValid = 0; /*Invalid Cache entry needs to be skipped */ in test_eNDGetCacheEntry_NDCacheLookupMiss_InvalidEntry2()
313 xNDCache[ xUseEntry ].ucValid = 1; /*Valid Cache entry needs to be skipped */ in test_eNDGetCacheEntry_NDCacheLookupMiss_NoEntry()
341 xNDCache[ xUseEntry ].ucValid = 1; /*Valid Cache entry needs to be skipped */ in test_eNDGetCacheEntry_NDCacheLookupMiss_NoLinkLocal()
403 xNDCache[ xUseEntry ].ucValid = 1; /*Valid Cache entry needs to be skipped */ in test_eNDGetCacheEntry_NDCacheLookupHit_Gateway()
436 xNDCache[ xUseEntry ].ucValid = 1; /*Valid Cache entry needs to be skipped */ in test_eNDGetCacheEntry_NDCacheLookupMiss_Gateway()
465 xNDCache[ xUseEntry ].ucValid = 1; /*Valid Cache entry needs to be skipped */ in test_eNDGetCacheEntry_NDCacheLookupMiss_NoEP()
500 xNDCache[ i ].ucValid = pdTRUE; in test_vNDRefreshCacheEntry_NoMatchingEntryCacheFull()
[all …]
/FreeRTOS-Plus-TCP-v4.0.0/source/include/
DFreeRTOS_ARP.h61 uint8_t ucValid; /**< pdTRUE: xMACAddress is valid, pdFALSE: waiting for ARP reply */ member
DFreeRTOS_ND.h62 …uint8_t ucValid; /**< pdTRUE: xMACAddress is valid, pdFALSE: waiting for ND r… member
/FreeRTOS-Plus-TCP-v4.0.0/source/
DFreeRTOS_ARP.c499 if( xARPCache[ x ].ucValid == ( uint8_t ) pdFALSE ) in xIsIPInARPCache()
751 xARPCache[ xLocation.xUseEntry ].ucValid = ( uint8_t ) pdTRUE; in vARPRefreshCacheEntry()
757 xARPCache[ xLocation.xUseEntry ].ucValid = ( uint8_t ) pdFALSE; in vARPRefreshCacheEntry()
828 xARPCache[ x ].ucValid = ( uint8_t ) pdTRUE; in prvFindCacheEntry()
1132 if( xARPCache[ x ].ucValid == ( uint8_t ) pdFALSE ) in prvCacheLookup()
1181 if( xARPCache[ x ].ucValid == ( uint8_t ) pdFALSE ) in vARPAgeCache()
DFreeRTOS_ND.c292 if( xNDCache[ x ].ucValid == ( uint8_t ) pdFALSE ) in vNDRefreshCacheEntry()
324 xNDCache[ xEntryFound ].ucValid = ( uint8_t ) pdTRUE; in vNDRefreshCacheEntry()
364 if( xNDCache[ x ].ucValid == ( uint8_t ) pdFALSE ) in vNDAgeCache()
429 if( xNDCache[ x ].ucValid == ( uint8_t ) pdFALSE ) in prvNDCacheLookup()
487 if( xNDCache[ x ].ucValid != ( uint8_t ) 0U ) in FreeRTOS_PrintNDCache()