Searched refs:inp_Wstat (Results 1 - 4 of 4) sorted by relevance

/macosx-10.10.1/xnu-2782.1.97/bsd/netinet/
H A Din_pcb.h226 struct inp_stat *inp_Wstat; /* Wired data */ member in struct:inpcb
242 locked_add_64(&((_inp)->inp_Wstat->_a), (_n)); \
H A Dtcp_usrreq.c1534 ti->tcpi_wired_rxpackets = inp->inp_Wstat->rxpackets;
1535 ti->tcpi_wired_rxbytes = inp->inp_Wstat->rxbytes;
1536 ti->tcpi_wired_txpackets = inp->inp_Wstat->txpackets;
1537 ti->tcpi_wired_txbytes = inp->inp_Wstat->txbytes;
H A Din_pcb.c588 /* make sure inp_Wstat is always 64-bit aligned */
589 inp->inp_Wstat = (struct inp_stat *)P2ROUNDUP(inp->inp_Wstat_store,
591 if (((uintptr_t)inp->inp_Wstat - (uintptr_t)inp->inp_Wstat_store) +
592 sizeof (*inp->inp_Wstat) > sizeof (inp->inp_Wstat_store)) {
593 panic("%s: insufficient space to align inp_Wstat", __func__);
/macosx-10.10.1/xnu-2782.1.97/bsd/net/
H A Dntstat.c1070 atomic_get_64(out_counts->nstat_wired_rxbytes, &inp->inp_Wstat->rxbytes);
1071 atomic_get_64(out_counts->nstat_wired_txbytes, &inp->inp_Wstat->txbytes);
1461 atomic_get_64(out_counts->nstat_wired_rxbytes, &inp->inp_Wstat->rxbytes);
1462 atomic_get_64(out_counts->nstat_wired_txbytes, &inp->inp_Wstat->txbytes);

Completed in 77 milliseconds