Lines Matching refs:lw
892 leak_walk_t *lw;
934 wsp->walk_data = lw = mdb_zalloc(sizeof (*lw), UM_SLEEP);
935 lw->lkw_ndx = 0;
936 lw->lkw_current = lkb;
937 lw->lkw_hash_next = NULL;
945 leak_walk_t *lw = wsp->walk_data;
948 if ((lk = lw->lkw_current) == NULL) {
949 if ((lk = lw->lkw_hash_next) == NULL) {
953 while (lk == NULL && lw->lkw_ndx < LK_BUFCTLHSIZE)
954 lk = lk_bufctl[lw->lkw_ndx++];
956 if (lw->lkw_ndx == LK_BUFCTLHSIZE)
960 lw->lkw_hash_next = lk->lkb_hash_next;
963 lw->lkw_current = lk->lkb_next;
982 leak_walk_t *lw = wsp->walk_data;
984 mdb_free(lw, sizeof (leak_walk_t));