HomeSort by relevance Sort by last modified time
    Searched defs:Mac (Results 1 - 20 of 20) sorted by null

  /device/linaro/bootloader/edk2/EmbeddedPkg/Ebl/
Network.c 44 EFI_MAC_ADDRESS Mac;
48 // Get current IP/MAC
50 // Get current MAC address
51 Status = EblGetCurrentMacAddress (&Mac);
56 AsciiPrint ("MAC Address: %02x:%02x:%02x:%02x:%02x:%02x\n", Mac.Addr[0], Mac.Addr[1], Mac.Addr[2], Mac.Addr[3], Mac.Addr[4], Mac.Addr[5]);
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
Mac.java 7 public interface Mac
10 * Initialise the MAC.
12 * @param params the key and other data required by the MAC.
20 * Return the name of the algorithm the MAC implements.
22 * @return the name of the algorithm the MAC implements.
27 * Return the block size for this MAC (in bytes).
29 * @return the block size for this MAC in bytes.
34 * add a single byte to the mac for processing.
37 * @exception IllegalStateException if the MAC is not initialised.
46 * @exception IllegalStateException if the MAC is not initialised
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Platforms/Hisilicon/D03/Drivers/OemNicConfig2PHi1610/
OemNicConfig.h 36 UINT8 Mac[MAC_ADDR_LEN];
  /external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/crypto/
Mac.java 9 public interface Mac
12 * Initialise the MAC.
14 * @param params the key and other data required by the MAC.
22 * Return the name of the algorithm the MAC implements.
24 * @return the name of the algorithm the MAC implements.
29 * Return the block size for this MAC (in bytes).
31 * @return the block size for this MAC in bytes.
36 * add a single byte to the mac for processing.
39 * @exception IllegalStateException if the MAC is not initialised.
48 * @exception IllegalStateException if the MAC is not initialised
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/
Ip6Mld.h 42 EFI_MAC_ADDRESS Mac;
Ip6Nd.c 491 @param[in] LinkAddress Points to the MAC address of the neighbor.
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Ip4Dxe/
Ip4Igmp.h 49 EFI_MAC_ADDRESS Mac;
Ip4If.h 113 EFI_MAC_ADDRESS Mac;
175 // The interface's MAC and broadcast MAC address.
177 EFI_MAC_ADDRESS Mac;
253 is a unicast, it will consult ARP to resolve the NextHop's MAC.
267 @retval EFI_NO_MAPPING Can't resolve the MAC for the nexthop
  /device/linaro/bootloader/OpenPlatformPkg/Platforms/Hisilicon/D02/FdtUpdateLibD02/
FdtUpdateLib.c 38 "ethernet-mac@c7040000",
39 "ethernet-mac@c7044000",
40 "ethernet-mac@c7048000",
41 "ethernet-mac@c704c000"
71 EFI_MAC_ADDRESS Mac;
82 Status = OemNic->GetMac(&Mac, Port);
89 gMacAddress[0].data0=Mac.Addr[0];
90 gMacAddress[0].data1=Mac.Addr[1];
91 gMacAddress[0].data2=Mac.Addr[2];
92 gMacAddress[0].data3=Mac.Addr[3];
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/IScsiDxe/
IScsiConfig.h 71 EFI_MAC_ADDRESS Mac;
  /device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Drivers/AcpiPlatformDxe/
EthMac.c 57 #define ACPI_ETH_MAC_KEY "local-mac-address"
59 #define PREFIX_VARIABLE_NAME L"MAC"
67 EFI_MAC_ADDRESS Mac;
78 Status = OemNic->GetMac(&Mac, MacNextID);
85 CopyMem (MacBuffer, &Mac, 6);
86 DEBUG((EFI_D_ERROR, "Port %d MAC %02x:%02x:%02x:%02x:%02x:%02x\n",
111 * Package (2) {"mac-address", Package (6) { 00, 11, 22, 33, 44, 55 }}
157 DBG("_DSD Key Type %d. Found MAC address key\n", DataType);
168 //Update the MAC
339 // Patch MAC address for open source kernel
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Platforms/Hisilicon/D03/Library/FdtUpdateLib/
FdtUpdateLib.c 100 EFI_MAC_ADDRESS Mac;
111 Status = OemNic->GetMac(&Mac, Port);
118 gMacAddress[0].data0=Mac.Addr[0];
119 gMacAddress[0].data1=Mac.Addr[1];
120 gMacAddress[0].data2=Mac.Addr[2];
121 gMacAddress[0].data3=Mac.Addr[3];
122 gMacAddress[0].data4=Mac.Addr[4];
123 gMacAddress[0].data5=Mac.Addr[5];
165 m_prop = fdt_get_property_w(Fdt, ethernetnode, "local-mac-address", &m_oldlen);
168 Error = fdt_delprop(Fdt, ethernetnode, "local-mac-address");
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/UefiBootManagerLib/
BmBootDescription.c 352 MAC_ADDR_DEVICE_PATH *Mac;
385 // ....../Mac(...)[/Vlan(...)]
386 // ....../Mac(...)[/Vlan(...)]/IPv4(...)
387 // ....../Mac(...)[/Vlan(...)]/IPv6(...)
390 // ....../Mac(...)[/Vlan(...)]/IPv4(...)/Uri(...)
391 // ....../Mac(...)[/Vlan(...)]/IPv6(...)/Uri(...)
404 Mac = (MAC_ADDR_DEVICE_PATH *) DevicePath;
437 // "PXEv6 (MAC:112233445566 VLAN1)"
438 // "HTTPv4 (MAC:112233445566)"
440 DescriptionSize = sizeof (L"HTTPv6 (MAC:112233445566 VLAN65535)");
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Dhcp4Dxe/
Dhcp4Impl.h 114 EFI_MAC_ADDRESS Mac;
  /device/linaro/bootloader/edk2/OvmfPkg/Include/IndustryStandard/
Virtio095Net.h 27 UINT8 Mac[6];
46 #define VIRTIO_NET_F_MAC BIT5 // MAC available to guest
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Include/IndustryStandard/
IScsiBootFirmwareTable.h 112 UINT8 Mac[6];
  /device/linaro/bootloader/edk2/EmbeddedPkg/Drivers/Lan9118Dxe/
Lan9118Dxe.c 121 // LAN9118 has 64bit hash table, can filter 64 MCast MAC Addresses
129 // Mac address is changeable as it is loaded from erasable memory
142 // Power up the device so we can find the MAC address
516 @param[in] MCastFilterCnt Number of multicast HW MAC addresses in the new
522 filter HW MAC addresses. This list will replace
523 any existing multicast HW MAC address list. This
539 multicast MAC addresses.
562 EFI_MAC_ADDRESS *Mac;
587 // hash values of the multicast mac addresses to listen to.
614 Mac = &(MCastFilter[Count]);
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/UefiPxeBcDxe/
PxeBcImpl.h 106 EFI_MAC_ADDRESS Mac;
  /device/linaro/bootloader/edk2/MdePkg/Include/IndustryStandard/
IScsiBootFirmwareTable.h 119 UINT8 Mac[6];
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellCommandLib/
ConsistMapping.c 900 DevicePathNode must be Mac Address type and this will populate the MappingItem.
916 MAC_ADDR_DEVICE_PATH *Mac;
925 Mac = (MAC_ADDR_DEVICE_PATH *) DevicePathNode;
928 if (Mac->IfType == 0x01 || Mac->IfType == 0x00) {
933 UnicodeSPrint (PBuffer, 0, L"%02x", (UINTN) Mac->MacAddress.Addr[Index]);
    [all...]

Completed in 6585 milliseconds