Home
last modified time | relevance | path

Searched refs:SIGINT (Results 1 – 18 of 18) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/unittest/test/
Dtest_break.py20 self._default_handler = signal.getsignal(signal.SIGINT)
23 signal.signal(signal.SIGINT, self._default_handler)
29 default_handler = signal.getsignal(signal.SIGINT)
31 self.assertNotEqual(signal.getsignal(signal.SIGINT), default_handler)
35 os.kill(pid, signal.SIGINT)
55 default_handler = signal.getsignal(signal.SIGINT)
61 self.assertNotEqual(signal.getsignal(signal.SIGINT), default_handler)
65 os.kill(pid, signal.SIGINT)
83 os.kill(pid, signal.SIGINT)
86 os.kill(pid, signal.SIGINT)
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/unittest/
Dsignals.py15 installed_handler = signal.getsignal(signal.SIGINT)
38 default_handler = signal.getsignal(signal.SIGINT)
40 signal.signal(signal.SIGINT, _interrupt_handler)
47 initial = signal.getsignal(signal.SIGINT)
52 signal.signal(signal.SIGINT, initial)
57 signal.signal(signal.SIGINT, _interrupt_handler.default_handler)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
Dintrcheck.c141 PyOS_setsig(SIGINT, intcatcher); in intcatcher()
150 if ((old_siginthandler = PyOS_setsig(SIGINT, SIG_IGN)) != SIG_IGN) in PyOS_InitInterrupts()
151 PyOS_setsig(SIGINT, intcatcher); in PyOS_InitInterrupts()
157 PyOS_setsig(SIGINT, old_siginthandler); in PyOS_FiniInterrupts()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
Dsignalmodule.c285 case SIGINT: break; in signal_signal()
621 if (Handlers[SIGINT].func == DefaultHandler) { in initsignal()
624 Py_DECREF(Handlers[SIGINT].func); in initsignal()
625 Handlers[SIGINT].func = IntHandler; in initsignal()
626 old_siginthandler = PyOS_setsig(SIGINT, signal_handler); in initsignal()
634 #ifdef SIGINT in initsignal()
635 x = PyInt_FromLong(SIGINT); in initsignal()
869 PyOS_setsig(SIGINT, old_siginthandler); in finisignal()
876 if (i != SIGINT && func != NULL && func != Py_None && in finisignal()
953 trip_signal(SIGINT); in PyErr_SetInterrupt()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dsignalmodule.c285 case SIGINT: break; in signal_signal()
613 if (Handlers[SIGINT].func == DefaultHandler) { in initsignal()
616 Py_DECREF(Handlers[SIGINT].func); in initsignal()
617 Handlers[SIGINT].func = IntHandler; in initsignal()
618 old_siginthandler = PyOS_setsig(SIGINT, signal_handler); in initsignal()
626 #ifdef SIGINT in initsignal()
627 x = PyInt_FromLong(SIGINT); in initsignal()
861 PyOS_setsig(SIGINT, old_siginthandler); in finisignal()
868 if (i != SIGINT && func != NULL && func != Py_None && in finisignal()
945 trip_signal(SIGINT); in PyErr_SetInterrupt()
[all …]
Dreadline.c1014 old_inthandler = PyOS_setsig(SIGINT, onintr); in readline_until_enter_or_signal()
1018 sigrelse(SIGINT); in readline_until_enter_or_signal()
1020 PyOS_setsig(SIGINT, old_inthandler); in readline_until_enter_or_signal()
1026 PyOS_setsig(SIGINT, old_inthandler); in readline_until_enter_or_signal()
/device/linaro/bootloader/edk2/StdLib/Include/
Dsignal.h53 #define SIGINT __SigInt ///< receipt of an interactive attention signal macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
Dlua.c178 signal(SIGINT, laction); in docall()
180 signal(SIGINT, SIG_DFL); in docall()
/device/generic/car/emulator/audio/driver/
Dext_pcm.c155 pthread_kill(ext_pcm->mixer_thread, SIGINT); in ext_pcm_close()
/device/google/contexthub/util/nanoapp_cmd/
Dnanoapp_cmd.c199 assert(sig == SIGINT); in sig_handle()
618 signal(SIGINT, sig_handle); in main()
/device/linaro/hikey/hifi/xaf/host-apf/playback/
Dxa_playback.c341 signal(SIGINT, stream_close);
/device/google/contexthub/contexthubhal/test/
Dmain.cpp320 signal(SIGINT, sigint_handler); in main()
/device/google/contexthub/util/nanotool/
Dnanotool.cpp407 sigaction(SIGINT, &sa, NULL); in SetHandlers()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_signal.py218 signal.SIGILL, signal.SIGINT, signal.SIGSEGV,
Dtest_os.py781 os.kill(proc.pid, signal.SIGINT)
Dtest_subprocess.py783 p = self._kill_process('send_signal', signal.SIGINT)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Dpythonrun.c1872 case SIGINT: in PyOS_getsig()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dpythonrun.c1847 case SIGINT: in PyOS_getsig()