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

  /system/core/libmemunreachable/
ScopedAlarm.h 30 struct sigaction oldact{}; struct
35 sigaction(SIGALRM, &act, &oldact);
  /cts/tests/tests/os/jni/
android_os_cts_CpuInstructions.cpp 39 struct sigaction oldact; local
46 err = sigaction(SIGILL, &sigill_act, &oldact);
60 sigaction(SIGILL, &oldact, NULL);
android_os_cts_TaggedPointer.cpp 44 struct sigaction oldact; local
53 err = sigaction(SIGSEGV, &sigsegv_act, &oldact);
69 sigaction(SIGSEGV, &oldact, NULL);
  /external/libchrome/sandbox/linux/services/
syscall_wrappers.cc 160 struct sigaction* oldact) {
161 return sigaction(signum, act, oldact);
221 struct sigaction* oldact) {
246 oldact ? &linux_oldact : nullptr,
249 if (result == 0 && oldact) {
250 oldact->sa_handler = linux_oldact.kernel_handler;
251 sigemptyset(&oldact->sa_mask);
252 std::memcpy(&oldact->sa_mask, &linux_oldact.sa_mask,
254 oldact->sa_flags = linux_oldact.sa_flags;
syscall_wrappers.h 81 struct sigaction* oldact);
  /system/core/libbacktrace/
BacktraceCurrent.cpp 136 struct sigaction act, oldact; local
141 if (sigaction(THREAD_SIGNAL, &act, &oldact) != 0) {
158 sigaction(THREAD_SIGNAL, &oldact, nullptr);
168 if (!wait_completed && oldact.sa_sigaction == nullptr) {
179 sigaction(THREAD_SIGNAL, &oldact, nullptr);
  /external/libchrome/base/posix/
unix_domain_socket_linux_unittest.cc 63 struct sigaction act = {}, oldact; local
65 ASSERT_EQ(0, sigaction(SIGPIPE, &act, &oldact));
79 ASSERT_EQ(0, sigaction(SIGPIPE, &oldact, NULL));
  /external/compiler-rt/lib/asan/
asan_interceptors.h 93 struct sigaction *oldact)
asan_interceptors.cc 289 struct sigaction *oldact) {
291 return REAL(sigaction)(signum, act, oldact);
297 int real_sigaction(int signum, const void *act, void *oldact) {
299 (struct sigaction *)oldact);
306 struct sigaction *oldact)
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_linux.h 45 int internal_sigaction_norestorer(int signum, const void *act, void *oldact);
sanitizer_posix.h 80 int internal_sigaction(int signum, const void *act, void *oldact);
sanitizer_linux_libcdep.cc 66 real_sigaction(int signum, const void *act, void *oldact);
68 int internal_sigaction(int signum, const void *act, void *oldact) {
71 return real_sigaction(signum, act, oldact);
74 (struct sigaction *)oldact);
sanitizer_mac.cc 156 int internal_sigaction(int signum, const void *act, void *oldact) {
158 (struct sigaction *)act, (struct sigaction *)oldact);
sanitizer_linux.cc 568 int internal_sigaction_norestorer(int signum, const void *act, void *oldact) {
573 __sanitizer_sigaction *u_oldact = (__sanitizer_sigaction *)oldact;
588 // oldact->sa_restorer upon a call to sigaction(xxx, NULL, oldact).
    [all...]
  /external/valgrind/coregrind/
pub_core_libcsignal.h 68 vki_sigaction_fromK_t* oldact );
m_libcsignal.c 262 vki_sigaction_fromK_t* oldact)
268 signum, (UWord)act, (UWord)oldact,
300 real_oldact = oldact ? &oldactCopy.oa : NULL;
313 *oldact = *real_oldact;
320 signum, (UWord)act, (UWord)oldact);
  /external/compiler-rt/test/dfsan/
custom.cc 612 struct sigaction oldact;
613 dfsan_set_label(j_label, &oldact, 1);
614 int ret = sigaction(SIGUSR1, NULL, &oldact);
616 ASSERT_READ_ZERO_LABEL(&oldact, sizeof(oldact));
  /external/compiler-rt/lib/msan/
msan_interceptors.cc     [all...]
  /external/google-breakpad/src/third_party/lss/
linux_syscall_support.h     [all...]
  /external/compiler-rt/lib/dfsan/
dfsan_custom.cc 736 struct sigaction *oldact, dfsan_label signum_label,
739 int ret = sigaction(signum, act, oldact);
740 if (oldact) {
741 dfsan_set_label(0, oldact, sizeof(struct sigaction));
    [all...]
  /external/ppp/pppd/
main.c 1436 struct sigaction act, oldact; local
    [all...]
  /external/compiler-rt/lib/msan/tests/
msan_test.cc 2299 struct sigaction oldact = {}; local
    [all...]
  /external/valgrind/memcheck/tests/x86-linux/
scalar.stderr.exp 683 Syscall param sigaction(oldact) contains uninitialised byte(s)
708 Syscall param sigaction(oldact) points to unaddressable byte(s)
    [all...]
  /external/valgrind/coregrind/m_syswrap/
syswrap-linux.c     [all...]
syswrap-darwin.c     [all...]

Completed in 457 milliseconds