Home | History | Annotate | Download | only in DxeNetLib

Lines Matching refs:Ip6Str

2782   CHAR8                          *Ip6Str;

2799 Ip6Str = (CHAR8 *) String;
2806 if (*Ip6Str == ':') {
2807 if (*(Ip6Str + 1) != ':') {
2823 TempStr = Ip6Str;
2825 while ((*Ip6Str != '\0') && (*Ip6Str != ':')) {
2826 Ip6Str++;
2829 if ((*Ip6Str == '\0') && (Index != 14)) {
2833 if (*Ip6Str == ':') {
2834 if (*(Ip6Str + 1) == ':') {
2836 ((*(Ip6Str + 2) != '\0') && (AsciiStrHexToUintn (Ip6Str + 2) == 0))) {
2842 if ((NodeCnt == 6) && (*(Ip6Str + 2) != '\0') &&
2843 (AsciiStrHexToUintn (Ip6Str + 2) != 0)) {
2850 TempStr2 = Ip6Str + 2;
2875 Ip6Str = Ip6Str + 2;
2877 if (*(Ip6Str + 1) == '\0') {
2880 Ip6Str++;
2952 if ((!Short && Index != 16) || (*Ip6Str != '\0')) {
3019 CHAR8 *Ip6Str;
3026 Ip6Str = (CHAR8 *) AllocatePool ((StrLen (String) + 1) * sizeof (CHAR8));
3027 if (Ip6Str == NULL) {
3031 UnicodeStrToAsciiStr (String, Ip6Str);
3033 Status = NetLibAsciiStrToIp6 (Ip6Str, Ip6Address);
3035 FreePool (Ip6Str);
3062 CHAR8 *Ip6Str;
3072 Ip6Str = (CHAR8 *) AllocatePool ((StrLen (String) + 1) * sizeof (CHAR8));
3073 if (Ip6Str == NULL) {
3077 UnicodeStrToAsciiStr (String, Ip6Str);
3082 TempStr = Ip6Str;
3098 Status = NetLibAsciiStrToIp6 (Ip6Str, Ip6Address);
3134 FreePool (Ip6Str);