Home
last modified time | relevance | path

Searched refs:vector_handlers (Results 1 – 2 of 2) sorted by relevance

/kvm-unit-tests/lib/arm64/
H A Dprocessor.c214 if (v < VECTOR_MAX && ti->vector_handlers[v]) { in do_handle_exception()
215 ti->vector_handlers[v](v, regs, esr); in do_handle_exception()
221 if (v < VECTOR_MAX && ti->vector_handlers[v]) in do_handle_exception()
222 ti->vector_handlers[v](v, regs, esr); in do_handle_exception()
232 ti->vector_handlers[v] = fn; in install_vector_handler()
245 vector_handlers_default_init(ti->vector_handlers); in thread_info_init()
/kvm-unit-tests/lib/arm/asm/
H A Dthread_info.h56 vector_fn vector_handlers[VECTOR_MAX]; member