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

1 2

  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
sigaction.c 10 struct sigaction* oldact) {
11 return ki_sigaction(signum, act, oldact);
  /cts/tests/tests/os/jni/
android_os_cts_CpuInstructions.cpp 38 struct sigaction oldact; local
45 err = sigaction(SIGILL, &sigill_act, &oldact);
59 sigaction(SIGILL, &oldact, NULL);
android_os_cts_TaggedPointer.cpp 43 struct sigaction oldact; local
52 err = sigaction(SIGSEGV, &sigsegv_act, &oldact);
68 sigaction(SIGSEGV, &oldact, NULL);
  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
signal.c 175 sigaction (int signum, const struct sigaction *act, struct sigaction *oldact)
  /system/core/libbacktrace/
BacktraceThread.cpp 174 struct sigaction act, oldact; local
179 if (sigaction(THREAD_SIGNAL, &act, &oldact) != 0) {
189 sigaction(THREAD_SIGNAL, &oldact, NULL);
201 sigaction(THREAD_SIGNAL, &oldact, NULL);
  /external/chromium_org/base/posix/
unix_domain_socket_linux_unittest.cc 62 struct sigaction act = {}, oldact; local
64 ASSERT_EQ(0, sigaction(SIGPIPE, &act, &oldact));
78 ASSERT_EQ(0, sigaction(SIGPIPE, &oldact, NULL));
  /external/compiler-rt/lib/asan/
asan_interceptors.h 95 struct sigaction *oldact)
asan_interceptors.cc 214 struct sigaction *oldact) {
217 return REAL(sigaction)(signum, act, oldact);
223 int real_sigaction(int signum, const void *act, void *oldact) {
225 (struct sigaction *)act, (struct sigaction *)oldact);
232 struct sigaction *oldact)
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_linux.h 44 int internal_sigaction_norestorer(int signum, const void *act, void *oldact);
sanitizer_libc.h 104 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) {
70 return real_sigaction(signum, act, oldact);
71 return sigaction(signum, (struct sigaction *)act, (struct sigaction *)oldact);
sanitizer_mac.cc 124 int internal_sigaction(int signum, const void *act, void *oldact) {
126 (struct sigaction *)act, (struct sigaction *)oldact);
sanitizer_linux.cc 536 int internal_sigaction_norestorer(int signum, const void *act, void *oldact) {
541 __sanitizer_sigaction *u_oldact = (__sanitizer_sigaction *)oldact;
555 // oldact->sa_restorer upon a call to sigaction(xxx, NULL, oldact).
  /external/valgrind/main/coregrind/
pub_core_libcsignal.h 68 vki_sigaction_fromK_t* oldact );
m_libcsignal.c 220 vki_sigaction_fromK_t* oldact)
226 signum, (UWord)act, (UWord)oldact,
258 real_oldact = oldact ? &oldactCopy.oa : NULL;
271 *oldact = *real_oldact;
  /development/ndk/sources/android/libportable/arch-mips/
signal.c     [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
linux_syscall_support.h     [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
linux_syscall_support.h     [all...]
  /development/ndk/sources/android/libportable/common/include/
signal_portable.h 172 struct sigaction_portable *oldact,
  /external/compiler-rt/test/dfsan/
custom.c 612 struct sigaction oldact; local
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 997 __sanitizer_sigaction *oldact) {
    [all...]
  /external/compiler-rt/lib/dfsan/
dfsan_custom.cc 699 struct sigaction *oldact, dfsan_label signum_label,
702 int ret = sigaction(signum, act, oldact);
703 if (oldact) {
704 dfsan_set_label(0, oldact, sizeof(struct sigaction));
  /external/ppp/pppd/
main.c 1369 struct sigaction act, oldact; local
    [all...]
  /external/compiler-rt/lib/msan/tests/
msan_test.cc 2138 struct sigaction oldact = {}; local
    [all...]
  /external/qemu/
exec.c 914 struct sigaction act, oldact; local
921 ret = sigaction(SIGBUS, &act, &oldact);
942 ret = sigaction(SIGBUS, &oldact, NULL);
    [all...]

Completed in 899 milliseconds

1 2