Home
last modified time | relevance | path

Searched refs:exception_fn (Results 1 – 7 of 7) sorted by relevance

/kvm-unit-tests/lib/riscv/asm/
H A Dprocessor.h10 typedef void (*exception_fn)(struct pt_regs *); typedef
17 exception_fn exception_handlers[EXCEPTION_CAUSE_MAX];
18 exception_fn interrupt_handlers[INTERRUPT_CAUSE_MAX];
/kvm-unit-tests/lib/arm/asm/
H A Dthread_info.h54 exception_fn exception_handlers[EXCPTN_MAX];
57 exception_fn exception_handlers[VECTOR_MAX][EC_MAX];
H A Dprocessor.h25 typedef void (*exception_fn)(struct pt_regs *); typedef
27 extern void install_exception_handler(enum vector v, exception_fn fn);
/kvm-unit-tests/lib/arm64/asm/
H A Dprocessor.h39 typedef void (*exception_fn)(struct pt_regs *regs, unsigned int esr); typedef
43 exception_fn fn);
/kvm-unit-tests/lib/arm64/
H A Dprocessor.c140 void install_exception_handler(enum vector v, unsigned int ec, exception_fn fn) in install_exception_handler()
153 ti->exception_handlers[v][0] = (exception_fn)fn; in install_irq_handler()
/kvm-unit-tests/lib/arm/
H A Dprocessor.c68 void install_exception_handler(enum vector v, exception_fn fn) in install_exception_handler()
/kvm-unit-tests/arm/
H A Dpsci.c34 static void install_invalid_function_handler(exception_fn handler) in install_invalid_function_handler()