Home
last modified time | relevance | path

Searched refs:SIG_IGN (Results 1 – 12 of 12) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
Dintrcheck.c150 if ((old_siginthandler = PyOS_setsig(SIGINT, SIG_IGN)) != SIG_IGN) in PyOS_InitInterrupts()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/subprocessdata/
Dsigchild_ignore.py5 signal.signal(signal.SIGCHLD, signal.SIG_IGN)
/device/linaro/bootloader/edk2/StdLib/Include/
Dsignal.h42 #define SIG_IGN ((__sighandler_t *) 0) macro
/device/linaro/bootloader/edk2/StdLib/LibC/Signal/
DSignal.c89 else if( Handler != SIG_IGN) { in raise()
/device/google/dragon/crash_collector/
Dcrash_dispatcher.cc39 signal(SIGPIPE, SIG_IGN); in main()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dsignalmodule.c306 func = SIG_IGN; in signal_signal()
586 x = IgnoreHandler = PyLong_FromVoidPtr((void *)SIG_IGN); in initsignal()
607 else if (t == SIG_IGN) in initsignal()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
Dsignalmodule.c306 func = SIG_IGN; in signal_signal()
594 x = IgnoreHandler = PyLong_FromVoidPtr((void *)SIG_IGN); in initsignal()
615 else if (t == SIG_IGN) in initsignal()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_largefile.py20 oldhandler = signal.signal(signal.SIGXFSZ, signal.SIG_IGN)
Dtest_signal.py82 signal.signal(signal.SIGUSR2, signal.SIG_IGN)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dpythonrun.c1762 PyOS_setsig(SIGPIPE, SIG_IGN); in initsigs()
1765 PyOS_setsig(SIGXFZ, SIG_IGN); in initsigs()
1768 PyOS_setsig(SIGXFSZ, SIG_IGN); in initsigs()
1860 handler = signal(sig, SIG_IGN); in PyOS_getsig()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Dpythonrun.c1787 PyOS_setsig(SIGPIPE, SIG_IGN); in initsigs()
1790 PyOS_setsig(SIGXFZ, SIG_IGN); in initsigs()
1793 PyOS_setsig(SIGXFSZ, SIG_IGN); in initsigs()
1885 handler = signal(sig, SIG_IGN); in PyOS_getsig()
/device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
Dres_send.c702 sa.sa_handler = SIG_IGN; in res_send()