HomeSort by relevance Sort by last modified time
    Searched refs:OptList (Results 1 - 15 of 15) sorted by null

  /device/linaro/bootloader/edk2/NetworkPkg/HttpBootDxe/
HttpBootDhcp4.c 39 @param[out] OptList Pointer to the option pointer array.
48 OUT EFI_DHCP4_PACKET_OPTION **OptList,
57 OptList[0] = (EFI_DHCP4_PACKET_OPTION *) Buffer;
62 OptList[Index]->OpCode = HTTP_BOOT_DHCP4_TAG_PARA_LIST;
63 OptList[Index]->Length = 27;
64 OptEnt.Para = (HTTP_BOOT_DHCP4_OPTION_PARA *) OptList[Index]->Data;
92 OptList[Index] = GET_NEXT_DHCP_OPTION (OptList[Index - 1]);
97 OptList[Index]->OpCode = HTTP_BOOT_DHCP4_TAG_UUID;
98 OptList[Index]->Length = (UINT8) sizeof (HTTP_BOOT_DHCP4_OPTION_UUID);
    [all...]
HttpBootDhcp6.c 21 @param[out] OptList The pointer to the option pointer array.
30 OUT EFI_DHCP6_PACKET_OPTION **OptList,
39 OptList[0] = (EFI_DHCP6_PACKET_OPTION *) Buffer;
44 OptList[Index]->OpCode = HTONS (HTTP_BOOT_DHCP6_OPT_ORO);
45 OptList[Index]->OpLen = HTONS (8);
46 OptEnt.Oro = (HTTP_BOOT_DHCP6_OPTION_ORO *) OptList[Index]->Data;
52 OptList[Index] = GET_NEXT_DHCP6_OPTION (OptList[Index - 1]);
57 OptList[Index]->OpCode = HTONS (HTTP_BOOT_DHCP6_OPT_UNDI);
58 OptList[Index]->OpLen = HTONS ((UINT16)3);
    [all...]
HttpBootDhcp6.h 112 EFI_DHCP6_PACKET_OPTION *OptList[HTTP_BOOT_DHCP6_IDX_MAX];
HttpBootClient.c 182 Option = SelectOffer->OptList[HTTP_BOOT_DHCP4_TAG_INDEX_DNS_SERVER];
198 (CHAR8*) HttpOffer->OptList[HTTP_BOOT_DHCP4_TAG_INDEX_BOOTFILE]->Data,
210 Private->BootFileUri = (CHAR8*) HttpOffer->OptList[HTTP_BOOT_DHCP4_TAG_INDEX_BOOTFILE]->Data;
282 Option = SelectOffer->OptList[HTTP_BOOT_DHCP6_IDX_DNS_SERVER];
299 (CHAR8*) HttpOffer->OptList[HTTP_BOOT_DHCP6_IDX_BOOT_FILE_URL]->Data,
309 (CHAR8*) HttpOffer->OptList[HTTP_BOOT_DHCP6_IDX_BOOT_FILE_URL]->Data,
345 (CHAR8*) HttpOffer->OptList[HTTP_BOOT_DHCP6_IDX_BOOT_FILE_URL]->Data,
357 Private->BootFileUri = (CHAR8*) HttpOffer->OptList[HTTP_BOOT_DHCP6_IDX_BOOT_FILE_URL]->Data;
    [all...]
HttpBootDhcp4.h 245 EFI_DHCP4_PACKET_OPTION *OptList[HTTP_BOOT_DHCP4_TAG_INDEX_MAX];
  /device/linaro/bootloader/edk2/NetworkPkg/UefiPxeBcDxe/
PxeBcDhcp4.c 219 @param[out] OptList Pointer to the option pointer array.
230 OUT EFI_DHCP4_PACKET_OPTION **OptList,
240 OptList[0] = (EFI_DHCP4_PACKET_OPTION *) Buffer;
246 OptList[Index]->OpCode = PXEBC_DHCP4_TAG_MSG_TYPE;
247 OptList[Index]->Length = 1;
248 OptEnt.Mesg = (PXEBC_DHCP4_OPTION_MESG *) OptList[Index]->Data;
251 OptList[Index] = GET_NEXT_DHCP_OPTION (OptList[Index - 1]);
256 OptList[Index]->OpCode = PXEBC_DHCP4_TAG_MAXMSG;
257 OptList[Index]->Length = (UINT8) sizeof (PXEBC_DHCP4_OPTION_MAX_MESG_SIZE);
    [all...]
