Lines Matching defs:IPDevPath
1440 IPv4_DEVICE_PATH *IPDevPath;
1442 IPDevPath = DevPath;
1444 CatIPv4Address (Str, &IPDevPath->RemoteIpAddress);
1452 CatNetworkProtocol (Str, IPDevPath->Protocol);
1454 UefiDevicePathLibCatPrint (Str, ",%s,", IPDevPath->StaticIpAddress ? "Static" : "DHCP");
1455 CatIPv4Address (Str, &IPDevPath->LocalIpAddress);
1456 if (DevicePathNodeLength (IPDevPath) == sizeof (IPv4_DEVICE_PATH)) {
1458 CatIPv4Address (Str, &IPDevPath->GatewayIpAddress);
1460 CatIPv4Address (Str, &IPDevPath->SubnetMask);
1487 IPv6_DEVICE_PATH *IPDevPath;
1489 IPDevPath = DevPath;
1491 CatIPv6Address (Str, &IPDevPath->RemoteIpAddress);
1498 CatNetworkProtocol (Str, IPDevPath->Protocol);
1500 switch (IPDevPath->IpAddressOrigin) {
1512 CatIPv6Address (Str, &IPDevPath->LocalIpAddress);
1514 if (DevicePathNodeLength (IPDevPath) == sizeof (IPv6_DEVICE_PATH)) {
1515 UefiDevicePathLibCatPrint (Str, ",0x%x,", IPDevPath->PrefixLength);
1516 CatIPv6Address (Str, &IPDevPath->GatewayIpAddress);