Lines Matching refs:P
50 translator csinfo_t < struct inpcb *P > {
51 cs_addr = P;
52 ip_ver = (P != NULL) ? (((P->inp_vflag & 0x2) != 0) ? 6 : 4) : 0;
53 dport = (P != NULL) ? ntohs(P->inp_fport) : 0;
54 sport = (P != NULL) ? ntohs(P->inp_lport) : 0;
55 ip_saddr = (P != NULL) ? (((P->inp_vflag & 0x2) != 0) ?
56 inet_ntoa6(&P->inp_dependladdr.inp6_local) :
57 inet_ntoa((uint32_t *)&P->inp_dependladdr.inp46_local.ia46_addr4.s_addr)) : "<null>";
58 ip_daddr = (P != NULL) ? (((P->inp_vflag & 0x2) != 0) ?
59 inet_ntoa6(&P->inp_dependfaddr.inp6_foreign) :
60 inet_ntoa((uint32_t *)&P->inp_dependfaddr.inp46_foreign.ia46_addr4.s_addr)) : "<null>";
61 protocol = P->inp_ip_p;