Searched defs:signal (Results 1 - 6 of 6) 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/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>
301 int signal = wait_for_signal(request.tid, &total_sleep_time_usec); local
302 if (signal < 0) {
306 switch (signal) {
311 signal, true, true, &detach_failed,
337 XLOG("stopped -- fatal signal\n");
348 signal, !attach_gdb, false, &detach_failed,
354 XLOG("stopped -- unexpected signal\n");
355 LOG("process stopped due to unexpected signal %d\n", signal);
[all...]
H A Dtombstone.c20 #include <signal.h>
157 _LOG(log, false, "signal %d (%s), code %d (%s), fault addr %08x\n",
162 _LOG(log, false, "signal %d (%s), code %d (%s), fault addr --------\n",
486 /* interrupted by signal, retry */
600 static bool dump_crash(log_t* log, pid_t pid, pid_t tid, int signal, argument
613 if(signal) {
614 dump_fault_addr(log, tid, signal);
693 char* engrave_tombstone(pid_t pid, pid_t tid, int signal, argument
716 *detach_failed = dump_crash(&log, pid, tid, signal, dump_sibling_threads,

Completed in 2164 milliseconds