Searched refs:si_code (Results 1 - 24 of 24) sorted by relevance

/external/valgrind/main/memcheck/tests/linux/
H A Dsigqueue.c22 fprintf(stdout, "offsetof(siginfo_t, si_code) = %zd\n",
23 offsetof(siginfo_t, si_code));
29 si->si_code = SI_QUEUE;
/external/valgrind/main/none/tests/x86/
H A Dbadseg.c8 info->si_signo, info->si_code, (unsigned long)info->si_addr);
H A Dfaultstatus.c45 fprintf(stderr, " FAIL: expected si_code==%d, not %d\n", want, code);
66 ok = ok && testcode(si->si_code, cur_test->code);
/external/valgrind/main/none/tests/linux/
H A Dblockfault.c9 info->si_signo, info->si_code, info->si_addr);
/external/kernel-headers/original/asm-mips/
H A Dsiginfo.h39 int si_code; member in struct:siginfo
102 * si_code values
121 if (from->si_code < 0)
/external/valgrind/main/coregrind/
H A Dm_signals.c1352 // The si_code describes where the signal came from. Some come from the
1357 // pass in some other details that can help when si_code is unreliable.
1358 static Bool is_signal_from_kernel(ThreadId tid, int signum, int si_code) argument
1365 return ( si_code > VKI_SI_USER ? True : False );
1368 // On Darwin 9.6.0, the si_code is completely unreliable. It should be the
1387 return ( si_code > 0 ? True : False );
1401 // This is an arbitrary si_code that we only use internally. It corresponds
1464 sigNo, info->si_code, terminate ? "terminate" : "ignore",
1483 (could_core && is_signal_from_kernel(tid, sigNo, info->si_code))
1492 if (is_signal_from_kernel(tid, sigNo, info->si_code)) {
1712 synth_fault_common(ThreadId tid, Addr addr, Int si_code) argument
1924 sanitize_si_code(int si_code) argument
[all...]
/external/kernel-headers/original/asm-generic/
H A Dsiginfo.h43 int si_code; member in struct:siginfo
140 * si_code values
153 #define SI_FROMUSER(siptr) ((siptr)->si_code <= 0)
154 #define SI_FROMKERNEL(siptr) ((siptr)->si_code > 0)
281 if (from->si_code < 0)
/external/strace/
H A Dsignal.c462 #define SI_FROMUSER(sip) ((sip)->si_code <= 0)
482 int si_code; /* Signal code. */ member in struct:siginfo
679 code = xlookup(siginfo_codes, sip->si_code);
683 code = xlookup(sigtrap_codes, sip->si_code);
686 code = xlookup(sigchld_codes, sip->si_code);
689 code = xlookup(sigpoll_codes, sip->si_code);
692 code = xlookup(sigprof_codes, sip->si_code);
695 code = xlookup(sigill_codes, sip->si_code);
699 code = xlookup(sigemt_codes, sip->si_code);
703 code = xlookup(sigfpe_codes, sip->si_code);
[all...]
/external/valgrind/main/none/tests/amd64/
H A Dfaultstatus.c42 fprintf(stderr, " FAIL: expected si_code==%d, not %d\n", want, code);
63 ok = ok && testcode(si->si_code, cur_test->code);
/external/valgrind/main/none/tests/
H A Dfaultstatus.c65 fprintf(stderr, " FAIL: expected si_code==%d, not %d\n", want, code);
92 ok = ok && testcode(si->si_code, cur_test->code);
/external/elfutils/backends/
H A Dlinux-core-note.c46 FIELD (INT, si_code);
118 FIELD (signal, INT, info.si_code, 'd'),
/external/valgrind/main/coregrind/m_sigframe/
H A Dsigframe-amd64-darwin.c155 frame->fake_siginfo.si_code = siginfo->si_code;
H A Dsigframe-x86-darwin.c158 frame->fake_siginfo.si_code = siginfo->si_code;
H A Dsigframe-arm-linux.c240 if(sigNo == VKI_SIGILL && siginfo->si_code > 0) {
H A Dsigframe-amd64-linux.c481 if (sigNo == VKI_SIGILL && siginfo->si_code > 0)
H A Dsigframe-ppc32-linux.c653 //.. if (sigNo == VKI_SIGILL && siginfo->si_code > 0)
708 if (sigNo == VKI_SIGILL && siginfo->si_code > 0)
H A Dsigframe-x86-linux.c565 if (sigNo == VKI_SIGILL && siginfo->si_code > 0)
/external/v8/src/
H A Dd8-posix.cc400 if (child_info.si_code == CLD_KILLED) {
409 if (child_info.si_code == CLD_EXITED && child_info.si_status != 0) {
/external/valgrind/main/coregrind/m_coredump/
H A Dcoredump-elf.c232 prs->pr_info.si_code = si->si_code;
/external/valgrind/main/include/vki/
H A Dvki-linux.h397 int si_code; member in struct:vki_siginfo
452 * si_code values
938 int si_code; /* extra code */ member in struct:vki_elf_siginfo
/external/qemu/
H A Dcpu-exec.c1198 if (info->si_code && (info->si_segvflags & __ISR_VALID))
/external/valgrind/main/VEX/test/
H A Dtest-amd64.c1373 printf("si_signo=%d si_errno=%d si_code=%d",
1374 info->si_signo, info->si_errno, info->si_code);
H A Dtest-i386.c1333 printf("si_signo=%d si_errno=%d si_code=%d",
1334 info->si_signo, info->si_errno, info->si_code);
/external/valgrind/main/perf/
H A Dtinycc.c20639 switch(siginf->si_code) {

Completed in 772 milliseconds