Lines Matching defs:vce
2199 struct vmbus_chev *vce;
2201 vce = kmem_intr_alloc(sizeof(*vce), KM_NOSLEEP);
2202 if (vce == NULL) {
2207 vce->vce_type = type;
2208 vce->vce_arg = arg;
2211 SIMPLEQ_INSERT_TAIL(&sc->sc_chevq, vce, vce_entry);
2220 struct vmbus_chev *vce;
2227 vce = SIMPLEQ_FIRST(&sc->sc_chevq);
2231 switch (vce->vce_type) {
2233 co = vce->vce_arg;
2239 cr = vce->vce_arg;
2246 device_xname(sc->sc_dev), vce->vce_type);
2249 kmem_free(vce, sizeof(*vce));