| /src/sys/net/npf/ | 
| npf_socket.c | 181     struct inpcb		*in6p = NULL;  local in function:npf_ip6_socket 224     in6p = in6_pcbhashlookup(tb, s6addr, sport, d6addr,
 226     if (in6p == NULL) {
 227         in6p = in6_pcblookup_listen(tb, d6addr, dport);
 228         if (in6p == NULL)
 232     so = in6p->inp_socket;
 
 | 
| /src/lib/libc/resolv/ | 
| res_send.c | 212 	const struct sockaddr_in6 *in6p, *srv6;  local in function:res_ourserver_p 230 		in6p = (const struct sockaddr_in6 *)(const void *)sa;
 233 			if (srv6->sin6_family == in6p->sin6_family &&
 234 			    srv6->sin6_port == in6p->sin6_port &&
 237 			     srv6->sin6_scope_id == in6p->sin6_scope_id) &&
 240 			     IN6_ARE_ADDR_EQUAL(&srv6->sin6_addr, &in6p->sin6_addr)))
 
 | 
| /src/sys/netinet6/ | 
| sctp6_usrreq.c | 116 	struct sctp_inpcb *in6p = NULL;  local in function:sctp6_input 184 							 sh, ch, &in6p, &net);
 185 			/* in6p's ref-count increased && stcb locked */
 186 			if ((in6p) && (stcb)) {
 188 				sctp_chunk_output((struct sctp_inpcb *)in6p, stcb, 2);
 189 			}  else if ((in6p != NULL) && (stcb == NULL)) {
 211 	    sh, ch, &in6p, &net);
 212 	/* in6p's ref-count increased */
 213 	if (in6p == NULL) {
 232 	in6p_ip = (struct inpcb *)in6p;
 [all...]
 | 
| /src/sys/netinet/ | 
| sctp_usrreq.c | 3239 	struct in6pcb *in6p;  local in function:sctp_ctloutput 3250 		in6p = NULL;
 3256 		in6p = sotoin6pcb(so);
 3266 	if (inp == NULL && in6p == NULL)
 
 | 
| /src/sys/dist/pf/net/ | 
| pf.c | 2761 #define in6p inp  macro 2824 		in6p = in6_pcbhashlookup(tb, &saddr->v6, sport, &daddr->v6,
 2827 			in6p = in6_pcblookup_listen(tb, &daddr->v6, dport, 0);
 2847 		so = in6p->in6p_socket;
 
 |