gif_pdst          141 net/if_gif.c   	if (sc->gif_pdst)
gif_pdst          142 net/if_gif.c   		free((caddr_t)sc->gif_pdst, M_IFADDR);
gif_pdst          143 net/if_gif.c   	sc->gif_pdst = NULL;
gif_pdst          161 net/if_gif.c   	    sc->gif_psrc == NULL || sc->gif_pdst == NULL)
gif_pdst          280 net/if_gif.c   	    sc->gif_psrc == NULL || sc->gif_pdst == NULL) {
gif_pdst          451 net/if_gif.c   			if (!sc2->gif_pdst || !sc2->gif_psrc)
gif_pdst          453 net/if_gif.c   			if (sc2->gif_pdst->sa_family != dst->sa_family ||
gif_pdst          454 net/if_gif.c   			    sc2->gif_pdst->sa_len != dst->sa_len ||
gif_pdst          459 net/if_gif.c   			if (bcmp(sc2->gif_pdst, dst, dst->sa_len) == 0 &&
gif_pdst          473 net/if_gif.c   			    multidest(dst) && multidest(sc2->gif_pdst)) {
gif_pdst          479 net/if_gif.c   			    multidest6(dst) && multidest6(sc2->gif_pdst)) {
gif_pdst          492 net/if_gif.c   		if (sc->gif_pdst)
gif_pdst          493 net/if_gif.c   			free((caddr_t)sc->gif_pdst, M_IFADDR);
gif_pdst          496 net/if_gif.c   		sc->gif_pdst = sa;
gif_pdst          512 net/if_gif.c   		if (sc->gif_pdst) {
gif_pdst          513 net/if_gif.c   			free((caddr_t)sc->gif_pdst, M_IFADDR);
gif_pdst          514 net/if_gif.c   			sc->gif_pdst = NULL;
gif_pdst          556 net/if_gif.c   		if (sc->gif_pdst == NULL) {
gif_pdst          560 net/if_gif.c   		src = sc->gif_pdst;
gif_pdst          585 net/if_gif.c   		if (sc->gif_psrc == NULL || sc->gif_pdst == NULL) {
gif_pdst          600 net/if_gif.c   		src = sc->gif_pdst;
gif_pdst           47 net/if_gif.h   	struct sockaddr	*gif_pdst; /* Physical dst addr */
gif_pdst           64 netinet/in_gif.c 	struct sockaddr_in *sin_dst = (struct sockaddr_in *)sc->gif_pdst;
gif_pdst          152 netinet/in_gif.c 		if (sc->gif_psrc == NULL || sc->gif_pdst == NULL ||
gif_pdst          154 netinet/in_gif.c 		    sc->gif_pdst->sa_family != AF_INET) {
gif_pdst          162 netinet/in_gif.c 		    in_hosteq(satosin(sc->gif_pdst)->sin_addr, ip->ip_src))
gif_pdst          224 netinet/ip_ether.c 		    (sc->gif_pdst == NULL) ||
gif_pdst          229 netinet/ip_ether.c 		    !bcmp(sc->gif_pdst, &ssrc, sc->gif_pdst->sa_len) &&
gif_pdst           80 netinet6/in6_gif.c 	struct sockaddr_in6 *sin6_dst = (struct sockaddr_in6 *)sc->gif_pdst;
gif_pdst          191 netinet6/in6_gif.c 		if (sc->gif_psrc == NULL || sc->gif_pdst == NULL ||
gif_pdst          193 netinet6/in6_gif.c 		    sc->gif_pdst->sa_family != AF_INET6) {
gif_pdst          201 netinet6/in6_gif.c 		    IN6_ARE_ADDR_EQUAL(&satoin6(sc->gif_pdst), &ip6->ip6_src)) {