Lines Matching refs:handlers
190 struct handlers *handlers; in route_exception() local
192 handlers = (struct handlers *)exception_handlers; in route_exception()
194 if (handlers && handlers->exception_handlers[vector]) in route_exception()
195 return handlers->exception_handlers[vector](regs); in route_exception()
208 vm->handlers = __vm_alloc(vm, sizeof(struct handlers), in vm_init_descriptor_tables()
212 addr = addr_gva2hva(vm, vm->handlers); in vm_init_descriptor_tables()
214 exception_handlers = vm->handlers; in vm_init_descriptor_tables()
220 struct handlers *handlers = addr_gva2hva(vm, vm->handlers); in vm_install_exception_handler() local
223 handlers->exception_handlers[vector] = handler; in vm_install_exception_handler()