Home
last modified time | relevance | path

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

/FreeRTOS-Plus-TCP-v3.1.0/test/unit-test/FreeRTOS_ARP/
DFreeRTOS_ARP_utest.c570 xARPCache[ 0 ].ucValid = 1; in test_eARPProcessPacket_Reply_TargetIPNotSameAsLocalIP_ButEntryInCache()
819 xARPCache[ x ].ucValid = ( uint8_t ) pdFALSE; in test_xIsIPInARPCache_MatchingIPButEntryInvalid()
837 xARPCache[ x ].ucValid = ( uint8_t ) pdTRUE; in test_xIsIPInARPCache_MatchingIP1()
855 xARPCache[ x ].ucValid = ( uint8_t ) pdTRUE; in test_xIsIPInARPCache_MatchingIP2()
940 xARPCache[ x ].ucValid = ( uint8_t ) pdTRUE; in test_xCheckRequiresARPResolution_OnLocalNetwork_InCache()
1009 xARPCache[ i ].ucValid = pdTRUE; in test_vARPRefreshCacheEntry_NULLMAC_NoMatchingEntry()
1018 TEST_ASSERT_EQUAL( xARPCache[ 0 ].ucValid, ( uint8_t ) pdFALSE ); in test_vARPRefreshCacheEntry_NULLMAC_NoMatchingEntry()
1034 xARPCache[ i ].ucValid = pdTRUE; in test_vARPRefreshCacheEntry_NULLMAC_MatchingEntry()
1045 TEST_ASSERT_EQUAL( xARPCache[ 1 ].ucValid, ( uint8_t ) pdTRUE ); in test_vARPRefreshCacheEntry_NULLMAC_MatchingEntry()
1061 xARPCache[ i ].ucValid = pdTRUE; in test_vARPRefreshCacheEntry_MACWontMatch_IPWillMatch()
[all …]
/FreeRTOS-Plus-TCP-v3.1.0/source/
DFreeRTOS_ARP.c384 if( xARPCache[ x ].ucValid == ( uint8_t ) pdFALSE ) in xIsIPInARPCache()
540 xARPCache[ x ].ucValid = ( uint8_t ) pdTRUE; in vARPRefreshCacheEntry()
628 xARPCache[ xUseEntry ].ucValid = ( uint8_t ) pdTRUE; in vARPRefreshCacheEntry()
633 xARPCache[ xUseEntry ].ucValid = ( uint8_t ) pdFALSE; in vARPRefreshCacheEntry()
827 if( xARPCache[ x ].ucValid == ( uint8_t ) pdFALSE ) in prvCacheLookup()
872 if( xARPCache[ x ].ucValid == ( uint8_t ) pdFALSE ) in vARPAgeCache()
/FreeRTOS-Plus-TCP-v3.1.0/source/include/
DFreeRTOS_ARP.h54 uint8_t ucValid; /**< pdTRUE: xMACAddress is valid, pdFALSE: waiting for ARP reply */ member