Searched refs:SIGINT (Results 1 - 25 of 191) sorted by relevance

12345678

/external/vixl/src/vixl/
H A Dplatform.h34 inline void HostBreakpoint() { raise(SIGINT); }
/external/clang/utils/TestUtils/
H A Dpch-test.pl28 } elsif (($code & 0xFF) == SIGINT) {
36 } elsif (($code & 0xFF) == SIGINT) {
43 } elsif (($code & 0xFF) == SIGINT) {
/external/chromium-trace/catapult/devil/devil/android/
H A Ddevice_signal.py12 SIGINT = 2 # Interrupt variable
/external/selinux/libsepol/cil/test/unit/
H A Dtest_integration.c45 if (WIFSIGNALED(status) && (WTERMSIG(status) == SIGINT || WTERMSIG(status) == SIGQUIT))
50 if (WIFSIGNALED(status1) && (WTERMSIG(status1) == SIGINT || WTERMSIG(status1) == SIGQUIT))
55 if (WIFSIGNALED(status2) && (WTERMSIG(status2) == SIGINT || WTERMSIG(status2) == SIGQUIT))
71 if (WIFSIGNALED(status) && (WTERMSIG(status) == SIGINT || WTERMSIG(status) == SIGQUIT))
/external/libcxx/test/std/depr/depr.c.headers/
H A Dsignal_h.pass.cpp39 #ifndef SIGINT
40 #error SIGINT not defined
/external/libcxx/test/std/language.support/support.runtime/
H A Dcsignal.pass.cpp39 #ifndef SIGINT
40 #error SIGINT not defined
/external/libmicrohttpd/src/testzzuf/
H A Dsocat.c106 if (0 != killpg (zzuf_pid, SIGINT))
108 kill (zzuf_pid, SIGINT);
/external/e2fsprogs/lib/ss/
H A Dlist_rqs.c43 sigaddset(&igmask, SIGINT);
45 func = signal(SIGINT, SIG_IGN);
49 (void) signal(SIGINT, func);
89 (void) signal(SIGINT, func);
H A Dlisten.c44 signal(SIGINT, listen_int_handler);
64 sigaddset(&igmask, SIGINT);
67 sig_int = signal(SIGINT, listen_int_handler);
123 (void) signal(SIGINT, sig_int);
H A Dpager.c73 * handle SIGINT sensibly
139 (void) signal(SIGINT, SIG_DFL);
141 sigdelset(&mask, SIGINT);
/external/libedit/src/
H A Dsig.h52 _DO(SIGINT) \
/external/avahi/avahi-utils/
H A Dsigint.c78 fprintf(stderr, "Got %s, quitting.\n", s == SIGINT ? "SIGINT" : "SIGTERM");
102 if (sigaction(SIGINT, &sa, &old_sigint_sa) < 0) {
109 sigaction(SIGINT, &old_sigint_sa, NULL);
129 sigaction(SIGINT, &old_sigint_sa, NULL);
/external/valgrind/memcheck/tests/solaris/
H A Ddoor_kill.c69 if (sigaction(SIGINT, &sa, NULL)) {
86 if (_lwp_kill(server_lwpid, SIGINT)) {
/external/valgrind/none/tests/solaris/
H A Dsigresend.c38 /* Establish a SIGINT handler. */
45 if (sigaction(SIGINT, &sa, NULL)) {
59 if (syscall(SYS_sigresend, SIGINT, NULL, &block)) {
/external/autotest/client/profilers/custom_perf/
H A Dcustom_perf.py41 os.killpg(os.getpgid(self._process.pid), signal.SIGINT)
/external/autotest/client/site_tests/security_ptraceRestrictions/src/
H A Dsleeper.c35 /* Without arguments, send a SIGINT to ourself so that gdb can
38 kill(getpid(), SIGINT); local
/external/chromium-trace/catapult/third_party/gsutil/gslib/
H A Dsig_handling.py94 signals = [signal.SIGINT, signal.SIGTERM]
/external/toybox/toys/posix/
H A Dtee.c19 -i ignore SIGINT.
48 if (toys.optflags & FLAG_i) xsignal(SIGINT, SIG_IGN);
/external/cmockery/cmockery_0_1_2/packages/
H A Ddeb.sh40 trap 'rm -rf '`pwd`/tmp'; exit $?' EXIT SIGHUP SIGINT SIGTERM
H A Drpm.sh42 trap 'rm -rf $RPM_SOURCE_DIR $RPM_BUILD_DIR; exit $?' EXIT SIGHUP SIGINT SIGTERM
/external/bison/lib/
H A Dfatal-signal.c54 #ifdef SIGINT
55 SIGINT,
/external/libdaemon/examples/
H A Dtestd.c123 if (daemon_signal_init(SIGINT, SIGTERM, SIGQUIT, SIGHUP, 0) < 0) {
169 case SIGINT:
172 daemon_log(LOG_WARNING, "Got SIGINT, SIGQUIT or SIGTERM.");
/external/ltrace/
H A Dlibltrace.c44 int exiting = 0; /* =1 if a SIGINT or SIGTERM has been received */
86 signal(SIGINT, SIG_IGN);
111 signal(SIGINT, signal_exit); /* Detach processes when interrupted */
/external/squashfs-tools/squashfs-tools/
H A Drestore.c65 sigaddset(&sigmask, SIGINT);
73 if((sig == SIGINT || sig == SIGTERM) && !interrupted) {
/external/v8/tools/testrunner/server/
H A Ddaemon.py14 from signal import SIGINT namespace
122 os.kill(pid, SIGINT)

Completed in 664 milliseconds

12345678