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

1 2 3 4 5

  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
sigaction.c 8 int sigaction(int signum, function
9 const struct sigaction* act,
10 struct sigaction* oldact) {
  /bionic/libc/bionic/
sigaction.cpp 35 extern "C" int __sigaction(int, const struct sigaction*, struct sigaction*);
38 int sigaction(int signal, const struct sigaction* bionic_new_action, struct sigaction* bionic_old_action) { function
76 // The 32-bit ABI is broken. struct sigaction includes a too-small sigset_t.
77 // TODO: if we also had correct struct sigaction definitions available, we could copy in and out.
  /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) function
  /bionic/libc/include/
signal.h 40 /* For 64-bit (and mips), the kernel's struct sigaction doesn't match the POSIX one,
42 # define sigaction __kernel_sigaction macro
44 # undef sigaction macro
80 struct sigaction { struct
92 struct sigaction { struct
103 extern int sigaction(int, const struct sigaction*, struct sigaction*);
  /development/ndk/platforms/android-L/include/
signal.h 40 /* For 64-bit (and mips), the kernel's struct sigaction doesn't match the POSIX one,
42 # define sigaction __kernel_sigaction macro
44 # undef sigaction macro
80 struct sigaction { struct
92 struct sigaction { struct
103 extern int sigaction(int, const struct sigaction*, struct sigaction*);
  /external/bison/lib/
sigaction.c 27 /* This implementation of sigaction is tailored to native Windows behavior:
49 sigaction(). We support the use of signal() within the gnulib
51 with this module should stick with only sigaction(). */
55 # error "Revisit the assumptions made in the sigaction module"
79 that signal is not currently handled by the sigaction handler. */
80 static struct sigaction volatile action_array[NSIG] /* = 0 */;
99 bookkeeping so that the user's handler may call sigaction and get
102 interrupting a sigaction() call. There is a race where any
131 sigaction (int sig, const struct sigaction *restrict act function
    [all...]
spawni.c 73 # define sigaction __sigaction macro
197 struct sigaction sa;
204 && sigaction (sig, &sa, NULL) != 0)
  /external/clang/test/CodeGen/
call.c 28 struct sigaction { int (*_sa_handler)(int); }; struct
30 typedef struct sigaction sighandler_cxt;
  /prebuilts/ndk/9/platforms/android-19/arch-arm64/usr/include/
signal.h 40 /* For 64-bit (and mips), the kernel's struct sigaction doesn't match the POSIX one,
42 # define sigaction __kernel_sigaction macro
44 # undef sigaction macro
80 struct sigaction { struct
92 struct sigaction { struct
103 extern int sigaction(int, const struct sigaction*, struct sigaction*);
  /prebuilts/ndk/9/platforms/android-19/arch-mips64/usr/include/
signal.h 40 /* For 64-bit (and mips), the kernel's struct sigaction doesn't match the POSIX one,
42 # define sigaction __kernel_sigaction macro
44 # undef sigaction macro
80 struct sigaction { struct
92 struct sigaction { struct
103 extern int sigaction(int, const struct sigaction*, struct sigaction*);
  /prebuilts/ndk/9/platforms/android-19/arch-x86_64/usr/include/
signal.h 40 /* For 64-bit (and mips), the kernel's struct sigaction doesn't match the POSIX one,
42 # define sigaction __kernel_sigaction macro
44 # undef sigaction macro
80 struct sigaction { struct
92 struct sigaction { struct
103 extern int sigaction(int, const struct sigaction*, struct sigaction*);
  /external/qemu/target-i386/
kvm-gs-restore.c 37 unsigned int sigaction:1; member in struct:sigact_status
54 if ( !o_sigact[signum].sigaction && o_sigact[signum].old_handler)
60 signum, o_sigact[signum].sigaction ? "set":"not set" );
76 if ( o_sigact[signum].sigaction && o_sigact[signum].old_sigaction )
82 signum, o_sigact[signum].sigaction ? "set":"not set" );
104 struct sigaction act, old_act;
106 sigret = sigaction(i, NULL, &old_act);
115 memcpy(&act, &old_act, sizeof(struct sigaction));
120 o_sigact[i].sigaction = 1;
129 sigaction(i, &act, NULL)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/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.11-4.8/sysroot/usr/include/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
  /art/sigchainlib/
sigchain.cc 37 typedef int (*SigActionFnPtr)(int, const struct sigaction*, struct sigaction*);
45 void Claim(const struct sigaction& action) {
53 sigaction(signal, &action_, NULL); // Restore old action.
57 const struct sigaction& GetAction() const {
67 void SetAction(const struct sigaction& action) {
72 struct sigaction action_; // Action to be performed.
104 void ClaimSignalChain(int signal, struct sigaction* oldaction) {
125 const struct sigaction& action = user_sigactions[sig].GetAction();
143 void EnsureFrontOfChain(int signal, struct sigaction* expected_action)
161 int sigaction(int signal, const struct sigaction* new_action, struct sigaction* old_action) { function
    [all...]
  /external/valgrind/main/coregrind/
m_libcsignal.c 172 /* The functions sigaction, sigprocmask, sigpending and sigsuspend
201 /* A helper function for sigaction on Darwin. */
218 Int VG_(sigaction) ( Int signum, function
234 sigaction requests come from m_signals, and are not directly
447 ir = VG_(sigaction)(i, &sa, &saved_sa);
470 ir = VG_(sigaction)(i, &saved_sa2, NULL);
  /bionic/libc/kernel/uapi/asm-arm/asm/
signal.h 90 struct sigaction { struct
  /bionic/libc/kernel/uapi/asm-generic/
signal.h 99 struct sigaction { struct
  /bionic/libc/kernel/uapi/asm-mips/asm/
signal.h 95 struct sigaction { struct
  /bionic/libc/kernel/uapi/asm-x86/asm/
signal.h 95 struct sigaction { struct
110 struct sigaction { struct
  /development/ndk/platforms/android-3/arch-arm/include/asm/
signal.h 84 struct sigaction { struct
  /development/ndk/platforms/android-9/arch-mips/include/asm/
signal.h 101 struct sigaction { struct
115 struct sigaction sa;
  /development/ndk/platforms/android-9/arch-x86/include/asm/
signal.h 96 struct sigaction { struct
  /development/ndk/platforms/android-L/arch-arm/include/asm/
signal.h 90 struct sigaction { struct
  /development/ndk/platforms/android-L/arch-mips/include/asm/
signal.h 95 struct sigaction { struct

Completed in 1306 milliseconds

1 2 3 4 5