Searched refs:inp_ppcb (Results 1 - 14 of 14) sorted by relevance

/freebsd-10.1-release/contrib/ipfilter/ipsend/
H A Dsock.c261 if (KMCPY(t, i->inp_ppcb, sizeof(*t)) == -1)
263 fprintf(stderr, "read(%#x,%#x,%d) - inp_ppcb - failed\n",
264 i->inp_ppcb, t, sizeof(*t));
267 return (struct tcpcb *)i->inp_ppcb;
365 if (KMCPY(t, i->inp_ppcb, sizeof(*t)) == -1)
367 fprintf(stderr, "read(%#lx,%#lx,%lu) - inp_ppcb - failed\n",
368 (u_long)i->inp_ppcb, (u_long)t, (u_long)sizeof(*t));
371 return (struct tcpcb *)i->inp_ppcb;
/freebsd-10.1-release/sys/netinet/
H A Dudp_var.h70 #define intoudpcb(ip) ((struct udpcb *)(ip)->inp_ppcb)
H A Dtcp_timewait.c294 inp->inp_ppcb = tw;
461 KASSERT(intotw(inp) == tw, ("tcp_twclose: inp_ppcb != tw"));
467 inp->inp_ppcb = NULL;
H A Dtcp_var.h360 #define intotcpcb(ip) ((struct tcpcb *)(ip)->inp_ppcb)
361 #define intotw(ip) ((struct tcptw *)(ip)->inp_ppcb)
H A Dtcp_subr.c812 inp->inp_ppcb = tp;
1010 inp->inp_ppcb = NULL;
1229 void *inp_ppcb; local
1235 inp_ppcb = inp->inp_ppcb;
1236 if (inp_ppcb == NULL)
1242 bcopy(inp_ppcb, &xt.xt_tp, sizeof xt.xt_tp);
H A Din_pcb.h133 * hung off of inp_ppcb most of the time. Almost all fields of struct inpcb
167 void *inp_ppcb; /* (i) pointer to per-protocol pcb */ member in struct:inpcb
H A Din_pcb.c2185 return ((struct tcpcb *)inp->inp_ppcb);
2423 db_printf("inp_ppcb: %p inp_pcbinfo: %p inp_socket: %p\n",
2424 inp->inp_ppcb, inp->inp_pcbinfo, inp->inp_socket);
H A Dudp_usrreq.c251 inp->inp_ppcb = up;
1731 inp->inp_ppcb = NULL;
/freebsd-10.1-release/usr.bin/fstat/
H A Dfstat.c362 if (sock.inp_ppcb != 0)
363 printf(" %lx", (u_long)sock.inp_ppcb);
/freebsd-10.1-release/lib/libprocstat/
H A Dlibprocstat.h146 uint64_t inp_ppcb; member in struct:sockstat
H A Dlibprocstat.c1491 sock->inp_ppcb =
1492 (uintptr_t)inpcb.inp_ppcb;
1551 sock->inp_ppcb = kif->kf_un.kf_sock.kf_sock_inpcb;
/freebsd-10.1-release/usr.bin/netstat/
H A Dinet.c256 if (inp->inp_ppcb == NULL)
262 KREAD(inp->inp_ppcb, &xt.xt_tp,
452 printf("%*lx ", 2 * (int)sizeof(void *), (u_long)inp->inp_ppcb);
/freebsd-10.1-release/usr.bin/systat/
H A Dnetstat.c227 KREAD(inpcb.inp_ppcb, &tcpcb, sizeof (tcpcb));
/freebsd-10.1-release/sys/kern/
H A Dkern_descrip.c3698 (uintptr_t)inpcb->inp_ppcb;

Completed in 232 milliseconds