Home | History | Annotate | Download | only in VConfig

Lines Matching refs:VlanConfig

18 #include <Protocol/VlanConfig.h>

162 Open VlanConfig protocol from a handle.
164 @param[in] Handle The handle to open the VlanConfig protocol.
166 @return The VlanConfig protocol interface.
174 EFI_VLAN_CONFIG_PROTOCOL *VlanConfig;
176 VlanConfig = NULL;
180 (VOID **) &VlanConfig,
186 return VlanConfig;
190 Close VlanConfig protocol of a handle.
192 @param[in] Handle The handle to close the VlanConfig protocol.
224 EFI_VLAN_CONFIG_PROTOCOL *VlanConfig;
228 VlanConfig = OpenVlanConfigProtocol (Handle);
229 if (VlanConfig == NULL) {
242 Status = VlanConfig->Find (VlanConfig, NULL, &NumberOfVlan, &VlanData);
371 EFI_VLAN_CONFIG_PROTOCOL *VlanConfig;
374 VlanConfig = NULL;
429 VlanConfig = OpenVlanConfigProtocol (Handle);
430 if (VlanConfig == NULL) {
462 Status = VlanConfig->Set (VlanConfig, (UINT16) VlanId, (UINT8) Priority);
479 if (VlanConfig != NULL) {
502 EFI_VLAN_CONFIG_PROTOCOL *VlanConfig;
507 VlanConfig = NULL;
536 VlanConfig = OpenVlanConfigProtocol (Handle);
537 if (VlanConfig == NULL) {
558 Status = VlanConfig->Remove (VlanConfig, (UINT16) VlanId);
572 Status = VlanConfig->Find (VlanConfig, NULL, &NumberOfVlan, &VlanData);
585 if (VlanConfig != NULL) {