Home | History | Annotate | Download | only in DxeNetLib

Lines Matching refs:Ip6Address

2768   @param[out]     Ip6Address     The pointer to the converted IPv6 address.

2771 @retval EFI_INVALID_PARAMETER The string is mal-formated or Ip6Address is NULL.
2778 OUT EFI_IPv6_ADDRESS *Ip6Address
2795 if ((String == NULL) || (Ip6Address == NULL)) {
2814 ZeroMem (Ip6Address, sizeof (EFI_IPv6_ADDRESS));
2940 Ip6Address->Addr[Index] = (UINT8) (NodeVal >> 8);
2941 Ip6Address->Addr[Index + 1] = (UINT8) (NodeVal & 0xFF);
3005 @param[out] Ip6Address The pointer to the converted IPv6 address.
3008 @retval EFI_INVALID_PARAMETER The string is mal-formated or Ip6Address is NULL.
3016 OUT EFI_IPv6_ADDRESS *Ip6Address
3022 if ((String == NULL) || (Ip6Address == NULL)) {
3033 Status = NetLibAsciiStrToIp6 (Ip6Str, Ip6Address);
3046 @param[out] Ip6Address The pointer to the converted IPv6 address.
3050 @retval EFI_INVALID_PARAMETER The string is mal-formated or Ip6Address is NULL.
3058 OUT EFI_IPv6_ADDRESS *Ip6Address,
3068 if ((String == NULL) || (Ip6Address == NULL) || (PrefixLength == NULL)) {
3098 Status = NetLibAsciiStrToIp6 (Ip6Str, Ip6Address);
3143 @param[in] Ip6Address The pointer to the IPv6 address.
3155 IN EFI_IPv6_ADDRESS *Ip6Address,
3169 if (Ip6Address == NULL || String == NULL || StringSize == 0) {
3178 Ip6Addr[Index / 2] |= (Ip6Address->Addr[Index] << ((1 - (Index % 2)) << 3));