• Home
  • Raw
  • Download

Lines Matching refs:Info

55   Assemble->Info     = NULL;  in Ip6CreateAssembleEntry()
123 IP6_CLIP_INFO *Info; in Ip6TrimPacket() local
126 Info = IP6_GET_CLIP_INFO (Packet); in Ip6TrimPacket()
128 ASSERT (Info->Start + Info->Length == Info->End); in Ip6TrimPacket()
129 ASSERT ((Info->Start < End) && (Start < Info->End)); in Ip6TrimPacket()
131 if (Info->Start < Start) { in Ip6TrimPacket()
132 Len = Start - Info->Start; in Ip6TrimPacket()
135 Info->Start = (UINT32) Start; in Ip6TrimPacket()
136 Info->Length -= (UINT32) Len; in Ip6TrimPacket()
139 if (End < Info->End) { in Ip6TrimPacket()
140 Len = End - Info->End; in Ip6TrimPacket()
143 Info->End = (UINT32) End; in Ip6TrimPacket()
144 Info->Length -= (UINT32) Len; in Ip6TrimPacket()
367 Assemble->Info = IP6_GET_CLIP_INFO (Packet); in Ip6Reassemble()
400 This = Assemble->Info; in Ip6Reassemble()
438 CopyMem (IP6_GET_CLIP_INFO (NewPacket), Assemble->Info, sizeof (IP6_CLIP_INFO)); in Ip6Reassemble()
769 IP6_CLIP_INFO *Info; in Ip6PreProcessPacket() local
814 Info = IP6_GET_CLIP_INFO (*Packet); in Ip6PreProcessPacket()
815 Info->LinkFlag = Flag; in Ip6PreProcessPacket()
816 Info->CastType = 0; in Ip6PreProcessPacket()
819 Info->CastType = Ip6Promiscuous; in Ip6PreProcessPacket()
823 Info->CastType = Ip6Unicast; in Ip6PreProcessPacket()
826 Info->CastType = Ip6Multicast; in Ip6PreProcessPacket()
833 if (Info->CastType == 0) { in Ip6PreProcessPacket()
840 Info->Start = 0; in Ip6PreProcessPacket()
841 Info->Length = PayloadLen; in Ip6PreProcessPacket()
842 Info->End = Info->Start + Info->Length; in Ip6PreProcessPacket()
843 Info->HeadLen = (UINT16) sizeof (EFI_IP6_HEADER); in Ip6PreProcessPacket()
844 Info->Status = EFI_SUCCESS; in Ip6PreProcessPacket()
845 Info->LastFrag = FALSE; in Ip6PreProcessPacket()
902 Info->LastFrag = TRUE; in Ip6PreProcessPacket()
911 Info->NextHeader = FragmentHead->NextHeader; in Ip6PreProcessPacket()
914 Info->HeadLen = (UINT16) HeadLen; in Ip6PreProcessPacket()
916 Info->Start = FragmentOffset; in Ip6PreProcessPacket()
917 Info->Length = TotalLen - (UINT16) HeadLen; in Ip6PreProcessPacket()
918 Info->End = Info->Start + Info->Length; in Ip6PreProcessPacket()
919 Info->Id = FragmentHead->Identification; in Ip6PreProcessPacket()
920 Info->FormerNextHeader = FormerHeadOffset; in Ip6PreProcessPacket()
925 if ((Info->LastFrag == 0) && (Info->Length % 8 != 0)) { in Ip6PreProcessPacket()
1291 IP6_CLIP_INFO *Info; in Ip6InstanceFrameAcceptable() local
1385 Info = IP6_GET_CLIP_INFO (Packet); in Ip6InstanceFrameAcceptable()
1390 if (Info->CastType == Ip6Multicast) { in Ip6InstanceFrameAcceptable()
1432 IP6_CLIP_INFO *Info; in Ip6InstanceEnquePacket() local
1459 Info = IP6_GET_CLIP_INFO (Clone); in Ip6InstanceEnquePacket()
1460 Info->Life = IP6_US_TO_SEC (IpInstance->ConfigData.ReceiveTimeout); in Ip6InstanceEnquePacket()
1584 IP6_CLIP_INFO *Info; in Ip6InterfaceEnquePacket() local
1595 Info = IP6_GET_CLIP_INFO (Packet); in Ip6InterfaceEnquePacket()
1600 LocalType = Info->CastType; in Ip6InterfaceEnquePacket()
1609 SavedType = Info->CastType; in Ip6InterfaceEnquePacket()
1610 Info->CastType = (UINT32) LocalType; in Ip6InterfaceEnquePacket()
1623 Info->CastType = (UINT32) SavedType; in Ip6InterfaceEnquePacket()
1767 IP6_CLIP_INFO *Info; in Ip6PacketTimerTicking() local
1817 Info = IP6_GET_CLIP_INFO (Packet); in Ip6PacketTimerTicking()
1819 if ((Info->Life > 0) && (--Info->Life == 0)) { in Ip6PacketTimerTicking()