HomeSort by relevance Sort by last modified time
    Searched defs:newact (Results 1 - 7 of 7) sorted by null

  /external/perfetto/src/base/
watchdog_unittest.cc 128 struct sigaction newact = {}; local
129 newact.sa_handler = SIGABRTHandler;
130 ASSERT_EQ(sigaction(SIGABRT, &newact, &oldact), 0);
unix_socket_unittest.cc 676 struct sigaction newact = {}; local
677 newact.sa_handler = Handler;
678 ASSERT_EQ(sigaction(SIGWINCH, &newact, &oldact), 0);
  /external/e2fsprogs/lib/support/
quotaio_tree.c 256 int newson = 0, newact = 0; local
272 newact = 1;
295 } else if (newact && ret < 0) {
  /external/f2fs-tools/fsck/
quotaio_tree.c 256 int newson = 0, newact = 0; local
272 newact = 1;
297 } else if (newact && ret < 0) {
  /external/linux-kselftest/tools/testing/selftests/x86/
mpx-mini-test.c 720 struct sigaction newact; local
726 newact.sa_handler = 0; /* void(*)(int)*/
727 newact.sa_sigaction = handler; /* void (*)(int, siginfo_t*, void *) */
731 rs = sigprocmask(SIG_SETMASK, 0, &newact.sa_mask);
735 newact.sa_flags = SA_SIGINFO;
737 newact.sa_restorer = 0; /* void(*)(), obsolete */
738 r = sigaction(signum, &newact, &oldact);
    [all...]
protection_keys.c 347 struct sigaction newact; local
353 newact.sa_handler = 0;
354 newact.sa_sigaction = signal_handler;
358 rs = sigprocmask(SIG_SETMASK, 0, &newact.sa_mask);
362 newact.sa_flags = SA_SIGINFO;
364 newact.sa_restorer = 0; /* void(*)(), obsolete */
365 r = sigaction(signum, &newact, &oldact);
366 r = sigaction(SIGALRM, &newact, &oldact);
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_interceptors.cc 1935 sigaction_t newact; local
    [all...]

Completed in 787 milliseconds