HomeSort by relevance Sort by last modified time
    Searched defs:sigaction (Results 1 - 25 of 40) sorted by null

1 2

  /bionic/libc/bionic/
sigaction.cpp 41 int sigaction(int signal, const struct sigaction* bionic_new_action, struct sigaction* bionic_old_action) { function
81 __strong_alias(sigaction64, sigaction);
87 int sigaction(int signal, const struct sigaction* bionic_new, struct sigaction* bionic_old) { function
88 // The 32-bit ABI is broken. struct sigaction includes a too-small sigset_t,
  /external/clang/test/CodeGen/
call.c 28 struct sigaction { int (*_sa_handler)(int); }; struct
30 typedef struct sigaction sighandler_cxt;
  /bionic/libc/include/bits/
signal_types.h 36 /* For 64-bit (and mips), the kernel's struct sigaction doesn't match the
41 #define sigaction __kernel_sigaction macro
43 #undef sigaction macro
79 struct sigaction { __SIGACTION_BODY }; struct
94 struct sigaction { __SIGACTION_BODY }; struct
104 struct sigaction { struct
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
sigaction.h 1 /* The proper definitions for Linux's sigaction.
21 # error "Never include <bits/sigaction.h> directly; use <signal.h> instead."
25 struct sigaction struct
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
sigaction.h 1 /* The proper definitions for Linux's sigaction.
21 # error "Never include <bits/sigaction.h> directly; use <signal.h> instead."
25 struct sigaction struct
  /external/valgrind/coregrind/
m_libcsignal.c 214 /* The functions sigaction, sigprocmask, sigpending and sigsuspend
243 /* A helper function for sigaction on Darwin. */
260 Int VG_(sigaction) ( Int signum, function
276 sigaction requests come from m_signals, and are not directly
510 ir = VG_(sigaction)(i, &sa, &saved_sa);
533 ir = VG_(sigaction)(i, &saved_sa2, NULL);
  /prebuilts/go/darwin-x86/src/runtime/
os_dragonfly.go 28 func sigaction(sig uint32, new, old *sigactiont) func
245 sigaction(i, &sa, nil)
258 sigaction(i, nil, &sa)
os_freebsd.go 21 func sigaction(sig uint32, new, old *sigactiont) func
318 sigaction(i, &sa, nil)
331 sigaction(i, nil, &sa)
os_netbsd.go 38 func sigaction(sig uint32, new, old *sigactiont) func
297 sigaction(i, &sa, nil)
310 sigaction(i, nil, &sa)
os_openbsd.go 20 func sigaction(sig uint32, new, old *sigactiont) func
251 sigaction(i, &sa, nil)
264 sigaction(i, nil, &sa)
  /prebuilts/go/linux-x86/src/runtime/
os_dragonfly.go 28 func sigaction(sig uint32, new, old *sigactiont) func
245 sigaction(i, &sa, nil)
258 sigaction(i, nil, &sa)
os_freebsd.go 21 func sigaction(sig uint32, new, old *sigactiont) func
318 sigaction(i, &sa, nil)
331 sigaction(i, nil, &sa)
os_netbsd.go 38 func sigaction(sig uint32, new, old *sigactiont) func
297 sigaction(i, &sa, nil)
310 sigaction(i, nil, &sa)
os_openbsd.go 20 func sigaction(sig uint32, new, old *sigactiont) func
251 sigaction(i, &sa, nil)
264 sigaction(i, nil, &sa)
  /art/sigchainlib/
sigchain.cc 53 // It implements wrapper functions for signal, sigaction, and sigprocmask, and a handler that
114 static decltype(&sigaction) linked_sigaction;
127 if (sym == wrapper || sym == sigaction) {
137 lookup_next_symbol(&linked_sigaction, sigaction, "sigaction");
204 struct sigaction handler_action = {};
282 struct sigaction action_;
362 // number should behave exactly as the libc sigaction.
380 // to pass the sigaction on to the kernel via the real sigaction in libc
384 extern "C" int sigaction(int signal, const struct sigaction* new_action, function in namespace:art
    [all...]
  /bionic/libc/kernel/uapi/asm-arm/asm/
signal.h 76 struct sigaction { struct
  /bionic/libc/kernel/uapi/asm-generic/
signal.h 85 struct sigaction { struct
  /bionic/libc/kernel/uapi/asm-mips/asm/
signal.h 80 struct sigaction { struct
  /bionic/libc/kernel/uapi/asm-x86/asm/
signal.h 80 struct sigaction { struct
92 struct sigaction { struct
  /external/fio/os/
os-windows.h 91 struct sigaction struct
106 int sigaction(int sig, const struct sigaction *act,
107 struct sigaction *oact);
  /external/kernel-headers/original/uapi/asm-arm/asm/
signal.h 99 struct sigaction { struct
  /external/kernel-headers/original/uapi/asm-generic/
signal.h 104 struct sigaction { struct
  /external/kernel-headers/original/uapi/asm-mips/asm/
signal.h 105 struct sigaction { struct
  /external/kernel-headers/original/uapi/asm-x86/asm/
signal.h 103 struct sigaction { struct
118 struct sigaction { struct
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/asm-generic/
signal.h 102 struct sigaction { struct
112 struct sigaction sa;

Completed in 318 milliseconds

1 2