Searched refs:signo (Results 1 – 9 of 9) sorted by relevance
/system/libbase/include/android-base/ |
D | silent_death_test.h | 101 for (int signo : SUPPRESSED_SIGNALS) { in ScopedSilentDeath() local 103 sigaction64(signo, &action, &previous_); in ScopedSilentDeath() 108 for (int signo : SUPPRESSED_SIGNALS) { in ~ScopedSilentDeath() local 109 sigaction64(signo, &previous_, nullptr); in ~ScopedSilentDeath()
|
/system/core/debuggerd/ |
D | crash_dump.cpp | 514 if (!ptrace_interrupt(thread, &info.signo)) { in main() 543 info.signo = info.siginfo->si_signo; in main() 586 int resume_signal = thread.signo == BIONIC_SIGNAL_DEBUGGER ? 0 : thread.signo; in main() 623 int signo = siginfo.si_signo; in main() local 624 bool fatal_signal = signo != BIONIC_SIGNAL_DEBUGGER; in main() 671 activity_manager_notify(target_process, signo, amfd_data, recoverable_gwp_asan_crash); in main()
|
D | debuggerd_test.cpp | 198 void AssertDeath(int signo); 281 void CrasherTest::AssertDeath(int signo) { in AssertDeath() argument 291 if (signo == 0) { in AssertDeath() 293 ASSERT_EQ(0, WEXITSTATUS(signo)); in AssertDeath() 297 ASSERT_EQ(signo, WTERMSIG(status)); in AssertDeath()
|
/system/core/debuggerd/libdebuggerd/include/libdebuggerd/ |
D | types.h | 40 int signo = 0; member
|
/system/extras/memtrack/ |
D | memtrack.cpp | 285 void handleSignal(int signo) { in handleSignal() argument 287 SignalReceived = signo; in handleSignal()
|
/system/extras/simpleperf/ |
D | environment.h | 118 bool SignalIsIgnored(int signo);
|
D | environment.cpp | 894 bool SignalIsIgnored(int signo) { in SignalIsIgnored() argument 896 if (sigaction(signo, nullptr, &act) != 0) { in SignalIsIgnored() 897 PLOG(FATAL) << "failed to query signal handler for signal " << signo; in SignalIsIgnored()
|
/system/extras/ANRdaemon/ |
D | ANRdaemon.cpp | 445 static void handle_signal(int signo) { in handle_signal() argument 446 switch (signo) { in handle_signal()
|
/system/core/debuggerd/libdebuggerd/ |
D | tombstone_proto.cpp | 659 sig.set_number(main_thread.signo); in engrave_tombstone_proto()
|