Searched refs:signal (Results 251 - 275 of 1027) sorted by relevance

<<11121314151617181920>>

/external/libedit/examples/
H A Dtc1.c59 #include <signal.h>
141 (void) signal(SIGINT, sig);
142 (void) signal(SIGQUIT, sig);
143 (void) signal(SIGHUP, sig);
144 (void) signal(SIGTERM, sig);
197 (void) fprintf(stderr, "Got signal %d.\n", gotsig);
H A Dwtc1.c3 #include <signal.h>
122 (void)signal(SIGINT, sig);
123 (void)signal(SIGQUIT, sig);
124 (void)signal(SIGHUP, sig);
125 (void)signal(SIGTERM, sig);
173 (void)fprintf(stderr, "Got signal %d.\n", gotsig);
/external/linux-tools-perf/perf-3.12.0/tools/perf/ui/gtk/
H A Dannotate.c182 signal(SIGSEGV, perf_gtk__signal);
183 signal(SIGFPE, perf_gtk__signal);
184 signal(SIGINT, perf_gtk__signal);
185 signal(SIGQUIT, perf_gtk__signal);
186 signal(SIGTERM, perf_gtk__signal);
/external/lldb/source/Target/
H A DUnixSignals.cpp78 AddSignal (15, "SIGTERM", "TERM", false, true , true , "software termination signal from kill");
80 AddSignal (17, "SIGSTOP", "STOP", true , true , true , "sendable stop signal not from tty");
81 AddSignal (18, "SIGTSTP", "TSTP", false, true , true , "stop signal from tty");
86 AddSignal (23, "SIGIO", "IO", false, false, false, "input/output possible signal");
93 AddSignal (30, "SIGUSR1", "USR1", false, true , true , "user defined signal 1");
94 AddSignal (31, "SIGUSR2", "USR2", false, true , true , "user defined signal 2");
197 const Signal &signal = pos->second; local
198 should_suppress = signal.m_suppress;
199 should_stop = signal.m_stop;
200 should_notify = signal
[all...]
/external/chromium_org/remoting/host/linux/
H A Dlinux_me2me_host.py26 import signal namespace
482 # Have the host process use SIGUSR1 to signal a successful start.
491 signal.signal(signal.SIGUSR1, sigusr1_handler)
492 args.append("--signal-parent")
671 # This signal will cause the read loop below to stop with an EINTR IOError.
677 signal.signal(signal
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DMessageQueue.h89 m_condition.signal();
109 m_condition.signal();
118 m_condition.signal();
/external/chromium_org/third_party/skia/tools/
H A DCrashHandler.cpp67 #include <signal.h>
79 // Register our signal handler unless something's already done so (e.g. catchsegv).
80 void (*prev)(int) = signal(kSignals[i], handler);
82 signal(kSignals[i], prev);
/external/libvpx/libvpx/vp8/encoder/x86/
H A Ddenoising_sse2.c27 MACROBLOCK *signal, unsigned int motion_magnitude,
30 unsigned char *sig = signal->thismb;
118 signal->thismb, sig_stride);
25 vp8_denoiser_filter_sse2(YV12_BUFFER_CONFIG *mc_running_avg, YV12_BUFFER_CONFIG *running_avg, MACROBLOCK *signal, unsigned int motion_magnitude, int y_offset, int uv_offset) argument
/external/lldb/source/Host/common/
H A DTerminal.cpp15 #include <signal.h>
186 // Save the original signal handler.
188 saved_sigttou_callback = (void (*)(int)) signal (SIGTTOU, SIG_IGN);
191 // Restore the original signal handler.
192 signal (SIGTTOU, saved_sigttou_callback);
/external/openssl/crypto/rc2/
H A Drc2speed.c60 /* 06-Apr-92 Luke Brennan Support for VMS and add extra signal calls */
73 #include <signal.h>
127 signal(SIGALRM,sig_done);
216 signal(SIGALRM,sig_done);
/external/openssl/crypto/rc4/
H A Drc4speed.c60 /* 06-Apr-92 Luke Brennan Support for VMS and add extra signal calls */
73 #include <signal.h>
127 signal(SIGALRM,sig_done);
215 signal(SIGALRM,sig_done);
/external/skia/tools/
H A DCrashHandler.cpp61 #include <signal.h>
73 // Register our signal handler unless something's already done so (e.g. catchsegv).
74 void (*prev)(int) = signal(kSignals[i], handler);
76 signal(kSignals[i], prev);
/external/libnfc-nci/src/adaptation/
H A DNfcAdaptation.cpp213 ** Function: NfcAdaptation::signal()
215 ** Description: signal the CondVar to release the thread that is waiting
220 void NfcAdaptation::signal () function in class:NfcAdaptation
222 mCondVar.signal();
264 NfcAdaptation::GetInstance().signal();
616 mHalOpenCompletedEvent.signal ();
622 mHalCloseCompletedEvent.signal ();
752 ** Function: ThreadCondVar::signal()
754 ** Description: signal the mCondVar
759 void ThreadCondVar::signal() function in class:ThreadCondVar
[all...]
/external/chromium_org/build/util/lib/common/
H A Dutil.py10 import signal namespace
111 os.kill(pid, signal.SIGTERM)
/external/chromium_org/chrome/third_party/chromevox/chromevox/injected/
H A Dmathjax.js101 * Registers a callback for a particular Mathjax signal.
103 * @param {string} signal The Mathjax signal on which to fire the callback.
105 cvox.MathJax.registerSignal = function(callbackId, signal) {
107 cvox.MathJax.getMathmlCallback_(callbackId), signal);
/external/chromium_org/content/browser/geolocation/
H A Dwifi_data_provider_mac.cc133 // Currently we get only MAC address, signal strength, channel
134 // signal-to-noise and SSID
138 // WirelessNetworkInfo::signal appears to be signal strength in dBm.
139 access_point_data.radio_signal_strength = access_point_info->signal;
142 access_point_data.signal_to_noise = access_point_info->signal -
/external/chromium_org/content/child/
H A Dchild_process.cc8 #include <signal.h> // For SigUSR1Handler below.
26 static void SigUSR1Handler(int signal) { } argument
137 // Install a signal handler so that pause can be woken.
/external/chromium_org/dbus/
H A Dend_to_end_async_unittest.cc71 // Connect to the "Test" signal of "org.chromium.TestInterface" from
80 // Wait until the object proxy is connected to the signal.
84 // Connect to the "Test2" signal of "org.chromium.TestInterface" from
88 // one signal of the same interface. See crosbug.com/23382 for details.
96 // Wait until the object proxy is connected to the signal.
105 // Connect to the "Test" signal of "org.chromium.TestInterface" from
114 // Wait until the root object proxy is connected to the signal.
220 // Called when the "Test" signal is received, in the main thread.
222 void OnTestSignal(Signal* signal) { argument
223 MessageReader reader(signal);
231 OnRootTestSignal(Signal* signal) argument
238 OnTest2Signal(Signal* signal) argument
628 OnAdditionalTestSignal(Signal* signal) argument
[all...]
/external/chromium_org/testing/
H A Dxvfb.py14 import signal namespace
26 os.kill(pid, signal.SIGKILL)
/external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
H A Dtcpdump_profiler.py6 import signal namespace
73 self._proc.send_signal(signal.SIGINT)
/external/chromium_org/v8/tools/testrunner/local/
H A Dcommands.py30 import signal namespace
44 os.kill(pid, signal.SIGTERM)
/external/chromium_org/v8/tools/testrunner/server/
H A Ddaemon.py13 from signal import SIGTERM
14 from signal import SIGINT
/external/lldb/tools/lldb-platform/
H A Dlldb-platform.cpp15 #include <signal.h>
72 signal (SIGPIPE, signal_handler);
/external/protobuf/gtest/test/
H A Dgtest_xml_output_unittest.py178 "%s was killed by signal %d" % (gtest_prog_name, p.signal))
204 "%s was killed by signal %d" % (gtest_prog_name, p.signal))
/external/valgrind/main/drd/tests/
H A Dmonitor_example.cpp125 void signal() function in class:Monitor
193 m_monitor.signal();

Completed in 741 milliseconds

<<11121314151617181920>>