Lines Matching refs:IPDevPath
1436 IPv4_DEVICE_PATH *IPDevPath; in DevPathToTextIPv4() local
1438 IPDevPath = DevPath; in DevPathToTextIPv4()
1440 CatIPv4Address (Str, &IPDevPath->RemoteIpAddress); in DevPathToTextIPv4()
1448 CatNetworkProtocol (Str, IPDevPath->Protocol); in DevPathToTextIPv4()
1450 UefiDevicePathLibCatPrint (Str, ",%s,", IPDevPath->StaticIpAddress ? "Static" : "DHCP"); in DevPathToTextIPv4()
1451 CatIPv4Address (Str, &IPDevPath->LocalIpAddress); in DevPathToTextIPv4()
1452 if (DevicePathNodeLength (IPDevPath) == sizeof (IPv4_DEVICE_PATH)) { in DevPathToTextIPv4()
1454 CatIPv4Address (Str, &IPDevPath->GatewayIpAddress); in DevPathToTextIPv4()
1456 CatIPv4Address (Str, &IPDevPath->SubnetMask); in DevPathToTextIPv4()
1483 IPv6_DEVICE_PATH *IPDevPath; in DevPathToTextIPv6() local
1485 IPDevPath = DevPath; in DevPathToTextIPv6()
1487 CatIPv6Address (Str, &IPDevPath->RemoteIpAddress); in DevPathToTextIPv6()
1494 CatNetworkProtocol (Str, IPDevPath->Protocol); in DevPathToTextIPv6()
1496 switch (IPDevPath->IpAddressOrigin) { in DevPathToTextIPv6()
1508 CatIPv6Address (Str, &IPDevPath->LocalIpAddress); in DevPathToTextIPv6()
1510 if (DevicePathNodeLength (IPDevPath) == sizeof (IPv6_DEVICE_PATH)) { in DevPathToTextIPv6()
1511 UefiDevicePathLibCatPrint (Str, ",0x%x,", IPDevPath->PrefixLength); in DevPathToTextIPv6()
1512 CatIPv6Address (Str, &IPDevPath->GatewayIpAddress); in DevPathToTextIPv6()