Searched defs:VlanId (Results 1 - 17 of 17) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/VlanConfigDxe/
H A DVlanConfigNvData.h42 UINT16 VlanId; member in struct:__anon11258
H A DVlanConfigImpl.h68 UINT16 VlanId[MAX_VLAN_NUMBER]; member in struct:__anon11257
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Include/Protocol/
H A DVlanConfig.h34 UINT16 VlanId; ///< Vlan Identifier. member in struct:__anon12389
44 configuration parameters. If the VlanId hasn't been configured in the
46 this VlanId is already configured, then related configuration will be updated
49 If VlanId is zero, the VLAN device will send and receive untagged frames.
50 Otherwise, the VLAN device will send and receive VLAN-tagged frames containing the VlanId.
51 If VlanId is out of scope of (0-4094), EFI_INVALID_PARAMETER is returned.
57 @param[in] VlanId A unique identifier (1-4094) of the VLAN which is being created
60 VlanId is zero (0), Priority is ignored.
65 - VlanId is an invalid VLAN Identifier.
74 IN UINT16 VlanId,
[all...]
H A DDevicePath.h836 UINT16 VlanId; member in struct:__anon12079
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/IScsiDxe/
H A DIScsiConfig.h73 UINT16 VlanId; member in struct:_ISCSI_MAC_INFO
H A DIScsiMisc.c358 @param[in] VlanId VLAN ID of the network device.
365 IN UINT16 VlanId,
379 if (VlanId != 0) {
380 String += UnicodeSPrint (String, 6 * sizeof (CHAR16), L"\\%04x", (UINTN) VlanId);
638 UINT16 VlanId; local
660 VlanId = NetLibGetVlanId (Private->Controller);
661 IScsiMacAddrToStr (&MacAddress, (UINT32) HwAddressSize, VlanId, MacString);
362 IScsiMacAddrToStr( IN EFI_MAC_ADDRESS *Mac, IN UINT32 Len, IN UINT16 VlanId, OUT CHAR16 *Str ) argument
H A DIScsiConfig.c200 UINT16 VlanId; local
244 VlanId = NetLibGetVlanId (Handles[HandleIndex]);
249 (CurMacInfo->VlanId == VlanId) &&
279 IScsiMacAddrToStr (&CurMacInfo->Mac, CurMacInfo->Len, CurMacInfo->VlanId, MacString);
302 CurMacInfo->VlanId = NetLibGetVlanId (Handles[Index]);
953 UINT16 VlanId; local
994 VlanId = NetLibGetVlanId (Controller);
996 IScsiMacAddrToStr (&MacAddress, (UINT32) HwAddressSize, VlanId, ConfigFormEntry->MacString);
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/Application/VConfig/
H A DVConfig.c260 VlanData[Index].VlanId,
367 UINTN VlanId; local
442 VlanId = StrToVlanId (VlanIdStr);
443 if (VlanId > 4094) {
462 Status = VlanConfig->Set (VlanConfig, (UINT16) VlanId, (UINT8) Priority);
471 VlanHandle = NetLibGetVlanHandle (Handle, (UINT16) VlanId);
500 UINTN VlanId; local
549 VlanId = StrToVlanId (VlanIdStr);
550 if (VlanId > 4094) {
558 Status = VlanConfig->Remove (VlanConfig, (UINT16) VlanId);
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/IScsiDxe/
H A DIScsiDriver.h68 UINT16 VlanId; member in struct:__anon12480
H A DIScsiMisc.c282 @param[in] VlanId VLAN ID of the network device.
290 IN UINT16 VlanId,
304 if (VlanId != 0) {
305 String += UnicodeSPrint (String, 6 * sizeof (CHAR16), L"\\%04x", (UINTN) VlanId);
485 UINT16 VlanId; local
498 VlanId = NetLibGetVlanId (Controller);
507 NicInfo->VlanId == VlanId) {
527 NicInfo->VlanId = VlanId;
287 IScsiMacAddrToStr( IN EFI_MAC_ADDRESS *Mac, IN UINT32 Len, IN UINT16 VlanId, OUT CHAR16 *Str ) argument
572 UINT16 VlanId; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/MnpDxe/
H A DMnpDriver.h115 UINT16 VlanId; member in struct:__anon11231
H A DMnpIo.c872 UINT16 VlanId; local
946 VlanId = 0;
951 IsVlanPacket = MnpRemoveVlanTag (MnpDeviceData, Nbuf, &VlanId);
956 MnpServiceData = MnpFindServiceData (MnpDeviceData, VlanId);
H A DMnpVlan.c43 @param[in] VlanId The VLAN ID.
53 IN UINT16 VlanId,
82 VlanNode.VlanId = VlanId;
118 @param[out] VlanId Pointer to the returned VLAN ID.
128 OUT UINT16 *VlanId
147 *VlanId = 0;
157 *VlanId = VlanTag.Bits.Vid;
200 if (MnpServiceData->VlanId == 0) {
232 VlanTci->Bits.Vid = MnpServiceData->VlanId;
50 MnpCreateVlanChild( IN EFI_HANDLE ImageHandle, IN EFI_HANDLE ControllerHandle, IN UINT16 VlanId, OUT EFI_DEVICE_PATH_PROTOCOL **Devicepath OPTIONAL ) argument
368 VlanConfigSet( IN EFI_VLAN_CONFIG_PROTOCOL *This, IN UINT16 VlanId, IN UINT8 Priority ) argument
[all...]
H A DMnpConfig.c503 @param[in] VlanId The VLAN ID.
504 @param[in] Priority The VLAN priority. If VlanId is 0,
513 IN UINT16 VlanId,
552 if (VlanId != 0) {
559 VlanId,
589 // VlanId set to 0 means rx/tx untagged frame
596 MnpServiceData->VlanId = VlanId;
647 if (MnpServiceData->VlanId != 0) {
732 @param[in] VlanId Th
511 MnpCreateServiceData( IN MNP_DEVICE_DATA *MnpDeviceData, IN UINT16 VlanId, IN UINT8 Priority OPTIONAL ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Universal/BdsDxe/DeviceMngr/
H A DDeviceManager.c350 UINT16 VlanId; local
354 VlanId = 0;
395 VlanId = ((VLAN_DEVICE_PATH *) Node)->VlanId;
400 if (VlanId != 0) {
402 String += UnicodeValueToString (String, PREFIX_ZERO | RADIX_HEX, VlanId, 4);
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Library/DxeNetLib/
H A DDxeNetLib.c1982 return ((VLAN_DEVICE_PATH *) Node)->VlanId;
1999 @param[in] VlanId The configured VLAN ID for the VLAN device.
2008 IN UINT16 VlanId
2026 VlanNode.VlanId = VlanId;
2192 UINT16 VlanId; local
2228 VlanId = NetLibGetVlanId (ServiceHandle);
2229 if (VlanId != 0) {
2231 String += UnicodeValueToString (String, PREFIX_ZERO | RADIX_HEX, VlanId, 4);
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/efi/Protocol/
H A DDevicePath.h775 UINT16 VlanId; member in struct:__anon15641

Completed in 70 milliseconds