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

1 2 3 4 5 6 7 8 910

  /external/valgrind/main/none/tests/x86/
int.stderr.exp 3 Process terminating with default action of signal 11 (SIGSEGV)
ssse3_misaligned.c 21 assert(signo == SIGSEGV);
28 signal(SIGSEGV, handler);
badseg.c 21 sigaction(SIGSEGV, &sa, NULL);
faultstatus.c 111 static const int sigs[] = { SIGSEGV, SIGILL, SIGBUS, SIGFPE, SIGTRAP };
138 T(3, SIGSEGV, 128, 0),
139 T(4, SIGSEGV, 128, 0),
144 T(5, SIGSEGV, 128, 0),
  /external/valgrind/main/gdbserver_tests/
mcsignopass.stdoutB.exp 2 SIGSEGV Yes Yes No Segmentation fault
8 Program received signal SIGSEGV, Segmentation fault.
12 Program received signal SIGSEGV, Segmentation fault.
16 Program received signal SIGSEGV, Segmentation fault.
20 Program received signal SIGSEGV, Segmentation fault.
24 Program received signal SIGSEGV, Segmentation fault.
28 Program received signal SIGSEGV, Segmentation fault.
32 Program received signal SIGSEGV, Segmentation fault.
36 Program received signal SIGSEGV, Segmentation fault.
40 Program received signal SIGSEGV, Segmentation fault
    [all...]
mcsigpass.stdoutB.exp 2 Program received signal SIGSEGV, Segmentation fault.
6 Program received signal SIGSEGV, Segmentation fault.
  /external/valgrind/main/none/tests/amd64/
ssse3_misaligned.c 21 assert(signo == SIGSEGV);
28 signal(SIGSEGV, handler);
  /external/valgrind/main/memcheck/tests/
signal2.c 14 signal(SIGSEGV, sig_hdlr);
badjump2.c 24 /* Install own SIGSEGV handler */
33 res = sigaction( SIGSEGV, &sigsegv_new, &sigsegv_saved );
  /external/libcxx/test/depr/depr.c.headers/
signal_h.pass.cpp 43 #ifndef SIGSEGV
44 #error SIGSEGV not defined
  /external/libcxx/test/language.support/support.runtime/
csignal.pass.cpp 43 #ifndef SIGSEGV
44 #error SIGSEGV not defined
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
signal_h.pass.cpp 43 #ifndef SIGSEGV
44 #error SIGSEGV not defined
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.runtime/
csignal.pass.cpp 43 #ifndef SIGSEGV
44 #error SIGSEGV not defined
  /external/valgrind/main/none/tests/s390x/
test_sig.c 19 if (sig == SIGSEGV) {
20 printf("SIGSEGV, exiting...\n");
36 if (sig == SIGSEGV) {
37 printf("SIGSEGV, exiting...\n");
55 signal(SIGSEGV, handle_SIG);
  /art/test/004-SignalTest/
signaltest.cc 81 sigaction(SIGSEGV, &action, &oldaction);
85 sigaction(SIGSEGV, &oldaction, nullptr);
98 kill(getpid(), SIGSEGV);
  /external/chromium_org/base/mac/
os_crash_dumps.cc 19 // A call to exit() can call atexit() handlers. If we SIGSEGV due
38 SIGSEGV, // EXC_BAD_ACCESS
  /external/compiler-rt/test/asan/TestCases/Posix/
allow_user_segv.cc 33 // On 64-bit Darwin KERN_INVALID_ADDRESS (SIGSEGV) is delivered.
34 // On Linux SIGSEGV is delivered as well.
35 int signum = SIGSEGV;
47 // CHECK-NEXT: ASAN:SIGSEGV
  /external/lldb/tools/debugserver/source/
SysSignal.cpp 37 case SIGSEGV: return "SIGSEGV"; // 11 segmentation violation
  /external/valgrind/main/none/tests/
async-sigs.c 129 test(/*non-blocked*/0, /* sync*/SIGSEGV, /* sync*/SIGBUS);
130 test(/*non-blocked*/0, /* sync*/SIGSEGV, /*async*/SIGHUP);
133 test(/* blocked*/1, /* sync*/SIGSEGV, /* sync*/SIGBUS);
134 test(/* blocked*/1, /* sync*/SIGSEGV, /*async*/SIGHUP);
faultstatus.c 131 static const int sigs[] = { SIGSEGV, SIGILL, SIGBUS, SIGFPE, SIGTRAP };
156 T(1, SIGSEGV, SEGV_MAPERR, BADADDR),
157 T(2, SIGSEGV, SEGV_ACCERR, mapping),
  /external/valgrind/main/none/tests/linux/
blockfault.c 13 /* Blocking a fault, ie SIGSEGV, won't work, and is the same as having
25 sigaction(SIGSEGV, &sa, NULL);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/bits/
signum.h 44 #define SIGSEGV 11 /* Segmentation violation (ANSI). */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/bits/
signum.h 44 #define SIGSEGV 11 /* Segmentation violation (ANSI). */
  /art/runtime/
fault_handler.cc 32 // However, when a SIGSEGV occurs that is in generated code and is not one of the
35 // that it may not work. If the cause of the original SIGSEGV is a corrupted stack or other
44 // 2. use pthread_sigmask to allow SIGSEGV and SIGABRT signals to be delivered to the
46 // 3. set the handler for SIGSEGV and SIGABRT to a secondary signal handler.
75 // Set a breakpoint here to be informed when a SIGSEGV is unhandled by ART.
76 VLOG(signals)<< "Caught unknown SIGSEGV in ART fault handler - chaining to next handler.";
80 // Signal handler called on SIGSEGV.
91 sigaction(SIGSEGV, nullptr, &oldaction_);
110 EnsureFrontOfChain(SIGSEGV, &action);
122 int e = sigaction(SIGSEGV, &action, &oldaction_)
    [all...]
  /cts/tests/tests/os/jni/
android_os_cts_TaggedPointer.cpp 52 err = sigaction(SIGSEGV, &sigsegv_act, &oldact);
68 sigaction(SIGSEGV, &oldact, NULL);

Completed in 387 milliseconds

1 2 3 4 5 6 7 8 910