HomeSort by relevance Sort by last modified time
    Searched full:signal (Results 251 - 275 of 12319) sorted by null

<<11121314151617181920>>

  /external/strace/tests-mx32/
printstrn-umoven.gen.test 2 # Generated by ./tests/gen_tests.sh from ./tests/gen_tests.in (printstrn-umoven -s4096 -e signal=none -e trace=add_key); do not edit.
4 run_strace_match_diff -s4096 -e signal=none -e trace=add_key
ptrace.gen.test 2 # Generated by ./tests/gen_tests.sh from ./tests/gen_tests.in (ptrace -a23 -e signal=none); do not edit.
4 run_strace_match_diff -a23 -e signal=none
qual_inject-error-signal.test 3 # Check fault injection along with signal injection.
6 run_strace -a12 -echdir,exit_group -einject=chdir:error=ENOENT:signal=USR1 \
wait4-v.gen.test 2 # Generated by ./tests/gen_tests.sh from ./tests/gen_tests.in (wait4-v -v -e signal=none -e trace=wait4); do not edit.
4 run_strace_match_diff -v -e signal=none -e trace=wait4
waitid-v.gen.test 2 # Generated by ./tests/gen_tests.sh from ./tests/gen_tests.in (waitid-v -v -e signal=none -e trace=waitid); do not edit.
4 run_strace_match_diff -v -e signal=none -e trace=waitid
  /external/valgrind/memcheck/tests/amd64-solaris/
context_fpu.stdout.exp 1 Values in the signal handler:
3 Values after the return from the signal handler:
context_gpr.stdout.exp 1 Values in the signal handler:
3 Values after the return from the signal handler:
  /external/valgrind/memcheck/tests/
signal2.c 4 #include <signal.h>
14 signal(SIGSEGV, sig_hdlr);
  /external/valgrind/memcheck/tests/x86-solaris/
context_fpu.stdout.exp 1 Values in the signal handler:
3 Values after the return from the signal handler:
context_gpr.stdout.exp 1 Values in the signal handler:
3 Values after the return from the signal handler:
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_signal.py 7 import signal
13 raise unittest.SkipTest("Can't test signal on %s" % sys.platform)
57 print "handlerA invoked from signal %s at:\n%s" % (
63 print "handlerB invoked from signal %s at:\n%s" % (
80 signal.signal(signal.SIGHUP, self.handlerA)
81 signal.signal(signal.SIGUSR1, self.handlerB
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_signal.py 7 import signal
13 raise unittest.SkipTest("Can't test signal on %s" % sys.platform)
57 print "handlerA invoked from signal %s at:\n%s" % (
63 print "handlerB invoked from signal %s at:\n%s" % (
80 signal.signal(signal.SIGHUP, self.handlerA)
81 signal.signal(signal.SIGUSR1, self.handlerB
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_signal.py 7 import signal
13 raise unittest.SkipTest("Can't test signal on %s" % sys.platform)
57 print "handlerA invoked from signal %s at:\n%s" % (
63 print "handlerB invoked from signal %s at:\n%s" % (
80 signal.signal(signal.SIGHUP, self.handlerA)
81 signal.signal(signal.SIGUSR1, self.handlerB
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_signal.py 7 import signal
13 raise unittest.SkipTest("Can't test signal on %s" % sys.platform)
57 print "handlerA invoked from signal %s at:\n%s" % (
63 print "handlerB invoked from signal %s at:\n%s" % (
80 signal.signal(signal.SIGHUP, self.handlerA)
81 signal.signal(signal.SIGUSR1, self.handlerB
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_signal.py 7 import signal
13 raise unittest.SkipTest("Can't test signal on %s" % sys.platform)
57 print "handlerA invoked from signal %s at:\n%s" % (
63 print "handlerB invoked from signal %s at:\n%s" % (
80 signal.signal(signal.SIGHUP, self.handlerA)
81 signal.signal(signal.SIGUSR1, self.handlerB)
    [all...]
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/raise/
1-2.c 8 * Test that the raise(<signal>) function shall send the signal
11 * 1) Set up a signal handler for a signal in the parent process.
15 * 3) Set up a signal handler for the same signal as in the parent process.
17 * 4) Raise the signal.
18 * 5) If signal handler was called, return 1 (so WEXITSTATUS can test
21 * This test is only performed on one signal. All other signals are
25 #include <signal.h
    [all...]
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigaction/
assertions.xml 4 specifying the action to be associated with the specified signal.
8 associated with the signal is stored in the location pointed to by
12 If the argument "act" is a null pointer, signal handling is unchanged.
15 The SIGKILL and SIGSTOP signals shall not be added to the signal mask
21 with the specified signal.
26 the sa_sigaction field specifies a signal catching function.
30 signal catching function, or if the SA_SIGINFO bit is set, the sa_mask
31 field indentifies a set of signals that shall be added to the signal mask
32 of the thread before the signal-catching function is invoked.
35 If the sa_handler field specifies a signal-catching function, the sa_mas
    [all...]
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigpause/
assertions.xml 3 The sigpause() function shall remove sig from the signal mask of
5 receives a signal
8 The sigpause() function shall restore the signal
13 a signal is received, after which it shall return -1 and set errno to
17 If the sig argument is an illegal signal number, then errno will be set to [EINVAL].
  /external/python/cpython2/Lib/test/subprocessdata/
sigchild_ignore.py 1 import signal, subprocess, sys, time
5 signal.signal(signal.SIGCHLD, signal.SIG_IGN)
  /external/python/cpython3/Lib/test/subprocessdata/
sigchild_ignore.py 1 import signal, subprocess, sys, time
5 signal.signal(signal.SIGCHLD, signal.SIG_IGN)
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/subprocessdata/
sigchild_ignore.py 1 import signal, subprocess, sys, time
5 signal.signal(signal.SIGCHLD, signal.SIG_IGN)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/subprocessdata/
sigchild_ignore.py 1 import signal, subprocess, sys, time
5 signal.signal(signal.SIGCHLD, signal.SIG_IGN)
  /prebuilts/go/darwin-x86/misc/cgo/test/
setgid_linux.go 18 "os/signal"
44 // Now try it again after using signal.Notify.
45 signal.Notify(make(chan os.Signal, 1), syscall.SIGINT)
47 t.Error("setgid hung after signal.Notify")
  /prebuilts/go/darwin-x86/misc/cgo/testcshared/src/libgo5/
libgo5.go 11 "os/signal"
17 var sigioChan chan os.Signal
22 sigioChan = make(chan os.Signal, 1)
23 signal.Notify(sigioChan, syscall.SIGIO)
29 signal.Reset(syscall.SIGIO)
  /prebuilts/go/darwin-x86/src/runtime/
sigqueue_plan9.go 5 // This file implements runtime support for signal handling.
35 // It is not allowed to allocate memory in the signal handler.
73 // Called from sighandler to send a signal back out of the signal handling thread.
74 // Reports whether the signal was sent. If not, the caller typically crashes the program.
80 // Add signal to outgoing queue.
95 // Called to receive the next queued signal.
97 //go:linkname signal_recv os/signal.signal_recv
113 // signalWaitUntilIdle waits until the signal delivery mechanism is idle.
114 // This is used to ensure that we do not drop a signal notification du
    [all...]

Completed in 734 milliseconds

<<11121314151617181920>>