Searched refs:signo (Results 1 – 10 of 10) sorted by relevance
/system/libbase/include/android-base/ |
D | silent_death_test.h | 36 for (int signo : {SIGABRT, SIGBUS, SIGSEGV, SIGSYS}) { in SetUp() 38 sigaction64(signo, &action, &previous_); in SetUp() 43 for (int signo : {SIGABRT, SIGBUS, SIGSEGV, SIGSYS}) { in TearDown() 44 sigaction64(signo, &previous_, nullptr); in TearDown()
|
/system/core/debuggerd/ |
D | crash_dump.cpp | 496 if (!ptrace_interrupt(thread, &info.signo)) { in main() 515 info.signo = info.siginfo->si_signo; in main() 558 int resume_signal = thread.signo == BIONIC_SIGNAL_DEBUGGER ? 0 : thread.signo; in main() 595 int signo = siginfo.si_signo; in main() local 596 bool fatal_signal = signo != BIONIC_SIGNAL_DEBUGGER; in main() 640 activity_manager_notify(target_process, signo, amfd_data); in main()
|
D | debuggerd_test.cpp | 188 void AssertDeath(int signo); 271 void CrasherTest::AssertDeath(int signo) { in AssertDeath() argument 281 if (signo == 0) { in AssertDeath() 283 ASSERT_EQ(0, WEXITSTATUS(signo)); in AssertDeath() 287 ASSERT_EQ(signo, WTERMSIG(status)); in AssertDeath()
|
/system/core/debuggerd/libdebuggerd/include/libdebuggerd/ |
D | types.h | 39 int signo = 0; member
|
/system/bt/tools/bdtool/ |
D | bdtool.c | 63 static void sig_handler(int signo); 275 static void sig_handler(int signo) { in sig_handler() argument 276 if (signo == SIGINT) { in sig_handler()
|
/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 | 117 bool SignalIsIgnored(int signo);
|
D | environment.cpp | 870 bool SignalIsIgnored(int signo) { in SignalIsIgnored() argument 872 if (sigaction(signo, nullptr, &act) != 0) { in SignalIsIgnored() 873 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 | 642 sig.set_number(main_thread.signo); in engrave_tombstone_proto()
|