PxeBcDhcp6.c 72 @param[out] OptList The pointer to the option pointer array.
81 OUT EFI_DHCP6_PACKET_OPTION **OptList,
90 OptList[0] = (EFI_DHCP6_PACKET_OPTION *) Buffer;
95 OptList[Index]->OpCode = HTONS (PXEBC_DHCP6_OPT_ORO);
96 OptList[Index]->OpLen = HTONS (4);
97 OptEnt.Oro = (PXEBC_DHCP6_OPTION_ORO *) OptList[Index]->Data;
101 OptList[Index] = GET_NEXT_DHCP6_OPTION (OptList[Index - 1]);
106 OptList[Index]->OpCode = HTONS (PXEBC_DHCP6_OPT_UNDI);
107 OptList[Index]->OpLen = HTONS ((UINT16)3);
    [all...]
PxeBcBoot.c 108 Cache->Dhcp4.OptList[PXEBC_DHCP4_TAG_INDEX_BOOTFILE] != NULL) {
490 ASSERT (Cache4->OptList[PXEBC_DHCP4_TAG_INDEX_BOOTFILE] != NULL);
526 Cache4->OptList[PXEBC_DHCP4_TAG_INDEX_SERVER_ID]->Data,
534 Private->BootFileName = Cache4->OptList[PXEBC_DHCP4_TAG_INDEX_BOOTFILE]->Data;
536 if (Cache4->OptList[PXEBC_DHCP4_TAG_INDEX_BOOTFILE_LEN] != NULL) {
540 CopyMem (&Value, Cache4->OptList[PXEBC_DHCP4_TAG_INDEX_BOOTFILE_LEN]->Data, sizeof (Value));
620 ASSERT (Cache6->OptList[PXEBC_DHCP6_IDX_BOOT_FILE_URL] != NULL);
628 (CHAR8 *) (Cache6->OptList[PXEBC_DHCP6_IDX_BOOT_FILE_URL]->Data),
629 NTOHS (Cache6->OptList[PXEBC_DHCP6_IDX_BOOT_FILE_URL]->OpLen)
646 if (Cache6->OptList[PXEBC_DHCP6_IDX_BOOT_FILE_PARAM] != NULL) {
    [all...]
PxeBcDhcp6.h 135 EFI_DHCP6_PACKET_OPTION *OptList[PXEBC_DHCP6_IDX_MAX];
PxeBcDhcp4.h 315 EFI_DHCP4_PACKET_OPTION *OptList[PXEBC_DHCP4_TAG_INDEX_MAX];
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/UefiPxeBcDxe/
PxeBcDhcp.c 986 @param OptList Pointer to a DHCP option list.
996 IN EFI_DHCP4_PACKET_OPTION **OptList,
1005 OptList[0] = (EFI_DHCP4_PACKET_OPTION *) Private->OptionBuffer;
1011 OptList[Index]->OpCode = PXEBC_DHCP4_TAG_MSG_TYPE;
1012 OptList[Index]->Length = 1;
1013 OptEnt.Mesg = (PXEBC_DHCP4_OPTION_MESG *) OptList[Index]->Data;
1016 OptList[Index] = GET_NEXT_DHCP_OPTION (OptList[Index - 1]);
1021 OptList[Index]->OpCode = PXEBC_DHCP4_TAG_MAXMSG;
1022 OptList[Index]->Length = (UINT8) sizeof (PXEBC_DHCP4_OPTION_MAX_MESG_SIZE);
    [all...]
PxeBcDhcp.h 434 @param OptList Pointer to a DHCP option list.
444 IN EFI_DHCP4_PACKET_OPTION **OptList,
452 @param OptList Pointer to the list of the options
460 IN EFI_DHCP4_PACKET_OPTION *OptList,
PxeBcImpl.c 581 EFI_DHCP4_PACKET_OPTION *OptList[PXEBC_DHCP4_MAX_OPTION_NUM];
612 OptCount = PxeBcBuildDhcpOptions (Private, OptList, TRUE);
620 Dhcp4CfgData.OptionList = OptList;
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/
Ip6ConfigImpl.c 157 EFI_DHCP6_PACKET_OPTION *OptList[1];
225 OptList[0] = Oro;
236 Dhcp6CfgData.OptionList = &OptList[0];
    [all...]
  /device/linaro/bootloader/edk2/IntelFspPkg/Tools/
GenCfgOpt.py     [all...]

Completed in 160 milliseconds