Home
last modified time | relevance | path

Searched refs:PyOS_sighandler_t (Results 1 – 15 of 15) sorted by relevance

/external/python/cpython2/Include/
Dpythonrun.h171 typedef void (*PyOS_sighandler_t)(int); typedef
172 PyAPI_FUNC(PyOS_sighandler_t) PyOS_getsig(int);
173 PyAPI_FUNC(PyOS_sighandler_t) PyOS_setsig(int, PyOS_sighandler_t);
/external/python/cpython3/Include/
Dpylifecycle.h216 typedef void (*PyOS_sighandler_t)(int); typedef
217 PyAPI_FUNC(PyOS_sighandler_t) PyOS_getsig(int);
218 PyAPI_FUNC(PyOS_sighandler_t) PyOS_setsig(int, PyOS_sighandler_t);
/external/python/cpython2/Doc/c-api/
Dsys.rst35 .. c:function:: PyOS_sighandler_t PyOS_getsig(int i)
39 directly! :c:type:`PyOS_sighandler_t` is a typedef alias for :c:type:`void
43 .. c:function:: PyOS_sighandler_t PyOS_setsig(int i, PyOS_sighandler_t h)
47 not call those functions directly! :c:type:`PyOS_sighandler_t` is a typedef
/external/python/cpython3/Doc/c-api/
Dsys.rst86 .. c:function:: PyOS_sighandler_t PyOS_getsig(int i)
90 directly! :c:type:`PyOS_sighandler_t` is a typedef alias for :c:type:`void
94 .. c:function:: PyOS_sighandler_t PyOS_setsig(int i, PyOS_sighandler_t h)
98 not call those functions directly! :c:type:`PyOS_sighandler_t` is a typedef
/external/python/cpython3/Python/
Dpylifecycle.c2347 PyOS_sighandler_t
2356 PyOS_sighandler_t handler; in PyOS_getsig()
2386 PyOS_sighandler_t
2387 PyOS_setsig(int sig, PyOS_sighandler_t handler) in PyOS_setsig()
2402 PyOS_sighandler_t oldhandler; in PyOS_setsig()
/external/python/cpython2/Python/
Dpythonrun.c1875 PyOS_sighandler_t
1884 PyOS_sighandler_t handler; in PyOS_getsig()
1909 PyOS_sighandler_t
1910 PyOS_setsig(int sig, PyOS_sighandler_t handler) in PyOS_setsig()
1925 PyOS_sighandler_t oldhandler; in PyOS_setsig()
/external/python/cpython2/Modules/
Dreadline.c825 static PyOS_sighandler_t sigwinch_ohandler;
1096 PyOS_sighandler_t old_inthandler; in readline_until_enter_or_signal()
Dsignalmodule.c27 #define SIG_ERR ((PyOS_sighandler_t)(-1))
Dposixmodule.c3955 PyOS_sighandler_t sig_saved; in posix_openpty()
/external/python/cpython3/Modules/
Dsignalmodule.c40 #define SIG_ERR ((PyOS_sighandler_t)(-1))
Dreadline.c966 static PyOS_sighandler_t sigwinch_ohandler;
Dfaulthandler.c39 typedef PyOS_sighandler_t _Py_sighandler_t;
Dposixmodule.c5944 PyOS_sighandler_t sig_saved; in os_openpty_impl()
/external/python/cpython2/Misc/
DHISTORY8710 PyOS_sighandler_t is defined for the type of signal handlers.
/external/python/cpython3/Misc/
DHISTORY26089 PyOS_sighandler_t is defined for the type of signal handlers.