Lines Matching refs:tcph_t
105 tcph_t *tcp_hdr; /* raw TCP header */
147 * the non-NULL tcph_t * passed in or, if it is NULL, uses arg3 (tcp_t *)
154 typedef tcph_t * __dtrace_tcp_tcph_t;
157 translator tcpinfo_t < tcph_t *T > {
173 T != NULL ? ntohs(*(uint16_t *)((tcph_t *)T)->th_lport) :
180 T != NULL ? ntohs(*(uint16_t *)((tcph_t *)T)->th_fport) :
187 T != NULL ? ntohl(*(uint32_t *)((tcph_t *)T)->th_seq) :
194 T != NULL ? ntohl(*(uint32_t *)((tcph_t *)T)->th_ack) :
201 (*(uint8_t *)((tcph_t *)T)->th_offset_and_rsrvd & 0xf0) >> 2 :
203 tcp_flags = T != NULL ? *(uint8_t *)((tcph_t *)T)->th_flags : TH_ACK;
204 tcp_window = T != NULL ? ntohs(*(uint16_t *)((tcph_t *)T)->th_win) :
206 tcp_checksum = T != NULL ? ntohs(*(uint16_t *)((tcph_t *)T)->th_sum) :
208 tcp_urgent = T != NULL ? ntohs(*(uint16_t *)((tcph_t *)T)->th_urp) : 0;
255 ntohl(*(uint32_t *)((tcph_t *)arg4)->th_seq) >= T->tcp_rexmit_nxt &&
256 ntohl(*(uint32_t *)((tcph_t *)arg4)->th_seq) < T->tcp_rexmit_max ?