Home | History | Annotate | Download | only in Dhcp4Dxe

Lines Matching refs:OptionList

57   in the OptionList parameter as described in RFC 2131.

241 @param[in] AppendCount Number of entries in the OptionList.
437 if (Config->OptionList != NULL) {
439 if (Config->OptionList[Index] != NULL) {
440 FreePool (Config->OptionList[Index]);
444 FreePool (Config->OptionList);
476 Dst->OptionList = NULL;
514 if (Src->OptionList != NULL) {
516 Dst->OptionList = AllocateZeroPool (Len);
518 if (Dst->OptionList == NULL) {
522 DstOptions = Dst->OptionList;
523 SrcOptions = Src->OptionList;
604 in the OptionList parameter as described in RFC 2131.
658 if ((Dhcp4CfgData->OptionCount != 0) && (Dhcp4CfgData->OptionList == NULL)) {
704 DhcpSb->UserOptionLen += Dhcp4CfgData->OptionList[Index]->Length + 2;
1116 @param[in] AppendCount Number of entries in the OptionList.