Home
last modified time | relevance | path

Searched refs:sb_ccc (Results 1 – 9 of 9) sorted by relevance

/f-stack/tools/netstat/
H A Dnetgraph.c125 name, sockb.so_rcv.sb_ccc, sockb.so_snd.sb_ccc); in netgraphprotopr()
H A Dinet.c148 xsb->sb_cc = sb->sb_ccc; in sbtoxsockbuf()
/f-stack/freebsd/kern/
H A Duipc_sockbuf.c270 sb->sb_ccc += m->m_len; in sballoc()
303 sb->sb_ccc -= m->m_len; in sbfree()
353 sb->sb_ccc += m->m_len; in sballoc_ktls_rx()
373 sb->sb_ccc -= m->m_len; in sbfree_ktls_rx()
1335 sb->sb_ccc += m->m_len; in sbcompress()
1405 sb->sb_ccc += m->m_len; in sbcompress_ktls_rx()
1438 m_freem(sbcut_internal(sb, (int)sb->sb_ccc)); in sbflush_internal()
1474 __func__, len, sb->sb_ccc)); in sbcut_internal()
1487 sb->sb_ccc -= sb->sb_tlsdcc; in sbcut_internal()
1505 sb->sb_ccc -= len; in sbcut_internal()
[all …]
H A Duipc_ktls.c1006 KASSERT(sb->sb_acc == 0 && sb->sb_tlscc == sb->sb_ccc, in sb_mark_notready()
1008 sb->sb_ccc)); in sb_mark_notready()
1729 sb->sb_ccc -= n->m_len; in ktls_detach_record()
1748 sb->sb_ccc += len; in ktls_detach_record()
1843 sb->sb_ccc -= tls_len; in ktls_decrypt()
1879 sb->sb_ccc -= tls_len; in ktls_decrypt()
H A Duipc_debug.c409 db_printf("sb_ccc: %u ", sb->sb_ccc); in db_print_sockbuf()
/f-stack/tools/compat/include/sys/
H A Dsockbuf.h97 u_int sb_ccc; /* (a) claimed chars in buffer */ member
219 return (sb->sb_ccc); in sbused()
239 bleft = sb->sb_hiwat - sb->sb_ccc; in sbspace()
/f-stack/freebsd/sys/
H A Dsockbuf.h97 u_int sb_ccc; /* (a) claimed chars in buffer */ member
219 return (sb->sb_ccc); in sbused()
239 bleft = sb->sb_hiwat - sb->sb_ccc; in sbspace()
/f-stack/freebsd/netinet/
H A Dtcp_log_buf.c1661 log_buf->tlb_rxbuf.tls_sb_ccc = rxbuf->sb_ccc; in tcp_log_event_()
1667 log_buf->tlb_txbuf.tls_sb_ccc = txbuf->sb_ccc; in tcp_log_event_()
H A Dtcp_usrreq.c1247 (so->so_snd.sb_ccc > 0)) { in tcp_usr_send()