Lines Matching refs:op
430 vpic_set_irqline(vm_pic(target_vm), irq_pic, ops->op); in hcall_set_irqline()
434 vioapic_set_irqline_lock(target_vm, ops->gsi, ops->op); in hcall_set_irqline()
1268 struct emul_dev_ops *op = NULL; in find_emul_dev_ops() local
1273 op = &emul_dev_ops_tbl[i]; in find_emul_dev_ops()
1277 return op; in find_emul_dev_ops()
1296 struct emul_dev_ops *op; in hcall_add_vdev() local
1301 op = find_emul_dev_ops(&dev); in hcall_add_vdev()
1302 if ((op != NULL) && (op->create != NULL)) { in hcall_add_vdev()
1303 ret = op->create(target_vm, &dev); in hcall_add_vdev()
1329 struct emul_dev_ops *op; in hcall_remove_vdev() local
1335 op = find_emul_dev_ops(&dev); in hcall_remove_vdev()
1336 if (op != NULL) { in hcall_remove_vdev()
1341 if (op->destroy != NULL) { in hcall_remove_vdev()
1342 ret = op->destroy(vdev); in hcall_remove_vdev()