Lines Matching refs:vw
3298 vmem_walk_t *vw;
3346 vw = mdb_zalloc(sizeof (vmem_walk_t), UM_SLEEP);
3347 vw->vw_root = root;
3350 vw->vw_current = current;
3352 vw->vw_current = root;
3354 wsp->walk_data = vw;
3368 vmem_walk_t *vw = wsp->walk_data;
3372 if ((vp = vw->vw_current) == NULL)
3378 vw->vw_current = vp->vn_children;
3383 vw->vw_current = vp->vn_sibling;
3385 } while (vw->vw_current == NULL && vp != NULL);
3399 vmem_walk_t *vw = wsp->walk_data;
3400 vmem_node_t *vp = vw->vw_current;
3431 vw->vw_current = vp;
3440 vmem_walk_t *vw = wsp->walk_data;
3441 vmem_node_t *root = vw->vw_root;
3447 if ((vw->vw_root = root->vn_children) != NULL)
3450 vw->vw_root = root->vn_sibling;
3455 mdb_free(vw, sizeof (vmem_walk_t));