Lines Matching refs:pcDestination
293 static BaseType_t prv_ntop6_write_zeros( char * pcDestination, in prv_ntop6_write_zeros() argument
302 pcDestination[ pxSet->uxTargetIndex ] = ':'; in prv_ntop6_write_zeros()
310 pcDestination[ pxSet->uxTargetIndex ] = ':'; in prv_ntop6_write_zeros()
344 static BaseType_t prv_ntop6_write_short( char * pcDestination, in prv_ntop6_write_short() argument
360 pcDestination[ pxSet->uxTargetIndex ] = ':'; in prv_ntop6_write_short()
371 uxLength = uxHexPrintShort( &( pcDestination[ pxSet->uxTargetIndex ] ), in prv_ntop6_write_short()
399 char * pcDestination, in FreeRTOS_inet_ntop6() argument
421 if( prv_ntop6_write_zeros( pcDestination, uxSize, &( xSet ) ) == pdFAIL ) in FreeRTOS_inet_ntop6()
430 if( prv_ntop6_write_short( pcDestination, uxSize, &( xSet ) ) == pdFAIL ) in FreeRTOS_inet_ntop6()
447 pcDestination[ xSet.uxTargetIndex ] = '\0'; in FreeRTOS_inet_ntop6()
448 pcReturn = pcDestination; in FreeRTOS_inet_ntop6()