Home | History | Annotate | Download | only in Dhcp6Dxe

Lines Matching defs:Start

42   The Start() function starts the DHCPv6 standard process. This function can

107 // Send the solicit message to start S.A.R.R process.
661 // Start the timer, wait for link local address DAD to finish.
797 // Send renew/rebind message to start exchange process.
931 // Send the decline message to start exchange process.
1072 // Send the release message to start exchange process.
1148 UINT8 *Start;
1177 Start = Packet->Dhcp6.Option;
1178 End = Start + OptLen;
1183 while (Start < End) {
1184 DataLen = ((EFI_DHCP6_PACKET_OPTION *) Start)->OpLen;
1185 Start += (NTOHS (DataLen) + 4);
1204 Start = Packet->Dhcp6.Option;
1206 while (Start < End) {
1208 PacketOptionList[OptCnt] = (EFI_DHCP6_PACKET_OPTION *) Start;
1209 DataLen = ((EFI_DHCP6_PACKET_OPTION *) Start)->OpLen;
1210 Start += (NTOHS (DataLen) + 4);