Home
last modified time | relevance | path

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

/illumos-gate/usr/src/cmd/fm/fmd/common/
H A Dfmd_buf.c60 bhp->bh_hash = fmd_zalloc(sizeof (void *) * bhp->bh_hashlen, FMD_SLEEP); in fmd_buf_hash_create()
72 for (bp = bhp->bh_hash[i]; bp != NULL; bp = np) { in fmd_buf_hash_destroy()
79 fmd_free(bhp->bh_hash, sizeof (void *) * bhp->bh_hashlen); in fmd_buf_hash_destroy()
91 for (bp = bhp->bh_hash[i]; bp != NULL; bp = bp->buf_next) in fmd_buf_hash_apply()
103 for (bp = bhp->bh_hash[i]; bp != NULL; bp = bp->buf_next) in fmd_buf_hash_commit()
120 bp->buf_next = bhp->bh_hash[h]; in fmd_buf_insert()
121 bhp->bh_hash[h] = bp; in fmd_buf_insert()
133 for (bp = bhp->bh_hash[h]; bp != NULL; bp = bp->buf_next) { in fmd_buf_lookup()
145 fmd_buf_t *bp, **pp = &bhp->bh_hash[h]; in fmd_buf_delete()
H A Dfmd_buf.h50 fmd_buf_t **bh_hash; /* hash bucket array for buffers */ member
H A Dfmd_mdb.c914 return (hash_walk_init(wsp, (uintptr_t)bh.bh_hash, bh.bh_hashlen, in buf_walk_init()