HomeSort by relevance Sort by last modified time
    Searched refs:sigaction (Results 101 - 125 of 264) sorted by null

1 2 3 45 6 7 8 91011

  /external/oprofile/daemon/
oprofiled.c 216 struct sigaction act;
222 if (sigaction(SIGALRM, &act, NULL)) {
232 if (sigaction(SIGHUP, &act, NULL)) {
242 if (sigaction(SIGTERM, &act, NULL)) {
252 if (sigaction(SIGCHLD, &act, NULL)) {
262 if (sigaction(SIGUSR1, &act, NULL)) {
272 if (sigaction(SIGUSR2, &act, NULL)) {
  /external/bluetooth/bluez/test/
hstest.c 149 struct sigaction sa;
225 sigaction(SIGTERM, &sa, NULL);
226 sigaction(SIGINT, &sa, NULL);
229 sigaction(SIGCHLD, &sa, NULL);
230 sigaction(SIGPIPE, &sa, NULL);
  /external/openssl/crypto/
sparcv9cap.c 171 struct sigaction common_act,ill_oact,bus_oact;
202 sigaction(SIGILL,&common_act,&ill_oact);
203 sigaction(SIGBUS,&common_act,&bus_oact);/* T1 fails 16-bit ldda [on Linux] */
231 sigaction(SIGBUS,&bus_oact,NULL);
232 sigaction(SIGILL,&ill_oact,NULL);
  /system/core/sh/
trap.c 236 struct sigaction act, oact;
310 if(sigaction(signo, &act, &oact) < 0)
321 struct sigaction sa;
323 if (sigaction(signo, (struct sigaction *)0, &sa) == -1)
  /external/openssh/openbsd-compat/
bsd-misc.c 206 struct sigaction sa, osa;
208 if (sigaction(sig, NULL, &osa) == -1)
219 if (sigaction(sig, &sa, NULL) == -1)
  /external/chromium/third_party/libjingle/source/talk/examples/call/
console.cc 151 struct sigaction act;
155 if (sigaction(SIGUSR1, &act, NULL) < 0) {
  /external/valgrind/main/none/tests/amd64/
faultstatus.c 94 struct sigaction sa;
101 sigaction(sigs[i], &sa, NULL);
  /external/valgrind/main/none/tests/
faultstatus.c 132 struct sigaction sa;
139 sigaction(sigs[i], &sa, NULL);
  /external/valgrind/main/none/tests/x86/
faultstatus.c 112 struct sigaction sa;
119 sigaction(sigs[i], &sa, NULL);
  /system/core/init/
signal_handler.c 133 struct sigaction act;
139 sigaction(SIGCHLD, &act, 0);
  /external/valgrind/main/coregrind/
m_machine.c 768 r = VG_(sigaction)(VKI_SIGILL, NULL, &saved_sigill_act);
772 r = VG_(sigaction)(VKI_SIGFPE, NULL, &saved_sigfpe_act);
783 r = VG_(sigaction)(VKI_SIGILL, &tmp_sigill_act, NULL);
790 r = VG_(sigaction)(VKI_SIGFPE, &tmp_sigfpe_act, NULL);
843 r = VG_(sigaction)(VKI_SIGILL, &saved_sigill_act, NULL);
845 r = VG_(sigaction)(VKI_SIGFPE, &saved_sigfpe_act, NULL);
901 r = VG_(sigaction)(VKI_SIGILL, NULL, &saved_sigill_act);
905 VG_(sigaction)(VKI_SIGFPE, NULL, &saved_sigfpe_act);
915 VG_(sigaction)(VKI_SIGILL, &tmp_sigill_act, NULL);
921 VG_(sigaction)(VKI_SIGFPE, &tmp_sigfpe_act, NULL)
    [all...]
pub_core_libcsignal.h 66 extern Int VG_(sigaction) ( Int signum,
70 /* Convert a sigaction which you got from the kernel (a _fromK_t) to
  /bionic/libc/kernel/arch-arm/asm/
signal.h 92 struct sigaction { struct
  /bionic/libc/kernel/arch-x86/asm/
signal.h 96 struct sigaction { struct
  /development/ndk/platforms/android-3/arch-arm/include/asm/
signal.h 84 struct sigaction { struct
  /development/ndk/platforms/android-9/arch-x86/include/asm/
signal.h 96 struct sigaction { struct
  /external/chromium/third_party/libevent/
signal.c 144 struct sigaction sa;
186 if (sigaction(evsignal, &sa, sig->sh_old[evsignal]) == -1) {
187 event_warn("sigaction");
242 struct sigaction *sh;
251 if (sigaction(evsignal, sh, NULL) == -1) {
252 event_warn("sigaction");
  /external/dropbear/
svr-main.c 334 struct sigaction sa_chld;
340 if (sigaction(SIGCHLD, &sa_chld, NULL) < 0) {
361 struct sigaction sa_chld;
380 if (sigaction(SIGCHLD, &sa_chld, NULL) < 0) {
  /external/e2fsprogs/misc/
logsave.c 165 struct sigaction sa;
174 memset(&sa, 0, sizeof(struct sigaction));
176 sigaction(SIGINT, &sa, 0);
177 sigaction(SIGTERM, &sa, 0);
  /external/llvm/lib/Support/
CrashRecoveryContext.cpp 228 static struct sigaction PrevActions[NumSignals];
271 struct sigaction Handler;
277 sigaction(Signals[i], &Handler, &PrevActions[i]);
291 sigaction(Signals[i], &PrevActions[i], 0);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
elfcore.h 47 struct sigaction pr_action; /* Signal action for current sig */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
signal.h 244 /* Get the system-specific definitions of `struct sigaction'
246 # include <bits/sigaction.h>
260 extern int sigaction (int __sig, __const struct sigaction *__restrict __act,
261 struct sigaction *__restrict __oact) __THROW;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
elfcore.h 47 struct sigaction pr_action; /* Signal action for current sig */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
signal.h 244 /* Get the system-specific definitions of `struct sigaction'
246 # include <bits/sigaction.h>
260 extern int sigaction (int __sig, __const struct sigaction *__restrict __act,
261 struct sigaction *__restrict __oact) __THROW;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
elfcore.h 47 struct sigaction pr_action; /* Signal action for current sig */

Completed in 1505 milliseconds

1 2 3 45 6 7 8 91011