HomeSort by relevance Sort by last modified time
    Searched defs:signal (Results 1 - 25 of 730) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/src/os/signal/
doc.go 6 Package signal implements access to incoming signals.
21 synchronous signal into a run-time panic.
27 Of the asynchronous signals, the SIGHUP signal is sent when a program
28 loses its controlling terminal. The SIGINT signal is sent when the
30 which by default is ^C (Control-C). The SIGQUIT signal is sent when
38 By default, a synchronous signal is converted into a run-time panic. A
39 SIGHUP, SIGINT, or SIGTERM signal causes the program to exit. A
40 SIGQUIT, SIGILL, SIGTRAP, SIGABRT, SIGSTKFLT, SIGEMT, or SIGSYS signal
42 SIGTTOU signal gets the system default behavior (these signals are
43 used by the shell for job control). The SIGPROF signal is handle
220 package signal package
    [all...]
signal_windows_test.go 5 package signal package
42 "os/signal"
48 c := make(chan os.Signal, 10)
49 signal.Notify(c)
53 log.Fatalf("Wrong signal received: got %q, want %q\n", s, os.Interrupt)
signal_plan9_test.go 5 package signal package
15 func waitSig(t *testing.T, c <-chan os.Signal, sig os.Signal) {
19 t.Fatalf("signal was %v, want %v", s, sig)
26 // Test that basic signal handling works.
29 c := make(chan os.Signal, 1)
39 c1 := make(chan os.Signal, 1)
70 sig := make(chan os.Signal, 1)
117 // Send the signal.
125 // Ask for signal
    [all...]
  /prebuilts/go/linux-x86/src/os/signal/
doc.go 6 Package signal implements access to incoming signals.
21 synchronous signal into a run-time panic.
27 Of the asynchronous signals, the SIGHUP signal is sent when a program
28 loses its controlling terminal. The SIGINT signal is sent when the
30 which by default is ^C (Control-C). The SIGQUIT signal is sent when
38 By default, a synchronous signal is converted into a run-time panic. A
39 SIGHUP, SIGINT, or SIGTERM signal causes the program to exit. A
40 SIGQUIT, SIGILL, SIGTRAP, SIGABRT, SIGSTKFLT, SIGEMT, or SIGSYS signal
42 SIGTTOU signal gets the system default behavior (these signals are
43 used by the shell for job control). The SIGPROF signal is handle
220 package signal package
    [all...]
signal_windows_test.go 5 package signal package
42 "os/signal"
48 c := make(chan os.Signal, 10)
49 signal.Notify(c)
53 log.Fatalf("Wrong signal received: got %q, want %q\n", s, os.Interrupt)
signal_plan9_test.go 5 package signal package
15 func waitSig(t *testing.T, c <-chan os.Signal, sig os.Signal) {
19 t.Fatalf("signal was %v, want %v", s, sig)
26 // Test that basic signal handling works.
29 c := make(chan os.Signal, 1)
39 c1 := make(chan os.Signal, 1)
70 sig := make(chan os.Signal, 1)
117 // Send the signal.
125 // Ask for signal
    [all...]
  /bionic/libc/bionic/
signal.cpp 29 #include <signal.h>
44 sighandler_t signal(int signum, sighandler_t handler) { function
  /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...]
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
signalbar.cpp 31 int signal; local
39 signal = 0 - (256 - index.data().toInt());
41 signal = index.data().toInt();
45 if (signal < opts.minimum)
47 else if (signal > opts.maximum)
50 opts.progress = signal;
52 opts.text = QString::number(signal) + " dBm";
  /libcore/ojluni/src/main/java/sun/nio/ch/
NativeThread.java 34 // upon which Java threads are built, and defines a simple signal mechanism
37 // always returns -1 and the signal(long) method has no effect.
52 public static native void signal(long nt); method in class:NativeThread
  /bionic/libc/include/android/
legacy_signal_inlines.h 33 #include <signal.h>
45 /* Signal numbers start at 1, but bit positions start at 0. */
56 /* Signal numbers start at 1, but bit positions start at 0. */
68 /* Signal numbers start at 1, but bit positions start at 0. */
97 static __inline sighandler_t signal(int s, sighandler_t f) { function
  /cts/tests/tests/security/jni/
android_security_cts_SeccompTest.cpp 55 int signal = WTERMSIG(status); local
56 if (signal == 31) {
61 ALOGE("Unexpected signal");
  /external/swiftshader/src/OpenGL/libEGL/
Sync.hpp 42 void wait() { context->finish(); signal(); }
43 void signal() { status = EGL_SIGNALED_KHR; } function in class:egl::FenceSync
  /prebuilts/go/darwin-x86/src/os/
exec_unix.go 28 // so that Process.signal will not send a signal.
31 // active call to the signal method to complete.
55 func (p *Process) signal(sig Signal) error { func
67 s, ok := sig.(syscall.Signal)
69 return errors.New("os: unsupported signal type")
exec_windows.go 57 func (p *Process) signal(sig Signal) error { func
  /prebuilts/go/linux-x86/src/os/
exec_unix.go 28 // so that Process.signal will not send a signal.
31 // active call to the signal method to complete.
55 func (p *Process) signal(sig Signal) error { func
67 s, ok := sig.(syscall.Signal)
69 return errors.New("os: unsupported signal type")
exec_windows.go 57 func (p *Process) signal(sig Signal) error { func
  /cts/tests/app/app/src/android/app/stubs/
KeyboardShortcutsActivity.java 61 mSignalOnActivityDeFocused.signal();
87 mSignalOnProvideKeyboardShortcuts.signal();
  /packages/apps/DocumentsUI/perf-tests/src/com/android/documentsui/
FilesActivityPerfTest.java 85 final CountDownLatch signal = new CountDownLatch(1); local
107 signal.countDown();
118 signal.await();
  /development/ndk/platforms/android-9/include/
signal.h 35 #include <asm/signal.h>
49 /* _NSIG is used by the SIGRTMAX definition under <asm/signal.h>, however
111 static __inline__ __sighandler_t signal(int s, __sighandler_t f) function
  /external/libbrillo/brillo/
asynchronous_signal_handler.cc 7 #include <signal.h>
25 CHECK_EQ(sigemptyset(&signal_mask_), 0) << "Failed to initialize signal mask";
27 << "Failed to initialize signal mask";
59 void AsynchronousSignalHandler::RegisterHandler(int signal,
61 registered_callbacks_[signal] = callback;
62 CHECK_EQ(0, sigaddset(&signal_mask_, signal));
66 void AsynchronousSignalHandler::UnregisterHandler(int signal) {
67 Callbacks::iterator callback_it = registered_callbacks_.find(signal);
70 ResetSignal(signal);
78 int signal = info.ssi_signo local
    [all...]
  /external/ltp/testcases/kernel/syscalls/rt_sigaction/
rt_sigaction01.c 25 /* of a particular signal. The action is specified by the */
26 /* sigaction structure. The previous action on the signal is */
34 #include <signal.h>
67 tst_resm(TINFO, "Signal Handler Called with signal number %d\n", sig);
86 int signal; local
99 for (signal = SIGRTMIN; signal <= SIGRTMAX; signal++) {
105 (signal, 0, test_flags[flag]))
116 kill(getpid(), signal); local
    [all...]
rt_sigaction02.c 30 #include <signal.h>
74 int signal; local
84 for (signal = SIGRTMIN; signal <= SIGRTMAX; signal++) {
85 tst_resm(TINFO, "Signal %d", signal);
96 TEST(ltp_rt_sigaction(signal,
106 TCID, signal,
  /external/openssh/openbsd-compat/
bsd-misc.h 99 /* wrapper for signal interface */
103 #define signal(a,b) mysignal(a,b) macro
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
posix_event.hpp 41 // Signal the event. (Retained for backward compatibility.)
43 void signal(Lock& lock) function in class:asio::detail::posix_event
48 // Signal all waiters.
58 // Unlock the mutex and signal one waiter.
70 // If there's a waiter, unlock the mutex and signal it.

Completed in 883 milliseconds

1 2 3 4 5 6 7 8 91011>>