/frameworks/native/services/surfaceflinger/ |
version-script32.txt | 8 signal;
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/ |
signal.h | 4 #include <asm/signal.h>
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/subprocessdata/ |
sigchild_ignore.py | 1 import signal, subprocess, sys
5 signal.signal(signal.SIGCHLD, signal.SIG_IGN)
|
/prebuilts/go/darwin-x86/src/os/signal/ |
example_test.go | 10 "os/signal" 14 // Set up channel on which to send signal notifications. 15 // We must use a buffered channel or risk missing the signal 16 // if we're not ready to receive when the signal is sent. 17 c := make(chan os.Signal, 1) 18 signal.Notify(c, os.Interrupt) 20 // Block until a signal is received. 22 fmt.Println("Got signal:", s) 26 // Set up channel on which to send signal notifications. 27 // We must use a buffered channel or risk missing the signal [all...] |
/prebuilts/go/linux-x86/src/os/signal/ |
example_test.go | 10 "os/signal" 14 // Set up channel on which to send signal notifications. 15 // We must use a buffered channel or risk missing the signal 16 // if we're not ready to receive when the signal is sent. 17 c := make(chan os.Signal, 1) 18 signal.Notify(c, os.Interrupt) 20 // Block until a signal is received. 22 fmt.Println("Got signal:", s) 26 // Set up channel on which to send signal notifications. 27 // We must use a buffered channel or risk missing the signal [all...] |
/device/linaro/bootloader/edk2/StdLib/LibC/Signal/ |
Signal.c | 2 Implementation of the signal and raise functions as declared in <signal.h>.
19 #include <signal.h>
22 /** The signal function associates a "signal handler" with a signal number.
24 The signal function chooses one of three ways in which receipt of the
25 signal number, sig, is to be subsequently handled. If the value of func
26 is SIG_DFL, default handling for that signal will occur. If the value of
27 func is SIG_IGN, the signal will be ignored. Otherwise, func shall point 44 signal(int sig, __sighandler_t *func) function [all...] |
/prebuilts/go/darwin-x86/src/runtime/ |
sigtab_linux_generic.go | 24 /* 10 */ {_SigNotify, "SIGUSR1: user-defined signal 1"}, 26 /* 12 */ {_SigNotify, "SIGUSR2: user-defined signal 2"}, 46 /* 32 */ {_SigSetStack + _SigUnblock, "signal 32"}, /* SIGCANCEL; see issue 6997 */ 47 /* 33 */ {_SigSetStack + _SigUnblock, "signal 33"}, /* SIGSETXID; see issues 3871, 9400, 12498 */ 48 /* 34 */ {_SigNotify, "signal 34"}, 49 /* 35 */ {_SigNotify, "signal 35"}, 50 /* 36 */ {_SigNotify, "signal 36"}, 51 /* 37 */ {_SigNotify, "signal 37"}, 52 /* 38 */ {_SigNotify, "signal 38"}, 53 /* 39 */ {_SigNotify, "signal 39"} [all...] |
/prebuilts/go/linux-x86/src/runtime/ |
sigtab_linux_generic.go | 24 /* 10 */ {_SigNotify, "SIGUSR1: user-defined signal 1"}, 26 /* 12 */ {_SigNotify, "SIGUSR2: user-defined signal 2"}, 46 /* 32 */ {_SigSetStack + _SigUnblock, "signal 32"}, /* SIGCANCEL; see issue 6997 */ 47 /* 33 */ {_SigSetStack + _SigUnblock, "signal 33"}, /* SIGSETXID; see issues 3871, 9400, 12498 */ 48 /* 34 */ {_SigNotify, "signal 34"}, 49 /* 35 */ {_SigNotify, "signal 35"}, 50 /* 36 */ {_SigNotify, "signal 36"}, 51 /* 37 */ {_SigNotify, "signal 37"}, 52 /* 38 */ {_SigNotify, "signal 38"}, 53 /* 39 */ {_SigNotify, "signal 39"} [all...] |
/external/valgrind/gdbserver_tests/ |
nlvgdbsigqueue.stdoutB.exp-solaris1 | 3 Program received signal SIGTRAP, Trace/breakpoint trap. 6 sending signal 7 sending signal 10 Program received signal SIGUSR1, User defined signal 1. 14 Program received signal SIGTRAP, Trace/breakpoint trap.
|
nlgone_abrt.stdoutB.exp | 2 Program received signal SIGABRT, Aborted. 5 Program terminated with signal SIGABRT, Aborted.
|
/prebuilts/go/darwin-x86/src/cmd/go/internal/base/ |
signal.go | 9 "os/signal" 13 // Interrupted is closed when the go command receives an interrupt signal. 16 // processSignals setups signal handler. 18 sig := make(chan os.Signal) 19 signal.Notify(sig, signalsToIgnore...) 28 // StartSigHandlers starts the signal handlers.
|
/prebuilts/go/linux-x86/src/cmd/go/internal/base/ |
signal.go | 9 "os/signal" 13 // Interrupted is closed when the go command receives an interrupt signal. 16 // processSignals setups signal handler. 18 sig := make(chan os.Signal) 19 signal.Notify(sig, signalsToIgnore...) 28 // StartSigHandlers starts the signal handlers.
|
/external/python/cpython3/Lib/test/ |
test_signal.py | 8 import signal 29 for name in dir(signal): 30 sig = getattr(signal, name) 32 self.assertIsInstance(sig, signal.Handlers) 34 self.assertIsInstance(sig, signal.Sigmasks) 36 self.assertIsInstance(sig, signal.Signals) 38 self.assertIsInstance(sig, signal.Signals) 48 self.assertRaises(ValueError, signal.getsignal, 4242) 50 self.assertRaises(ValueError, signal.signal, 4242 [all...] |
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigdelset/ |
1-1.c | 10 * Test that sigdelset() will remove signo to the set signal set. 12 * 1) Initialize an empty or full signal set. 13 * 2) Add the SIGALRM signal to the empty signal set. 14 * 3) Verify that SIGALRM is a member of the signal set. 15 * 4) Remove the SIGALRM signal from the signal set. 16 * 5) Verify that SIGALRM is not a member of the signal set. 19 #include <signal.h> 32 printf("sigaddset did not successfully add signal\n") [all...] |
1-2.c | 10 * Test that sigdelset() will remove signo to the set signal set. 12 * 1) Initialize an empty or full signal set. 13 * 2) Add the SIGALRM signal to the empty signal set. 14 * 3) Verify that SIGALRM is a member of the signal set. 15 * 4) Remove the SIGALRM signal from the signal set. 16 * 5) Verify that SIGALRM is not a member of the signal set. 19 #include <signal.h> 32 printf("sigaddset did not successfully add signal\n") [all...] |
/external/ltp/testcases/open_posix_testsuite/conformance/definitions/signal_h/ |
50-1-buildonly.c | 2 Test that inclusion of signal.h makes visible all symbols in time.h. 7 #include <signal.h>
|
/external/strace/tests/ |
qual_inject-signal.test | 3 # Check signal injection. 6 run_strace -a12 -echdir,exit_group -einject=chdir:signal=USR1 \
|
/external/strace/tests-m32/ |
qual_inject-signal.test | 3 # Check signal injection. 6 run_strace -a12 -echdir,exit_group -einject=chdir:signal=USR1 \
|
/external/strace/tests-mx32/ |
qual_inject-signal.test | 3 # Check signal injection. 6 run_strace -a12 -echdir,exit_group -einject=chdir:signal=USR1 \
|
/external/valgrind/drd/tests/ |
sigaltstack.stderr.exp | 4 raising the signal 5 caught signal, local var is on 0x........
|
/external/valgrind/memcheck/tests/amd64-solaris/ |
context_sse.stdout.exp | 1 Values in the signal handler: 3 Values after the return from the signal handler:
|
/external/valgrind/memcheck/tests/ |
sigaltstack.stderr.exp | 4 raising the signal 5 caught signal, local var is on 0x........
|
/external/valgrind/memcheck/tests/x86-solaris/ |
context_sse.stdout.exp | 1 Values in the signal handler: 3 Values after the return from the signal handler:
|
/external/valgrind/none/tests/ |
pending.stdout.exp | 1 1: sending signal 4 4: got signal SIGUSR1
|
/external/valgrind/none/tests/s390x/ |
test_sig.stdout.exp | 1 Got signal 14 6 Got signal 10
|