Searched defs:signal (Results 1 - 7 of 7) sorted by relevance

/system/core/libsparse/
H A Dsimg_dump.py18 import getopt, posixpath, signal, struct, sys namespace
29 signal.signal(signal.SIGPIPE, signal.SIG_DFL)
/system/core/include/utils/
H A DCondition.h64 void signal();
66 void signal(WakeUpType type) { function in class:android::Condition
68 signal();
134 inline void Condition::signal() { function in class:android::Condition
/system/core/sh/
H A Derror.c48 #include <signal.h>
62 #define signal bsd_signal macro
98 * there is a short period after a fork before the signal handlers are
118 signal(SIGINT, SIG_DFL);
H A Dredir.c46 #include <signal.h>
76 #define signal bsd_signal macro
274 signal(SIGINT, SIG_IGN);
275 signal(SIGQUIT, SIG_IGN);
276 signal(SIGHUP, SIG_IGN);
278 signal(SIGTSTP, SIG_IGN);
280 signal(SIGPIPE, SIG_DFL);
H A Dinit.c15 #include <signal.h>
249 #undef signal macro
250 #define signal bsd_signal macro
285 #undef signal macro
286 #define signal bsd_signal macro
290 #define S_DFL 1 /* default signal handling (SIG_DFL) */
292 #define S_CATCH 2 /* signal is caught */
294 #define S_IGN 3 /* signal is ignored (SIG_IGN) */
296 #define S_HARD_IGN 4 /* signal is ignored permenantly */
541 #undef signal macro
542 #define signal macro
577 #undef signal macro
578 #define signal macro
[all...]
/system/core/debuggerd/
H A Ddebuggerd.c20 #include <signal.h>
310 int signal = wait_for_signal(request.tid, &total_sleep_time_usec); local
311 if (signal < 0) {
315 switch (signal) {
320 signal, request.abort_msg_address, true, true, &detach_failed,
347 XLOG("stopped -- fatal signal\n");
358 signal, request.abort_msg_address, !attach_gdb, false,
364 XLOG("stopped -- unexpected signal\n");
365 LOG("process stopped due to unexpected signal %d\n", signal);
[all...]
H A Dtombstone.c20 #include <signal.h>
93 // Try the signal-specific codes...
186 _LOG(log, SCOPE_AT_FAULT, "signal %d (%s), code %d (%s), fault addr %08x\n",
191 _LOG(log, SCOPE_AT_FAULT, "signal %d (%s), code %d (%s), fault addr --------\n",
516 /* interrupted by signal, retry */
665 static bool dump_crash(log_t* log, pid_t pid, pid_t tid, int signal, uintptr_t abort_msg_address, argument
676 * pid and signal number, followed by the raw text of the dump, culminating
681 datum = htonl(signal);
690 if (signal) {
691 dump_fault_addr(log, tid, signal);
810 engrave_tombstone(pid_t pid, pid_t tid, int signal, uintptr_t abort_msg_address, bool dump_sibling_threads, bool quiet, bool* detach_failed, int* total_sleep_time_usec) argument
[all...]

Completed in 5106 milliseconds