Searched refs:termsig (Results 1 - 6 of 6) sorted by relevance

/external/honggfuzz/posix/
H A Darch.c112 int termsig = WTERMSIG(status); local
113 LOG_D("Process (pid %d) killed by signal %d '%s'", run->pid, termsig, strsignal(termsig));
114 if (!arch_sigs[termsig].important) {
129 arch_sigs[termsig].descr, run->pid, localtmstr, run->global->io.fileExtn);
/external/autotest/client/site_tests/security_SeccompSyscallFilters/src/
H A Dtest_harness.h221 { name: "global." #test_name, fn: &test_name, termsig: _signal }; \
279 termsig: signal, \
384 int termsig; member in struct:__test_metadata
449 t->passed = t->termsig == -1 ? WEXITSTATUS(status) : 0;
450 if (t->termsig != -1) {
462 } else if (WTERMSIG(status) == t->termsig) {
/external/linux-kselftest/tools/testing/selftests/
H A Dkselftest_harness.h151 fn: &test_name, termsig: _signal }; \
285 termsig: signal, \
608 int termsig; member in struct:__test_metadata
687 t->passed = t->termsig == -1 ? !WEXITSTATUS(status) : 0;
688 if (t->termsig != -1) {
706 } else if (WTERMSIG(status) == t->termsig) {
/external/honggfuzz/mac/
H A Darch.c158 static void arch_generateReport(run_t* run, int termsig) { argument
164 run->report, sizeof(run->report), "SIGNAL: %s (%d)\n", arch_sigs[termsig].descr, termsig);
213 int termsig = WTERMSIG(status); local
214 LOG_D("Process (pid %d) killed by signal %d '%s'", run->pid, termsig, strsignal(termsig));
215 if (!arch_sigs[termsig].important) {
260 arch_sigs[termsig].descr, exception_to_string(run->exception), run->pc, run->backtrace,
268 run->global->io.crashDir, arch_sigs[termsig].descr, exception_to_string(run->exception),
291 arch_generateReport(run, termsig);
[all...]
/external/seccomp-tests/linux/
H A Dtest_harness.h227 fn: &test_name, termsig: _signal }; \
290 termsig: signal, \
403 int termsig; member in struct:__test_metadata
476 t->passed = t->termsig == -1 ? WEXITSTATUS(status) : 0;
477 if (t->termsig != -1) {
490 } else if (WTERMSIG(status) == t->termsig) {
/external/mksh/src/
H A Djobs.c1246 int termsig; local
1248 if ((termsig = WTERMSIG(j->last_proc->status)) > 0 &&
1249 termsig < ksh_NSIG &&
1250 (sigtraps[termsig].flags & TF_TTY_INTR))
1251 trapsig(termsig);
1601 int termsig = WTERMSIG(p->status); local
1614 (termsig == SIGINT || termsig == SIGPIPE)) {
1617 strlcpy(buf, termsig > 0 && termsig < ksh_NSI
[all...]

Completed in 312 milliseconds