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

  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Dhcp4Dxe/
ComponentName.c 248 Update the component name for the Dhcp4 child handle.
250 @param Dhcp4[in] A pointer to the EFI_DHCP4_PROTOCOL.
260 IN EFI_DHCP4_PROTOCOL *Dhcp4
266 if (Dhcp4 == NULL) {
273 Status = Dhcp4->GetModeData (Dhcp4, &Dhcp4ModeData);
386 EFI_DHCP4_PROTOCOL *Dhcp4;
413 (VOID **)&Dhcp4,
425 Status = UpdateName (Dhcp4);
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/IScsiDxe/
IScsiDhcp.c 171 The callback function registerd to the DHCP4 instance which is used to select
174 @param[in] This The DHCP4 protocol.
175 @param[in] Context The context set when configuring the DHCP4 protocol.
176 @param[in] CurrentState The current state of the DHCP4 protocol.
250 @param[in] Dhcp4 The DHCP4 protocol.
260 IN EFI_DHCP4_PROTOCOL *Dhcp4,
270 Status = Dhcp4->GetModeData (Dhcp4, &Dhcp4ModeData);
286 Status = Dhcp4->Parse (Dhcp4, Dhcp4ModeData.ReplyPacket, &OptionCount, OptionList);
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/IScsiDxe/
IScsiDhcp.c 2 iSCSI DHCP4 related configuration routines.
188 The callback function registerd to the DHCP4 instance that is used to select
191 @param[in] This The DHCP4 protocol.
192 @param[in] Context The context set when configuring the DHCP4 protocol.
193 @param[in] CurrentState The current state of the DHCP4 protocol.
268 @param[in] Dhcp4 The DHCP4 protocol.
280 IN EFI_DHCP4_PROTOCOL *Dhcp4,
291 Status = Dhcp4->GetModeData (Dhcp4, &Dhcp4ModeData);
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/HttpBootDxe/
HttpBootDhcp4.c 18 // This is a map from the interested DHCP4 option tags' index to the tag value.
170 Parse a certain dhcp4 option by OptTag in Buffer, and return with start pointer.
232 CopyMem (&Dst->Dhcp4, &Src->Dhcp4, Src->Length);
279 Offer->Dhcp4.Option,
294 (UINT8 *) Offer->Dhcp4.Header.BootFileName,
295 sizeof (Offer->Dhcp4.Header.BootFileName),
305 (UINT8 *) Offer->Dhcp4.Header.ServerName,
306 sizeof (Offer->Dhcp4.Header.ServerName),
317 if (Offer->Dhcp4.Header.YourAddr.Addr[0] == 0) {
    [all...]
HttpBootDxe.h 43 #include <Protocol/Dhcp4.h>
83 HTTP_BOOT_DHCP4_PACKET_CACHE Dhcp4;
119 EFI_DHCP4_PROTOCOL *Dhcp4;
  /device/linaro/bootloader/edk2/NetworkPkg/DnsDxe/
DnsDhcp.c 164 This function initialize the DHCP4 message instance.
166 This function will pad each item of dhcp4 message packet.
168 @param Seed Pointer to the message instance of the DHCP4 packet.
184 Seed->Length = sizeof (Seed->Dhcp4);
185 Header = &Seed->Dhcp4.Header;
192 Seed->Dhcp4.Magik = DHCP4_MAGIC;
193 Seed->Dhcp4.Option[0] = DHCP4_TAG_EOP;
220 @param Dhcp4 The DHCP4 protocol.
232 IN EFI_DHCP4_PROTOCOL *Dhcp4,
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Ip4Dxe/
Ip4Config2Impl.c 37 Destroy the Dhcp4 child in IP4_CONFIG2_INSTANCE and release the resources.
52 EFI_DHCP4_PROTOCOL *Dhcp4;
54 Dhcp4 = Instance->Dhcp4;
55 ASSERT (Dhcp4 != NULL);
57 Dhcp4->Stop (Dhcp4);
58 Dhcp4->Configure (Dhcp4, NULL);
59 Instance->Dhcp4 = NULL;
    [all...]
Ip4Config2Impl.h 190 EFI_DHCP4_PROTOCOL *Dhcp4;
257 Destroy the Dhcp4 child in IP4_CONFIG2_INSTANCE and release the resources.
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/UefiPxeBcDxe/
PxeBcImpl.c 414 //DHCP4 service allows only one of its children to be configured in
415 //the active state, If the DHCP4 D.O.R.A started by IP4 auto
416 //configuration and has not been completed, the Dhcp4 state machine
527 Private->Dhcp4->Stop (Private->Dhcp4);
528 Private->Dhcp4->Configure (Private->Dhcp4, NULL);
578 EFI_DHCP4_PROTOCOL *Dhcp4;
594 Dhcp4 = Private->Dhcp4;
    [all...]
PxeBcImpl.h 24 #include <Protocol/Dhcp4.h>
78 EFI_DHCP4_PROTOCOL *Dhcp4;
PxeBcDhcp.c 20 // This is a map from the interested DHCP4 option tags' index to the tag value.
34 This function initialize the DHCP4 message instance.
36 This function will pad each item of dhcp4 message packet.
38 @param Seed Pointer to the message instance of the DHCP4 packet.
54 Seed->Length = sizeof (Seed->Dhcp4);
56 Header = &Seed->Dhcp4.Header;
64 Seed->Dhcp4.Magik = PXEBC_DHCP4_MAGIC;
65 Seed->Dhcp4.Option[0] = PXEBC_DHCP4_TAG_EOP;
84 CopyMem (&Dst->Dhcp4, &Src->Dhcp4, Src->Length);
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/UefiPxeBcDxe/
PxeBcDhcp4.c 19 // This is a map from the interested DHCP4 option tags' index to the tag value.
38 Parse a certain dhcp4 option by OptTag in Buffer, and return with start pointer.
408 Seed->Length = sizeof (Seed->Dhcp4);
409 Header = &Seed->Dhcp4.Header;
416 Seed->Dhcp4.Magik = PXEBC_DHCP4_MAGIC;
417 Seed->Dhcp4.Option[0] = PXEBC_DHCP4_TAG_EOP;
436 CopyMem (&Dst->Dhcp4, &Src->Dhcp4, Src->Length);
479 Offer->Dhcp4.Option,
494 (UINT8 *) Offer->Dhcp4.Header.BootFileName,
    [all...]
PxeBcImpl.h 32 #include <Protocol/Dhcp4.h>
84 PXEBC_DHCP4_PACKET_CACHE Dhcp4;
121 EFI_DHCP4_PROTOCOL *Dhcp4;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/Dhcp4/
Dhcp4.h 14 Dhcp4.h
71 } Dhcp4;
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
Dhcp4.h 103 } Dhcp4;
726 the Packet->Dhcp4.Option where a new DHCP option begins. If RFC3396 is supported,
    [all...]
  /device/linaro/bootloader/edk2/ArmPkg/Library/BdsLib/
BdsFilePath.c 25 #include <Protocol/Dhcp4.h>
32 /* Type and defines to set up the DHCP4 options */
    [all...]

Completed in 766 milliseconds