Home
last modified time | relevance | path

Searched refs:xt (Results 1 – 3 of 3) sorted by relevance

/xnu-11215/bsd/netinet/
H A Din_pcblist.c235 xt->xt_kind = XSO_TCPCB; in tcpcb_to_xtcpcb_n()
243 xt->t_state = tp->t_state; in tcpcb_to_xtcpcb_n()
244 xt->t_flags = tp->t_flags; in tcpcb_to_xtcpcb_n()
249 xt->snd_up = tp->snd_up; in tcpcb_to_xtcpcb_n()
252 xt->iss = tp->iss; in tcpcb_to_xtcpcb_n()
253 xt->irs = tp->irs; in tcpcb_to_xtcpcb_n()
257 xt->rcv_up = tp->rcv_up; in tcpcb_to_xtcpcb_n()
268 xt->t_srtt = tp->t_srtt; in tcpcb_to_xtcpcb_n()
276 xt->t_iobc = tp->t_iobc; in tcpcb_to_xtcpcb_n()
284 xt->cc_send = 0; in tcpcb_to_xtcpcb_n()
[all …]
H A Dtcp_subr.c2020 struct xtcpcb xt; variable
2039 bzero(&xt, sizeof(xt));
2040 xt.xt_len = sizeof(xt);
2046 &xt.xt_tp);
2048 bzero((char *) &xt.xt_tp, sizeof(xt.xt_tp));
2056 error = SYSCTL_OUT(req, &xt, sizeof(xt));
2205 struct xtcpcb64 xt; variable
2223 bzero(&xt, sizeof(xt));
2224 xt.xt_len = sizeof(xt);
2230 &xt);
[all …]
/xnu-11215/bsd/net/
H A Dntstat.c7313 nstat_userland_to_xtcpcb_n(nstat_flow_data *flow_data, struct xtcpcb_n *xt) in nstat_userland_to_xtcpcb_n() argument
7316 xt->xt_len = sizeof(struct xtcpcb_n); in nstat_userland_to_xtcpcb_n()
7317 xt->xt_kind = XSO_TCPCB; in nstat_userland_to_xtcpcb_n()
7318 xt->t_state = desc->state; in nstat_userland_to_xtcpcb_n()
7319 xt->snd_wnd = desc->txwindow; in nstat_userland_to_xtcpcb_n()
7320 xt->snd_cwnd = desc->txcwindow; in nstat_userland_to_xtcpcb_n()
7411 struct xtcpcb_n *xt = (struct xtcpcb_n *) ADVANCE64(xsostats, sizeof(*xsostats)); in nstat_userland_list_snapshot() local
7425 nstat_userland_to_xtcpcb_n(flow_data, xt); in nstat_userland_list_snapshot()