Lines Matching defs:handler
252 * Locale coercion also impacts the default error handler for the standard
2637 // This function is called by a signal handler in faulthandler: avoid memory
2655 // memory cannot be allocated on the heap in a signal handler.
2993 PyOS_sighandler_t handler;
3011 handler = signal(sig, SIG_IGN);
3012 if (handler != SIG_ERR)
3013 signal(sig, handler);
3014 return handler;
3024 PyOS_setsig(int sig, PyOS_sighandler_t handler)
3032 context.sa_handler = handler;
3043 oldhandler = signal(sig, handler);