Lines Matching refs:Copy
46 IP6_ADDRESS_INFO *Copy; in Ip6CandidateSource() local
51 Copy = AllocatePool (sizeof (IP6_ADDRESS_INFO)); in Ip6CandidateSource()
52 if (Copy == NULL) { in Ip6CandidateSource()
56 Copy->Signature = IP6_ADDR_INFO_SIGNATURE; in Ip6CandidateSource()
57 IP6_COPY_ADDRESS (&Copy->Address, &IpSb->LinkLocalAddr); in Ip6CandidateSource()
58 Copy->IsAnycast = FALSE; in Ip6CandidateSource()
59 Copy->PrefixLength = IP6_LINK_LOCAL_PREFIX_LENGTH; in Ip6CandidateSource()
60 Copy->ValidLifetime = (UINT32) IP6_INFINIT_LIFETIME; in Ip6CandidateSource()
61 Copy->PreferredLifetime = (UINT32) IP6_INFINIT_LIFETIME; in Ip6CandidateSource()
63 InsertTailList (SourceList, &Copy->Link); in Ip6CandidateSource()
80 Copy = AllocateCopyPool (sizeof (IP6_ADDRESS_INFO), AddrInfo); in Ip6CandidateSource()
81 if (Copy == NULL) { in Ip6CandidateSource()
85 InsertTailList (SourceList, &Copy->Link); in Ip6CandidateSource()