HomeSort by relevance Sort by last modified time
    Searched refs:SIGSYS (Results 251 - 275 of 334) sorted by null

<<11121314

  /prebuilts/go/linux-x86/src/runtime/
signal_solaris.go 25 /* 12 */ {_SigThrow, "SIGSYS: bad argument to system call"},
sigtab_linux_mipsx.go 28 /* 12 */ {_SigThrow, "SIGSYS: bad system call"},
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
signalmodule.c 694 #ifdef SIGSYS
695 x = PyInt_FromLong(SIGSYS);
696 PyDict_SetItemString(d, "SIGSYS", x);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
signalmodule.c 686 #ifdef SIGSYS
687 x = PyInt_FromLong(SIGSYS);
688 PyDict_SetItemString(d, "SIGSYS", x);
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
res_send.c 703 if (sigaction(SIGSYS, &sa, &osa) >= 0)
709 sigaction(SIGSYS, &osa, NULL);
  /system/core/debuggerd/
debuggerd_test.cpp 516 raise(SIGSYS);
522 AssertDeath(SIGSYS);
  /external/v8/src/base/debug/
stack_trace_posix.cc 353 success &= (sigaction(SIGSYS, &action, NULL) == 0);
  /system/core/debuggerd/handler/
debuggerd_handler.cpp 165 case SIGSYS:
166 signal_name = "SIGSYS";
  /system/core/debuggerd/libdebuggerd/
tombstone.cpp 91 case SIGSYS: return "SIGSYS";
157 case SIGSYS:
218 } else if (si.si_signo == SIGSYS && si.si_code == SYS_SECCOMP) {
  /external/strace/tests/
ptrace.c 338 sip->si_signo = SIGSYS;
346 printf("ptrace(PTRACE_SETSIGINFO, %u, %#lx, {si_signo=SIGSYS"
359 printf("ptrace(PTRACE_SETSIGINFO, %u, %#lx, {si_signo=SIGSYS"
  /external/strace/tests-m32/
ptrace.c 338 sip->si_signo = SIGSYS;
346 printf("ptrace(PTRACE_SETSIGINFO, %u, %#lx, {si_signo=SIGSYS"
359 printf("ptrace(PTRACE_SETSIGINFO, %u, %#lx, {si_signo=SIGSYS"
  /external/strace/tests-mx32/
ptrace.c 338 sip->si_signo = SIGSYS;
346 printf("ptrace(PTRACE_SETSIGINFO, %u, %#lx, {si_signo=SIGSYS"
359 printf("ptrace(PTRACE_SETSIGINFO, %u, %#lx, {si_signo=SIGSYS"
  /prebuilts/go/darwin-x86/src/os/signal/
doc.go 40 SIGQUIT, SIGILL, SIGTRAP, SIGABRT, SIGSTKFLT, SIGEMT, or SIGSYS signal
71 SIGIO, SIGPWR, SIGSYS, SIGINFO, SIGTHR, SIGWAITING, SIGLWP, SIGFREEZE,
  /prebuilts/go/linux-x86/src/os/signal/
doc.go 40 SIGQUIT, SIGILL, SIGTRAP, SIGABRT, SIGSTKFLT, SIGEMT, or SIGSYS signal
71 SIGIO, SIGPWR, SIGSYS, SIGINFO, SIGTHR, SIGWAITING, SIGLWP, SIGFREEZE,
  /external/ppp/pppd/
tty.c 1022 #ifdef SIGSYS
1023 signal(SIGSYS, SIG_DFL);
    [all...]
main.c 749 #ifdef SIGSYS
750 SIGNAL(SIGSYS, bad_signal);
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_interceptors.cc 126 const int SIGSYS = 12;
129 const int SIGSYS = 31;
    [all...]
  /external/libchrome/base/debug/
stack_trace_posix.cc 714 // On Linux, SIGSYS is reserved by the kernel for seccomp-bpf sandboxing.
716 success &= (sigaction(SIGSYS, &action, NULL) == 0);
  /external/libchrome/base/process/
launch_posix.cc 124 signal(SIGSYS, SIG_DFL);
  /libcore/luni/src/main/java/android/system/
OsConstants.java 444 public static final int SIGSYS = placeholder();
    [all...]
  /external/minijail/
libminijail.c     [all...]
  /external/e2fsprogs/misc/
e4crypt.c 262 sigaction(SIGSYS, &sa, 0);
  /external/valgrind/include/vki/
vki-darwin.h 482 #define VKI_SIGSYS SIGSYS
  /system/core/init/
init.cpp 944 sigaction(SIGSYS, &action, nullptr);
    [all...]
  /external/cmockery/cmockery_0_1_2/src/
cmockery.c 189 SIGSYS,
    [all...]

Completed in 790 milliseconds

<<11121314