Lines Matching defs:handler
40 * signal_to_eh[] is pretty much useless, since the event handler is
43 * need some way to get back our event handler in post_signal(),
51 * iu_eh_create(): creates, initializes, and returns an event handler for use
54 * output: iu_eh_t *: the new event handler
85 * iu_eh_destroy(): destroys an existing event handler
87 * input: iu_eh_t *: the event handler to destroy
108 * iu_stop_handling_events(): informs the event handler to stop handling events
110 * input: iu_eh_t *: the event handler to stop.
113 * the event handler will stop right away;
114 * otherwise, the event handler will not
118 * notes: the event handler in question must be in iu_handle_events()
133 * handler
135 * input: iu_eh_t *: the event handler whose descriptor set needs to be grown
187 * iu_register_event(): adds an event to the set managed by an event handler
189 * input: iu_eh_t *: the event handler to add the event to
231 * handler
233 * input: iu_eh_t *: the event handler to remove the event from
263 * iu_handle_events(): begins handling events on an event handler
265 * input: iu_eh_t *: the event handler to begin event handling on
373 * iu_eh_register_signal(): registers a signal handler with an event handler
375 * input: iu_eh_t *: the event handler to register the signal handler with
377 * iu_eh_sighandler_t *: the signal handler to call back
378 * void *: the argument to pass to the signal handler function
383 iu_eh_register_signal(iu_eh_t *eh, int sig, iu_eh_sighandler_t *handler,
402 eh->iueh_sig_info[sig].iues_handler = handler;
410 * iu_eh_unregister_signal(): unregisters a signal handler from an event handler
412 * input: iu_eh_t *: the event handler to unregister the signal handler from