Lines Matching refs:IPDevPath
1374 IPv4_DEVICE_PATH *IPDevPath; in DevPathToTextIPv4() local
1376 IPDevPath = DevPath; in DevPathToTextIPv4()
1378 CatIPv4Address (Str, &IPDevPath->RemoteIpAddress); in DevPathToTextIPv4()
1386 CatNetworkProtocol (Str, IPDevPath->Protocol); in DevPathToTextIPv4()
1388 UefiDevicePathLibCatPrint (Str, ",%s,", IPDevPath->StaticIpAddress ? "Static" : "DHCP"); in DevPathToTextIPv4()
1389 CatIPv4Address (Str, &IPDevPath->LocalIpAddress); in DevPathToTextIPv4()
1390 if (DevicePathNodeLength (IPDevPath) == sizeof (IPv4_DEVICE_PATH)) { in DevPathToTextIPv4()
1392 CatIPv4Address (Str, &IPDevPath->GatewayIpAddress); in DevPathToTextIPv4()
1394 CatIPv4Address (Str, &IPDevPath->SubnetMask); in DevPathToTextIPv4()
1420 IPv6_DEVICE_PATH *IPDevPath; in DevPathToTextIPv6() local
1422 IPDevPath = DevPath; in DevPathToTextIPv6()
1424 CatIPv6Address (Str, &IPDevPath->RemoteIpAddress); in DevPathToTextIPv6()
1431 CatNetworkProtocol (Str, IPDevPath->Protocol); in DevPathToTextIPv6()
1433 switch (IPDevPath->IpAddressOrigin) { in DevPathToTextIPv6()
1445 CatIPv6Address (Str, &IPDevPath->LocalIpAddress); in DevPathToTextIPv6()
1447 if (DevicePathNodeLength (IPDevPath) == sizeof (IPv6_DEVICE_PATH)) { in DevPathToTextIPv6()
1448 UefiDevicePathLibCatPrint (Str, ",0x%x,", IPDevPath->PrefixLength); in DevPathToTextIPv6()
1449 CatIPv6Address (Str, &IPDevPath->GatewayIpAddress); in DevPathToTextIPv6()