HomeSort by relevance Sort by last modified time
    Searched refs:SIG_IGN (Results 151 - 175 of 257) sorted by null

1 2 3 4 5 67 8 91011

  /bionic/libc/bionic/
signal.cpp 150 struct sigaction64 sa = { .sa_handler = SIG_IGN };
spawn.cpp 111 reset = (current.sa_handler != SIG_IGN && current.sa_handler != SIG_DFL);
  /bootable/recovery/install/
adb_install.cpp 277 signal(SIGPIPE, SIG_IGN);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
pythonrun.c     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
pythonrun.c     [all...]
  /device/linaro/hikey/hifi/xaf/host-apf/playback/
xa_playback.c 81 signal(sig, SIG_IGN);
  /external/dnsmasq/src/
helper.c 71 sigact.sa_handler = SIG_IGN;
  /external/e2fsprogs/debugfs/
util.c 86 signal(SIGPIPE, SIG_IGN);
  /external/iperf3/src/
iperf_util.c 441 signal(SIGHUP, SIG_IGN);
  /external/libevent/sample/
http-server.c 341 if (signal(SIGPIPE, SIG_IGN) == SIG_ERR)
  /external/ltp/testcases/kernel/fs/read_all/
read_all.c 237 .sa_handler = SIG_IGN,
  /external/ltp/testcases/kernel/syscalls/sendto/
sendto01.c 375 signal(SIGPIPE, SIG_IGN);
  /external/protobuf/src/google/protobuf/compiler/
subprocess.cc 358 SignalHandler* old_pipe_handler = signal(SIGPIPE, SIG_IGN);
  /external/python/cpython2/Python/
pythonrun.c     [all...]
  /external/python/cpython3/Python/
pylifecycle.c     [all...]
  /external/tensorflow/tensorflow/core/platform/posix/
subprocess.cc 362 act.sa_handler = SIG_IGN;
  /external/toybox/toys/pending/
getty.c 125 sighandler_t sig = signal(SIGHUP, SIG_IGN);
  /external/v8/src/base/debug/
stack_trace_posix.cc 334 sigpipe_action.sa_handler = SIG_IGN;
  /bionic/tests/
signal_test.cpp 848 EXPECT_EQ(SIG_IGN, sa.sa_handler);
957 ASSERT_EQ(signal_handler, sigset(SIGALRM, SIG_IGN));
961 ASSERT_EQ(SIG_IGN, sigset(SIGALRM, SIG_DFL));
  /external/curl/tests/server/
rtspd.c 266 old_sighup_handler = signal(SIGHUP, SIG_IGN);
272 old_sigpipe_handler = signal(SIGPIPE, SIG_IGN);
278 old_sigalrm_handler = signal(SIGALRM, SIG_IGN);
    [all...]
sockfilt.c 212 old_sighup_handler = signal(SIGHUP, SIG_IGN);
218 old_sigpipe_handler = signal(SIGPIPE, SIG_IGN);
224 old_sigalrm_handler = signal(SIGALRM, SIG_IGN);
    [all...]
  /external/minijail/
libminijail_unittest.cc 560 ASSERT_EQ(SIG_DFL, signal(SIGUSR1, SIG_IGN));
561 ASSERT_EQ(SIG_IGN, signal(SIGUSR1, SIG_IGN));
  /external/python/cpython3/Modules/
signalmodule.c 393 The action can be SIG_DFL, SIG_IGN, or a callable Python object.
437 func = SIG_IGN;
442 "signal handler must be signal.SIG_IGN, signal.SIG_DFL, or a callable object");
474 SIG_IGN -- if the signal is being ignored
1180 SIG_IGN -- used to ignore the signal\n\
1243 x = IgnoreHandler = PyLong_FromVoidPtr((void *)SIG_IGN)
    [all...]
  /external/u-boot/common/
cli_hush.c     [all...]
  /art/sigchainlib/
sigchain.cc 327 if (handler == SIG_IGN) {

Completed in 838 milliseconds

1 2 3 4 5 67 8 91011