Home
last modified time | relevance | path

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

/f-stack/freebsd/netinet/
H A Dtcp_subr.c2308 struct xtcpcb xt; in tcp_pcblist() local
2310 tcp_inptoxtp(inp, &xt); in tcp_pcblist()
2312 error = SYSCTL_OUT(req, &xt, sizeof xt); in tcp_pcblist()
3450 bzero(xt, sizeof(*xt)); in tcp_inptoxtp()
3452 xt->t_state = TCPS_TIME_WAIT; in tcp_inptoxtp()
3454 xt->t_state = tp->t_state; in tcp_inptoxtp()
3456 xt->t_flags = tp->t_flags; in tcp_inptoxtp()
3460 xt->t_rcv_wnd = tp->rcv_wnd; in tcp_inptoxtp()
3461 xt->t_snd_wnd = tp->snd_wnd; in tcp_inptoxtp()
3464 xt->t_maxseg = tp->t_maxseg; in tcp_inptoxtp()
[all …]
H A Dtcp_syncache.c2557 struct xtcpcb xt; in syncache_pcblist() local
2562 bzero(&xt, sizeof(xt)); in syncache_pcblist()
2563 xt.xt_len = sizeof(xt); in syncache_pcblist()
2564 xt.t_state = TCPS_SYN_RECEIVED; in syncache_pcblist()
2565 xt.xt_inp.xi_socket.xso_protocol = IPPROTO_TCP; in syncache_pcblist()
2567 xt.xt_inp.xi_socket.so_type = SOCK_STREAM; in syncache_pcblist()
2568 xt.xt_inp.xi_socket.so_state = SS_ISCONNECTING; in syncache_pcblist()
2577 xt.xt_inp.inp_vflag = INP_IPV6; in syncache_pcblist()
2579 xt.xt_inp.inp_vflag = INP_IPV4; in syncache_pcblist()
2580 bcopy(&sc->sc_inc, &xt.xt_inp.inp_inc, in syncache_pcblist()
[all …]
/f-stack/freebsd/kern/
H A Dtty.c1287 tty_to_xtty(struct tty *tp, struct xtty *xt) in tty_to_xtty() argument
1292 xt->xt_size = sizeof(struct xtty); in tty_to_xtty()
1293 xt->xt_insize = ttyinq_getsize(&tp->t_inq); in tty_to_xtty()
1295 xt->xt_inlc = ttyinq_bytesline(&tp->t_inq); in tty_to_xtty()
1296 xt->xt_inlow = tp->t_inlow; in tty_to_xtty()
1299 xt->xt_outlow = tp->t_outlow; in tty_to_xtty()
1300 xt->xt_column = tp->t_column; in tty_to_xtty()
1303 xt->xt_flags = tp->t_flags; in tty_to_xtty()
1311 struct xtty *xtlist, *xt; in sysctl_kern_ttys() local
1326 tty_to_xtty(tp, xt); in sysctl_kern_ttys()
[all …]