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

  /external/compiler-rt/test/msan/Linux/
syscalls_sigaction.cc 19 my_kernel_sigaction act = {}, oldact = {}; local
23 __sanitizer_syscall_pre_rt_sigaction(SIGUSR1, &act, &oldact, 20 * 8);
26 __sanitizer_syscall_pre_rt_sigaction(SIGUSR1, &act, &oldact, 20 * 8);
29 __sanitizer_syscall_pre_rt_sigaction(SIGUSR1, &act, &oldact, 20 * 8);
33 __sanitizer_syscall_pre_rt_sigaction(SIGUSR1, &act, &oldact, 5);
36 __msan_poison(&oldact, sizeof(oldact));
37 __sanitizer_syscall_post_rt_sigaction(0, SIGUSR1, &act, &oldact, 5);
38 assert(__msan_test_shadow(&oldact, sizeof(oldact)) == sizeof(long)*3 + 5)
    [all...]
  /system/core/libmemunreachable/
ScopedAlarm.h 32 struct sigaction oldact {}; struct
35 sigaction(SIGALRM, &act, &oldact);
  /cts/tests/tests/os/jni/
android_os_cts_TaggedPointer.cpp 43 struct sigaction oldact; local
52 err = sigaction(SIGSEGV, &sigsegv_act, &oldact);
68 sigaction(SIGSEGV, &oldact, NULL);
android_os_cts_CpuInstructions.cpp 39 struct sigaction oldact; local
46 err = sigaction(SIGILL, &sigill_act, &oldact);
60 sigaction(SIGILL, &oldact, NULL);
  /external/libchrome/base/posix/
unix_domain_socket_linux_unittest.cc 64 struct sigaction act = {}, oldact; local
66 ASSERT_EQ(0, sigaction(SIGPIPE, &act, &oldact));
80 ASSERT_EQ(0, sigaction(SIGPIPE, &oldact, NULL));
  /prebuilts/go/darwin-x86/src/runtime/cgo/
gcc_sigaction.c 35 struct sigaction oldact; local
41 memset(&oldact, 0, sizeof oldact);
58 ret = sigaction(signum, goact ? &act : NULL, oldgoact ? &oldact : NULL);
66 if (oldact.sa_flags & SA_SIGINFO) {
67 oldgoact->handler = (uintptr_t)(oldact.sa_sigaction);
69 oldgoact->handler = (uintptr_t)(oldact.sa_handler);
73 if (sigismember(&oldact.sa_mask, i+1) == 1) {
77 oldgoact->flags = oldact.sa_flags;
  /prebuilts/go/linux-x86/src/runtime/cgo/
gcc_sigaction.c 35 struct sigaction oldact; local
41 memset(&oldact, 0, sizeof oldact);
58 ret = sigaction(signum, goact ? &act : NULL, oldgoact ? &oldact : NULL);
66 if (oldact.sa_flags & SA_SIGINFO) {
67 oldgoact->handler = (uintptr_t)(oldact.sa_sigaction);
69 oldgoact->handler = (uintptr_t)(oldact.sa_handler);
73 if (sigismember(&oldact.sa_mask, i+1) == 1) {
77 oldgoact->flags = oldact.sa_flags;
  /system/core/libbacktrace/
BacktraceCurrent.cpp 157 struct sigaction act, oldact; local
162 if (sigaction(THREAD_SIGNAL, &act, &oldact) != 0) {
179 sigaction(THREAD_SIGNAL, &oldact, nullptr);
189 if (!wait_completed && oldact.sa_sigaction == nullptr) {
200 sigaction(THREAD_SIGNAL, &oldact, nullptr);
  /system/core/libunwindstack/tests/
UnwindTest.cpp 224 struct sigaction act, oldact; local
228 ASSERT_EQ(0, sigaction(SIGUSR1, &act, &oldact));
257 ASSERT_EQ(0, sigaction(SIGUSR1, &oldact, nullptr));
266 struct sigaction act, oldact; local
270 ASSERT_EQ(0, sigaction(signal, &act, &oldact));
  /external/linux-kselftest/tools/testing/selftests/x86/
mpx-mini-test.c 690 struct sigaction oldact; local
707 r = sigaction(signum, &newact, &oldact);
    [all...]
protection_keys.c 350 struct sigaction oldact; local
367 r = sigaction(signum, &newact, &oldact);
368 r = sigaction(SIGALRM, &newact, &oldact);
    [all...]
  /external/ppp/pppd/
main.c 1433 struct sigaction act, oldact; local
    [all...]
  /external/compiler-rt/lib/msan/tests/
msan_test.cc 2306 struct sigaction oldact = {}; local
    [all...]

Completed in 473 milliseconds