HomeSort by relevance Sort by last modified time
    Searched refs:SIG_IGN (Results 226 - 250 of 383) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/native/cmds/cmd/
cmd.cpp 123 signal(SIGPIPE, SIG_IGN);
  /system/core/adb/daemon/
main.cpp 153 signal(SIGPIPE, SIG_IGN);
  /system/core/adb/
shell_service_protocol_test.cpp 31 saved_sigpipe_handler_ = signal(SIGPIPE, SIG_IGN);
  /system/core/init/
ueventd.cpp 273 signal(SIGCHLD, SIG_IGN);
274 // Reap and pending children that exited between the last call to waitpid() and setting SIG_IGN
  /external/ltp/testcases/kernel/syscalls/kill/
kill02.c 711 if (signal(SIGUSR1, SIG_IGN) == SIG_ERR) {
713 "signal(SIGUSR1, SIG_IGN) failed");
716 if (signal(SIGCHLD, SIG_IGN) == SIG_ERR) {
718 "signal(SIGCHLD, SIG_IGN) failed");
  /external/ltp/testcases/network/stress/ns-tools/
ns-tcpserver.c 133 /* Set SIG_IGN against the caught signal */
134 handler.sa_handler = SIG_IGN;
629 handler.sa_handler = SIG_IGN;
ns-igmp_querier.c 130 handler.sa_handler = SIG_IGN;
ns-mcast_join.c 148 handler.sa_handler = SIG_IGN;
ns-mcast_receiver.c 130 handler.sa_handler = SIG_IGN;
  /external/mksh/src/
histrap.c 1065 Sigact_ign.sa_handler = SIG_IGN;
1300 /* SIG_IGN */
1360 setsig(p, (p->flags & TF_EXEC_IGN) ? SIG_IGN : SIG_DFL,
1375 f = !s ? SIG_DFL : s[0] ? trapsig : SIG_IGN;
1384 if (f == SIG_IGN)
1392 * (normally trapsig, but could be j_sigchld() or SIG_IGN)
1412 setsig(p, SIG_IGN, SS_RESTORE_CURR);
1416 setsig(p, SIG_IGN, SS_RESTORE_CURR);
1432 * action was SIG_IGN, depending on the value of flags and FTALKING.
1450 p->flags |= sigact.sa_handler == SIG_IGN
    [all...]
jobs.c 199 setsig(&sigtraps[tt_sigs[i]], SIG_IGN,
364 setsig(&sigtraps[tt_sigs[i]], SIG_IGN,
391 setsig(&sigtraps[tt_sigs[i]], SIG_IGN,
399 SIG_IGN : SIG_DFL,
575 setsig(&sigtraps[SIGINT], SIG_IGN,
577 setsig(&sigtraps[SIGQUIT], SIG_IGN,
    [all...]
  /external/openssh/
clientloop.c 916 handler = signal(SIGINT, SIG_IGN);
    [all...]
  /bionic/tests/
signal_test.cpp 446 EXPECT_EQ(SIG_IGN, sa.sa_handler);
518 ASSERT_EQ(sigalrm_handler, sigset(SIGALRM, SIG_IGN));
522 ASSERT_EQ(SIG_IGN, sigset(SIGALRM, SIG_DFL));
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
signalmodule.c 306 func = SIG_IGN;
311 "signal handler must be signal.SIG_IGN, signal.SIG_DFL, or a callable object");
334 SIG_IGN, or a callable Python object. The previous action is\n\
368 SIG_IGN -- if the signal is being ignored\n\
551 SIG_IGN -- used to ignore the signal\n\
594 x = IgnoreHandler = PyLong_FromVoidPtr((void *)SIG_IGN);
595 if (!x || PyDict_SetItemString(d, "SIG_IGN", x) < 0)
615 else if (t == SIG_IGN)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
signalmodule.c 306 func = SIG_IGN;
311 "signal handler must be signal.SIG_IGN, signal.SIG_DFL, or a callable object");
331 SIG_IGN, or a callable Python object. The previous action is\n\
360 SIG_IGN -- if the signal is being ignored\n\
543 SIG_IGN -- used to ignore the signal\n\
586 x = IgnoreHandler = PyLong_FromVoidPtr((void *)SIG_IGN);
587 if (!x || PyDict_SetItemString(d, "SIG_IGN", x) < 0)
607 else if (t == SIG_IGN)
  /external/python/cpython2/Modules/
signalmodule.c 306 func = SIG_IGN;
311 "signal handler must be signal.SIG_IGN, signal.SIG_DFL, or a callable object");
334 SIG_IGN, or a callable Python object. The previous action is\n\
368 SIG_IGN -- if the signal is being ignored\n\
551 SIG_IGN -- used to ignore the signal\n\
594 x = IgnoreHandler = PyLong_FromVoidPtr((void *)SIG_IGN);
595 if (!x || PyDict_SetItemString(d, "SIG_IGN", x) < 0)
615 else if (t == SIG_IGN)
  /tools/repohooks/rh/
utils.py 178 signal.signal(signum, signal.SIG_IGN)
397 handler = signal.SIG_IGN
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_largefile.py 20 oldhandler = signal.signal(signal.SIGXFSZ, signal.SIG_IGN)
  /external/ipsec-tools/
main.c 173 signal(SIGPIPE, SIG_IGN);
  /external/ltp/testcases/kernel/syscalls/fanotify/
fanotify03.c 132 child_action.sa_handler = SIG_IGN;
  /external/ltp/testcases/kernel/syscalls/getrusage/
getrusage03.c 60 static void sig_ign(void);
87 sig_ign();
257 /* Testcase #06: SIG_IGN
259 static void sig_ign(void) function
261 tst_resm(TINFO, "Testcase #06: SIG_IGN");
265 signal(SIGCHLD, SIG_IGN);
  /external/ltp/testcases/kernel/syscalls/ioctl/
ioctl02.c 463 act.sa_handler = SIG_IGN;
  /external/ltp/testcases/kernel/syscalls/mkdir/
mkdir09.c 194 if (signal(SIGTERM, SIG_IGN) == SIG_ERR) {
  /external/ltp/testcases/kernel/syscalls/recv/
recv01.c 167 (void)signal(SIGPIPE, SIG_IGN);
  /external/ltp/testcases/kernel/syscalls/send/
send01.c 304 signal(SIGPIPE, SIG_IGN);

Completed in 694 milliseconds

1 2 3 4 5 6 7 8 91011>>