Searched refs:pcIPAddress (Results 1 – 4 of 4) sorted by relevance
103 uint32_t FreeRTOS_inet_addr( const char * pcIPAddress ) in FreeRTOS_inet_addr() argument105 __CPROVER_assert( pcIPAddress != NULL, in FreeRTOS_inet_addr()
2699 const char * pcIPAddress = pcSource; in FreeRTOS_inet_pton4() local2709 if( pcIPAddress[ 0 ] == '0' ) in FreeRTOS_inet_pton4()2712 if( ( pcIPAddress[ 1 ] >= '0' ) && ( pcIPAddress[ 1 ] <= '9' ) ) in FreeRTOS_inet_pton4()2721 while( ( *pcIPAddress >= '0' ) && ( *pcIPAddress <= '9' ) ) in FreeRTOS_inet_pton4()2730 xChar = ( BaseType_t ) pcIPAddress[ 0 ]; in FreeRTOS_inet_pton4()2735 pcIPAddress++; in FreeRTOS_inet_pton4()2739 if( pcIPAddress == pcSource ) in FreeRTOS_inet_pton4()2756 if( *pcIPAddress != '.' ) in FreeRTOS_inet_pton4()2763 pcIPAddress++; in FreeRTOS_inet_pton4()2775 if( *pcIPAddress != ( char ) 0 ) in FreeRTOS_inet_pton4()[all …]
466 uint32_t FreeRTOS_inet_addr( const char * pcIPAddress );
2591 char * pcIPAddress = "0..12.34.4"; in test_FreeRTOS_inet_addr_InvalidString() local2593 ulReturn = FreeRTOS_inet_addr( pcIPAddress ); in test_FreeRTOS_inet_addr_InvalidString()2603 char * pcIPAddress = "1.2.3.4"; in test_FreeRTOS_inet_addr_ValidString() local2605 ulReturn = FreeRTOS_inet_addr( pcIPAddress ); in test_FreeRTOS_inet_addr_ValidString()