Lines Matching refs:Ip6Str
2791 CHAR8 *Ip6Str; in NetLibAsciiStrToIp6() local
2808 Ip6Str = (CHAR8 *) String; in NetLibAsciiStrToIp6()
2815 if (*Ip6Str == ':') { in NetLibAsciiStrToIp6()
2816 if (*(Ip6Str + 1) != ':') { in NetLibAsciiStrToIp6()
2832 TempStr = Ip6Str; in NetLibAsciiStrToIp6()
2834 while ((*Ip6Str != '\0') && (*Ip6Str != ':')) { in NetLibAsciiStrToIp6()
2835 if (Index != 14 && !NET_IS_HEX (*Ip6Str)) { in NetLibAsciiStrToIp6()
2842 if (Index == 14 && !NET_IS_HEX (*Ip6Str) && *Ip6Str != '/') { in NetLibAsciiStrToIp6()
2846 Ip6Str++; in NetLibAsciiStrToIp6()
2849 if ((*Ip6Str == '\0') && (Index != 14)) { in NetLibAsciiStrToIp6()
2853 if (*Ip6Str == ':') { in NetLibAsciiStrToIp6()
2854 if (*(Ip6Str + 1) == ':') { in NetLibAsciiStrToIp6()
2856 ((*(Ip6Str + 2) != '\0') && (AsciiStrHexToUintn (Ip6Str + 2) == 0))) { in NetLibAsciiStrToIp6()
2862 if ((NodeCnt == 6) && (*(Ip6Str + 2) != '\0') && in NetLibAsciiStrToIp6()
2863 (AsciiStrHexToUintn (Ip6Str + 2) != 0)) { in NetLibAsciiStrToIp6()
2870 TempStr2 = Ip6Str + 2; in NetLibAsciiStrToIp6()
2895 Ip6Str = Ip6Str + 2; in NetLibAsciiStrToIp6()
2897 if (*(Ip6Str + 1) == '\0') { in NetLibAsciiStrToIp6()
2900 Ip6Str++; in NetLibAsciiStrToIp6()
2972 if ((!Short && Index != 16) || (*Ip6Str != '\0')) { in NetLibAsciiStrToIp6()
3041 CHAR8 *Ip6Str; in NetLibStrToIp6() local
3050 Ip6Str = (CHAR8 *) AllocatePool (StringSize * sizeof (CHAR8)); in NetLibStrToIp6()
3051 if (Ip6Str == NULL) { in NetLibStrToIp6()
3055 UnicodeStrToAsciiStrS (String, Ip6Str, StringSize); in NetLibStrToIp6()
3057 Status = NetLibAsciiStrToIp6 (Ip6Str, Ip6Address); in NetLibStrToIp6()
3059 FreePool (Ip6Str); in NetLibStrToIp6()
3086 CHAR8 *Ip6Str; in NetLibStrToIp6andPrefix() local
3098 Ip6Str = (CHAR8 *) AllocatePool (StringSize * sizeof (CHAR8)); in NetLibStrToIp6andPrefix()
3099 if (Ip6Str == NULL) { in NetLibStrToIp6andPrefix()
3103 UnicodeStrToAsciiStrS (String, Ip6Str, StringSize); in NetLibStrToIp6andPrefix()
3108 TempStr = Ip6Str; in NetLibStrToIp6andPrefix()
3124 Status = NetLibAsciiStrToIp6 (Ip6Str, Ip6Address); in NetLibStrToIp6andPrefix()
3160 FreePool (Ip6Str); in NetLibStrToIp6andPrefix()