Searched refs:handler (Results 1 - 25 of 200) sorted by relevance

12345678

/barrelfish-2018-10-04/usr/eclipseclp/CPViz/viztool/src/components/
H A DSquiggleInputHandlerFilter.java32 protected SquiggleInputHandler handler; field in class:SquiggleInputHandlerFilter
34 public SquiggleInputHandlerFilter(SquiggleInputHandler handler) { argument
35 this.handler = handler;
39 return f.isDirectory() || handler.accept(f);
44 String[] extensions = handler.getHandledExtensions();
57 sb.append(handler.getDescription());
/barrelfish-2018-10-04/include/lwip2/lwip/
H A Dtimeouts.h67 lwip_cyclic_timer_handler handler; member in struct:lwip_cyclic_timer
99 void sys_timeout_debug(u32_t msecs, sys_timeout_handler handler, void *arg, const char* handler_name);
100 #define sys_timeout(msecs, handler, arg) sys_timeout_debug(msecs, handler, arg, #handler)
102 void sys_timeout(u32_t msecs, sys_timeout_handler handler, void *arg);
105 void sys_untimeout(sys_timeout_handler handler, void *arg);
H A Ddebug.h134 /* if "expression" isn't true, then print "message" and execute "handler" expression */
135 #define LWIP_ERROR(message, expression, handler) do { if (!(expression)) { \
136 LWIP_PLATFORM_ERROR(message); handler;}} while(0)
/barrelfish-2018-10-04/usr/eclipseclp/Pds/src/
H A Dpds.mem.c40 pds_int_init(handler)
41 void (* handler) ();
43 irq_lock_init(handler);
/barrelfish-2018-10-04/usr/drivers/lpc_timer/
H A Dtimer.h24 void lpc_timer_register_handler(timer_handler_fn handler);
/barrelfish-2018-10-04/include/barrelfish/
H A Dinthandler.h23 errval_t inthandler_setup_movable_cap(struct capref dest_cap, interrupt_handler_fn handler, void *handler_arg,
27 errval_t inthandler_setup_movable(interrupt_handler_fn handler, void *handler_arg,
31 errval_t inthandler_setup(interrupt_handler_fn handler, void *handler_arg,
33 errval_t inthandler_setup_arm(interrupt_handler_fn handler, void *handler_arg,
/barrelfish-2018-10-04/kernel/
H A Dcoreboot.c3 * \brief Registering for handler functions to manage cores
25 * Register spawn core handler function for specific cpu type.
28 * \param handler Handler functions
30 void coreboot_set_spawn_handler(enum cpu_type type, coreboot_start_fn_t handler) argument
33 spawn_core_handlers[type] = handler;
38 * \param cpu_type Get handler for specific cpu type
39 * \return Core boot handler function or NULL in case none was registered
/barrelfish-2018-10-04/lib/posixcompat/
H A Dsignal.c17 __sighandler_t *signal(int signum, __sighandler_t *handler) argument
19 POSIXCOMPAT_DEBUG("Warning: signal(%d, %p) ignored\n", signum, handler);
/barrelfish-2018-10-04/lib/term/client/
H A Ddefault_triggers.c35 .handler = term_trigger_kill_handler,
43 .handler = term_trigger_int_handler,
/barrelfish-2018-10-04/usr/tests/wakeuptests/
H A Dwakeuptest.c10 static void handler(void *arg) function
25 MKCLOSURE(handler, NULL));
/barrelfish-2018-10-04/lib/barrelfish/
H A Dinthandler.c2 * \file User-level interrupt handler support
60 interrupt_handler_fn handler; member in struct:interrupt_handler_state
80 debug_printf("no relocation handler registered, expect badness!\n");
83 // run relocation handler
86 // run real handler
88 state->handler(state->handler_arg);
92 .handler = generic_interrupt_handler,
101 * \brief Setup an interrupt handler function to receive device interrupts
104 * \param handler Handler function
105 * \param handler_arg Argument passed to #handler
108 inthandler_setup_arm(interrupt_handler_fn handler, void *handler_arg, uint32_t irq) argument
164 inthandler_setup_movable_cap(struct capref dest_cap, interrupt_handler_fn handler, void *handler_arg, interrupt_handler_fn reloc_handler, void *reloc_handler_arg) argument
222 inthandler_setup_movable(interrupt_handler_fn handler, void *handler_arg, interrupt_handler_fn reloc_handler, void *reloc_handler_arg, uint64_t *ret_vector) argument
290 inthandler_setup(interrupt_handler_fn handler, void *handler_arg, uint64_t *ret_vector) argument
[all...]
/barrelfish-2018-10-04/kernel/include/
H A Dcoreboot.h19 void coreboot_set_spawn_handler(enum cpu_type type, coreboot_start_fn_t handler);
/barrelfish-2018-10-04/include/int_route/
H A Dint_route_client.h27 /* Do it all, route, allocate EP, connect to EP to handler */
29 struct waitset *ws, interrupt_handler_fn handler, void *handler_arg);
/barrelfish-2018-10-04/include/pci/
H A Dpci.h54 interrupt_handler_fn handler,
70 interrupt_handler_fn handler,
80 interrupt_handler_fn handler, void *handler_arg);
83 * Setup interrupt routing manually. If interrupt handler
90 errval_t pci_setup_int_routing(int irq_idx, interrupt_handler_fn handler,
100 interrupt_handler_fn handler,
111 * @param interrupt_handler The handler function when a interrupt is triggered.
117 interrupt_handler_fn handler,
120 errval_t pci_setup_inthandler(interrupt_handler_fn handler, void *handler_arg,
168 interrupt_handler_fn handler,
[all...]
H A Dpci_driver_client.h62 interrupt_handler_fn handler, void *st);
64 interrupt_handler_fn handler, void *st);
/barrelfish-2018-10-04/usr/drivers/rtc/
H A Dmain.c20 static struct chips_msg *handler(void *st, struct chips_msg *msg) function
58 r = chips_listen_and_register_singleton(NULL, handler, context, "rtc",
/barrelfish-2018-10-04/include/arch/aarch64/machine/
H A Dasm.h64 * Sets the trap fault handler. The exception handler will return to the
65 * address in the handler register on a data abort or the xzr register to
66 * clear the handler. The tmp parameter should be a register able to hold
69 #define SET_FAULT_HANDLER(handler, tmp) \
72 str handler, [tmp, #PCB_ONFAULT] /* Set the handler */
/barrelfish-2018-10-04/include/lwip/lwip/
H A Ddebug.h70 /** if "expression" isn't true, then print "message" and execute "handler" expression */
72 #define LWIP_ERROR(message, expression, handler) do { if (!(expression)) { \
73 LWIP_PLATFORM_ASSERT(message); handler;}} while(0)
/barrelfish-2018-10-04/include/getopt/
H A Dgetopt.h43 cmdarg_handler handler; member in union:cmdarg::__anon81
/barrelfish-2018-10-04/lib/libc/rpc/
H A Dsvc_auth.c72 enum auth_stat (*handler)(struct svc_req *, struct rpc_msg *); member in struct:authsvc
137 as = (*asp->handler)(rqst, msg);
186 enum auth_stat (*handler)(struct svc_req *, struct rpc_msg *))
217 asp->handler = handler;
/barrelfish-2018-10-04/lib/devif/backends/net/mlx4/include/linux/
H A Dinterrupt.h50 irqreturn_t (*handler)(int, void *); member in struct:irq_ent
69 irqe->handler(irqe->irq, irqe->arg);
85 request_irq(unsigned int irq, irq_handler_t handler, unsigned long flags, argument
106 irqe->handler = handler;
/barrelfish-2018-10-04/lib/lwip2/src/core/
H A Dtimeouts.c129 /* call TCP timer handler */
170 cyclic->handler();
196 * @param handler callback function to call when msecs have elapsed
201 sys_timeout_debug(u32_t msecs, sys_timeout_handler handler, void *arg, const char* handler_name) argument
204 sys_timeout(u32_t msecs, sys_timeout_handler handler, void *arg)
225 timeout->h = handler;
230 LWIP_DEBUGF(TIMERS_DEBUG, ("sys_timeout: %p msecs=%"U32_F" handler=%s arg=%p\n",
269 * @param handler callback function that would be called by the timeout
270 * @param arg callback argument that would be passed to handler
273 sys_untimeout(sys_timeout_handler handler, voi argument
318 sys_timeout_handler handler; local
[all...]
/barrelfish-2018-10-04/lib/barrelfish/arch/x86/
H A Dipi_notify.c24 assert(uc->cont.handler != NULL);
25 uc->cont.handler(uc->cont.st, err, uc);
96 uc->closure.handler(uc->closure.arg);
100 * \brief Register an event handler to be notified when messages can be received
104 * with a single receive event handler on a single waitset at any one time.
108 * \param closure Event handler
115 .handler = ipi_notify_handler,
/barrelfish-2018-10-04/lib/pci/
H A Dpci_client.c56 interrupt_handler_fn handler,
64 if (handler != NULL && reloc_handler != NULL) {
66 err = inthandler_setup_movable(handler, handler_arg, reloc_handler,
73 } else if (handler != NULL) {
75 err = inthandler_setup(handler, handler_arg, &vector);
119 * It registers the handler passed as an argument as handler for the int destination
123 errval_t pci_setup_int_routing(int irq_idx, interrupt_handler_fn handler, argument
131 return pci_setup_int_routing_with_cap(irq_idx, irq_src_cap, handler,
144 * It registers the handler passe
53 pci_reregister_irq_for_device(uint32_t class, uint32_t subclass, uint32_t prog_if, uint32_t vendor, uint32_t device, uint32_t bus, uint32_t dev, uint32_t fun, interrupt_handler_fn handler, void *handler_arg, interrupt_handler_fn reloc_handler, void *reloc_handler_arg) argument
148 pci_setup_int_routing_with_cap(int irq_idx, struct capref irq_src_cap, interrupt_handler_fn handler, void *handler_arg, interrupt_handler_fn reloc_handler, void *reloc_handler_arg) argument
304 pci_register_driver_movable_irq(pci_driver_init_fn init_func, void *user_state, uint32_t class, uint32_t subclass, uint32_t prog_if, uint32_t vendor, uint32_t device, uint32_t bus, uint32_t dev, uint32_t fun, interrupt_handler_fn handler, void *handler_arg, interrupt_handler_fn reloc_handler, void *reloc_handler_arg) argument
391 pci_register_driver_irq(pci_driver_init_fn init_func, void *user_state, uint32_t class, uint32_t subclass, uint32_t prog_if, uint32_t vendor, uint32_t device, uint32_t bus, uint32_t dev, uint32_t fun, interrupt_handler_fn handler, void *handler_arg) argument
416 pci_register_legacy_driver_irq_cap(legacy_driver_init_fn init_func, uint16_t iomin, uint16_t iomax, int irq_cap_idx, interrupt_handler_fn handler, void *handler_arg) argument
460 pci_register_legacy_driver_irq(legacy_driver_init_fn init_func, uint16_t iomin, uint16_t iomax, int irq, interrupt_handler_fn handler, void *handler_arg) argument
507 pci_setup_inthandler(interrupt_handler_fn handler, void *handler_arg, uint8_t *ret_vector) argument
[all...]
/barrelfish-2018-10-04/lib/cxx/cxxabi/
H A Dcxa_handlers.cpp40 // unexpected handler should not return
69 // handler should not return
75 // handler should not throw exception
110 set_new_handler(new_handler handler) _NOEXCEPT
112 return __sync_swap(&__cxa_new_handler, handler);
114 // return __cxa_new_handler.exchange(handler, memory_order_acq_rel);

Completed in 218 milliseconds

12345678