Home
last modified time | relevance | path

Searched refs:pcIPAddress (Results 1 – 4 of 4) sorted by relevance

/FreeRTOS-Plus-TCP-v3.1.0/test/cbmc/stubs/
Dfreertos_api.c103 uint32_t FreeRTOS_inet_addr( const char * pcIPAddress ) in FreeRTOS_inet_addr() argument
105 __CPROVER_assert( pcIPAddress != NULL, in FreeRTOS_inet_addr()
/FreeRTOS-Plus-TCP-v3.1.0/source/
DFreeRTOS_Sockets.c2699 const char * pcIPAddress = pcSource; in FreeRTOS_inet_pton4() local
2709 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 …]
/FreeRTOS-Plus-TCP-v3.1.0/source/include/
DFreeRTOS_Sockets.h466 uint32_t FreeRTOS_inet_addr( const char * pcIPAddress );
/FreeRTOS-Plus-TCP-v3.1.0/test/unit-test/FreeRTOS_Sockets/
DFreeRTOS_Sockets_GenericAPI_utest.c2591 char * pcIPAddress = "0..12.34.4"; in test_FreeRTOS_inet_addr_InvalidString() local
2593 ulReturn = FreeRTOS_inet_addr( pcIPAddress ); in test_FreeRTOS_inet_addr_InvalidString()
2603 char * pcIPAddress = "1.2.3.4"; in test_FreeRTOS_inet_addr_ValidString() local
2605 ulReturn = FreeRTOS_inet_addr( pcIPAddress ); in test_FreeRTOS_inet_addr_ValidString()