Lines Matching refs:pcIPAddress
2699 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()
2815 uint32_t FreeRTOS_inet_addr( const char * pcIPAddress ) in FreeRTOS_inet_addr() argument
2820 if( pdFAIL == FreeRTOS_inet_pton4( pcIPAddress, &( ulReturn ) ) ) in FreeRTOS_inet_addr()