HomeSort by: relevance | last modified time | path
    Searched defs:tcpcb (Results 1 - 4 of 4) sorted by relevancy

  /src/usr.bin/netstat/
inet.c 281 struct tcpcb tcpcb; local in function:getpcblist_kmem
316 (char *)&tcpcb, sizeof (tcpcb));
329 pcblist[i].ki_tstate = tcpcb.t_state;
477 p(TCP_STAT_DELAYED_FREE, "\t%" PRIu64 " delayed free%s of tcpcb\n");
1049 struct tcpcb tcpcb; local in function:tcp_dump
1067 kread(pcbaddr, (char *)&tcpcb, sizeof(tcpcb));
    [all...]
inet6.c 108 #define tcp6cb tcpcb
148 struct tcpcb tcpcb; variable in typeref:struct:tcpcb
329 (char *)&tcpcb, sizeof (tcpcb));
342 pcblist[i].ki_tstate = tcpcb.t_state;
1496 #define mypcb tcpcb
1520 ci = (callout_impl_t *)&tcpcb.t_timer[i];
1544 tcpcb.t_peermss, tcpcb.t_ourmss, tcpcb.t_segsz, tcpcb.t_segqlen)
    [all...]
  /src/usr.bin/systat/
netstat.c 221 struct tcpcb tcpcb; local in function:fetchnetstat4
249 KREAD(inp->inp_ppcb, &tcpcb, sizeof (tcpcb));
250 enter(inp, &sockb, tcpcb.t_state, "tcp");
264 struct tcpcb tcpcb; local in function:fetchnetstat6
294 KREAD(inp->inp_ppcb, &tcpcb, sizeof (tcpcb));
295 enter6(inp, &sockb, tcpcb.t_state, "tcp")
    [all...]
  /src/sys/netinet/
tcp_var.h 213 struct tcpcb { struct
418 static __inline int tcp_reass_lock_try (struct tcpcb *)
420 static __inline void tcp_reass_unlock (struct tcpcb *)
424 tcp_reass_lock_try(struct tcpcb *tp)
443 tcp_reass_unlock(struct tcpcb *tp)
457 printf("%s:%d: tcpcb %p reass already locked\n", \
465 printf("%s:%d: tcpcb %p reass lock not held\n", \
524 #define intotcpcb(ip) ((struct tcpcb *)(ip)->inp_ppcb)
660 #define TCP_STAT_DELAYED_FREE 56 /* delayed pool_put() of tcpcb */
729 extern struct inpcbtable tcbtable; /* head of queue of active tcpcb's *
    [all...]

Completed in 13 milliseconds