Lines Matching refs:vw
2954 vmem_walk_t *vw;
3002 vw = mdb_zalloc(sizeof (vmem_walk_t), UM_SLEEP);
3003 vw->vw_root = root;
3006 vw->vw_current = current;
3008 vw->vw_current = root;
3010 wsp->walk_data = vw;
3024 vmem_walk_t *vw = wsp->walk_data;
3028 if ((vp = vw->vw_current) == NULL)
3034 vw->vw_current = vp->vn_children;
3039 vw->vw_current = vp->vn_sibling;
3041 } while (vw->vw_current == NULL && vp != NULL);
3055 vmem_walk_t *vw = wsp->walk_data;
3056 vmem_node_t *vp = vw->vw_current;
3087 vw->vw_current = vp;
3096 vmem_walk_t *vw = wsp->walk_data;
3097 vmem_node_t *root = vw->vw_root;
3103 if ((vw->vw_root = root->vn_children) != NULL)
3106 vw->vw_root = root->vn_sibling;
3111 mdb_free(vw, sizeof (vmem_walk_t));