Home
last modified time | relevance | path

Searched refs:signo (Results 1 – 9 of 9) sorted by relevance

/system/libbase/include/android-base/
Dsilent_death_test.h101 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/
Dcrash_dump.cpp514 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()
Ddebuggerd_test.cpp198 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/
Dtypes.h40 int signo = 0; member
/system/extras/memtrack/
Dmemtrack.cpp285 void handleSignal(int signo) { in handleSignal() argument
287 SignalReceived = signo; in handleSignal()
/system/extras/simpleperf/
Denvironment.h118 bool SignalIsIgnored(int signo);
Denvironment.cpp894 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/
DANRdaemon.cpp445 static void handle_signal(int signo) { in handle_signal() argument
446 switch (signo) { in handle_signal()
/system/core/debuggerd/libdebuggerd/
Dtombstone_proto.cpp659 sig.set_number(main_thread.signo); in engrave_tombstone_proto()