Lines Matching defs:Config
396 @param Config The DNS configure data
401 IN OUT EFI_DNS4_CONFIG_DATA *Config
404 if (Config->DnsServerList != NULL) {
405 FreePool (Config->DnsServerList);
408 ZeroMem (Config, sizeof (EFI_DNS4_CONFIG_DATA));
414 @param Config The DNS configure data
419 IN OUT EFI_DNS6_CONFIG_DATA *Config
422 if (Config->DnsServerList != NULL) {
423 FreePool (Config->DnsServerList);
426 ZeroMem (Config, sizeof (EFI_DNS6_CONFIG_DATA));
672 EFI_DNS4_CONFIG_DATA *Config;
676 Config = &Instance->Dns4CfgData;
687 UdpConfig.UseDefaultAddress = Config->UseDefaultSetting;
688 UdpConfig.SubnetMask = Config->SubnetMask;
689 UdpConfig.StationPort = Config->LocalPort;
692 CopyMem (&UdpConfig.StationAddress, &Config->StationIp, sizeof (EFI_IPv4_ADDRESS));
720 EFI_DNS6_CONFIG_DATA *Config;
724 Config = &Instance->Dns6CfgData;
733 UdpConfig.StationPort = Config->LocalPort;
735 CopyMem (&UdpConfig.StationAddress, &Config->StationIp, sizeof (EFI_IPv6_ADDRESS));