Searched defs:RtEntry (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/Ip4Dxe/
H A DIp4Route.c36 IP4_ROUTE_ENTRY *RtEntry; local
38 RtEntry = AllocatePool (sizeof (IP4_ROUTE_ENTRY));
40 if (RtEntry == NULL) {
44 InitializeListHead (&RtEntry->Link);
46 RtEntry->RefCnt = 1;
47 RtEntry->Dest = Dest;
48 RtEntry->Netmask = Netmask;
49 RtEntry->NextHop = GateWay;
50 RtEntry->Flag = 0;
52 return RtEntry;
232 IP4_ROUTE_ENTRY *RtEntry; local
319 IP4_ROUTE_ENTRY *RtEntry; local
382 IP4_ROUTE_ENTRY *RtEntry; local
466 IP4_ROUTE_ENTRY *RtEntry; local
514 IP4_ROUTE_ENTRY *RtEntry; local
606 IP4_ROUTE_ENTRY *RtEntry; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/Ip6Dxe/
H A DIp6Route.c63 IP6_ROUTE_ENTRY *RtEntry; local
65 RtEntry = AllocateZeroPool (sizeof (IP6_ROUTE_ENTRY));
67 if (RtEntry == NULL) {
71 RtEntry->RefCnt = 1;
72 RtEntry->Flag = 0;
73 RtEntry->PrefixLength = PrefixLength;
76 IP6_COPY_ADDRESS (&RtEntry->Destination, Destination);
80 IP6_COPY_ADDRESS (&RtEntry->NextHop, GatewayAddress);
83 return RtEntry;
89 @param[in, out] RtEntry Th
131 IP6_ROUTE_ENTRY *RtEntry; local
275 IP6_ROUTE_ENTRY *RtEntry; local
375 IP6_ROUTE_ENTRY *RtEntry; local
573 IP6_ROUTE_ENTRY *RtEntry; local
[all...]
H A DIp6Nd.c196 IP6_ROUTE_ENTRY *RtEntry; local
235 RtEntry = Ip6CreateRouteEntry (Prefix, PrefixLength, NULL);
236 if (RtEntry == NULL) {
241 RtEntry->Flag = IP6_DIRECT_ROUTE;
242 InsertHeadList (&IpSb->RouteTable->RouteArea[PrefixLength], &RtEntry->Link);
692 IP6_ROUTE_ENTRY *RtEntry; local
710 RtEntry = Ip6CreateRouteEntry (NULL, 0, Ip6Address);
711 if (RtEntry == NULL) {
716 InsertHeadList (&IpSb->RouteTable->RouteArea[0], &RtEntry->Link);

Completed in 92 milliseconds