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

  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Ip4Dxe/
Ip4Route.c 36 IP4_ROUTE_ENTRY *RtEntry;
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;
    [all...]
Ip4Config2Impl.c 397 IP4_ROUTE_ENTRY *RtEntry;
422 RtEntry = NET_LIST_USER_STRUCT (Entry, IP4_ROUTE_ENTRY, Link);
424 EFI_IP4 (Table[Count].SubnetAddress) = HTONL (RtEntry->Dest & RtEntry->Netmask);
425 EFI_IP4 (Table[Count].SubnetMask) = HTONL (RtEntry->Netmask);
426 EFI_IP4 (Table[Count].GatewayAddress) = HTONL (RtEntry->NextHop);
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/
Ip6Route.c 63 IP6_ROUTE_ENTRY *RtEntry;
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 The route entry to free.
    [all...]
Ip6Nd.c 196 IP6_ROUTE_ENTRY *RtEntry;
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;
710 RtEntry = Ip6CreateRouteEntry (NULL, 0, Ip6Address);
711 if (RtEntry == NULL) {
716 InsertHeadList (&IpSb->RouteTable->RouteArea[0], &RtEntry->Link);
    [all...]

Completed in 84 milliseconds