Lines Matching refs:hbuf
37 uintptr_t bw_hbufbase; /* Base address of hbuf buckets */
38 struct hbuf *bw_hbufs; /* Snapshot of hbuf buckets */
39 size_t bw_nhbufs; /* Number of hbuf buckets */
40 size_t bw_hbufi; /* Current hbuf index */
47 struct hbuf *hbufs;
65 if (mdb_readvar(&hbuf_addr, "hbuf") == -1) {
66 mdb_warn("failed to read hbuf pointer");
70 nbytes = sizeof (struct hbuf) * v.v_hbuf;
101 * hbuf itself, advance to the next hash bucket. When we reach
105 bwp->bw_hbufi * sizeof (struct hbuf))) {
130 mdb_free(bwp->bw_hbufs, sizeof (struct hbuf) * bwp->bw_nhbufs);