Lines Matching refs:handler
554 * to have our own handler to map the MIPS signal number to a
642 * Calling sigaction() with a bogus signal handler doesn't fail,
647 ALOGE("%s: HINT: ... when the signal handler is called!", __func__);
707 * We have a usable signal number, redirect it to our signal handler
708 * if a portable handler was provided so we can convert the signal number.
709 * Save our current mapped signal handler for likely return.
736 sighandler_portable_t WRAP(signal)(int portable_signum, sighandler_portable_t handler)
741 ALOGV("%s(portable_signum:%d, handler:%p) {", __func__,
742 portable_signum, handler);
745 rv = do_signal_portable(portable_signum, handler, bsd_signal);
752 sighandler_portable_t WRAP(sysv_signal)(int portable_signum, sighandler_portable_t handler)
757 ALOGV("%s(portable_signum:%d, handler:%p) {", __func__,
758 portable_signum, handler);
761 rv = do_signal_portable(portable_signum, handler, sysv_signal);
770 * handler is either the Bionic
771 * bsd_signal() signal handler
773 * the sysv_signal() signal handler.
776 sighandler_portable_t WRAP(bsd_signal)(int portable_signum, sighandler_portable_t handler)
781 ALOGV("%s(portable_signum:%d, handler:%p) {", __func__,
782 portable_signum, handler);
785 rv = do_signal_portable(portable_signum, handler, bsd_signal);
1076 * a table of signal handlers that our intercepting handler can call after it converts the signal
1118 * Also the handler will be called with a pointer to a to a sigcontext structure
1128 * Providing the three argument version of a signal handler.
1146 * Providing the classic single argument version of a signal handler.