Searched refs:signal (Results 351 - 375 of 1027) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/net/tools/flip_server/
H A Dflip_in_mem_edsm_server.cc6 #include <signal.h>
159 signal(SIGPIPE, SIG_IGN);
160 signal(SIGTERM, SignalHandler);
161 signal(SIGINT, SignalHandler);
162 signal(SIGHUP, SignalHandler);
400 // Close logfile when HUP signal is received. Logging system will
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
H A Dsubprocess.cc42 #include <signal.h>
356 SignalHandler* old_pipe_handler = signal(SIGPIPE, SIG_IGN);
378 // Interrupted by signal. Try again.
432 signal(SIGPIPE, old_pipe_handler);
442 int signal = WTERMSIG(status);
444 "Plugin killed by signal $0.", signal);
/external/protobuf/src/google/protobuf/compiler/
H A Dsubprocess.cc38 #include <signal.h>
351 SignalHandler* old_pipe_handler = signal(SIGPIPE, SIG_IGN);
373 // Interrupted by signal. Try again.
427 signal(SIGPIPE, old_pipe_handler);
437 int signal = WTERMSIG(status);
439 "Plugin killed by signal $0.", signal);
/external/e2fsprogs/misc/
H A Dbadblocks.c44 #include <signal.h>
237 signal (SIGALRM, alarm_intr);
260 signal (SIGHUP, terminate_intr);
261 signal (SIGINT, terminate_intr);
262 signal (SIGPIPE, terminate_intr);
263 signal (SIGTERM, terminate_intr);
264 signal (SIGUSR1, terminate_intr);
265 signal (SIGUSR2, terminate_intr);
271 signal (SIGHUP, SIG_DFL);
272 signal (SIGIN
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/test/delay_tool/
H A Dparse_delay_file.m51 signal = fread(fid, 1, '*int32');
53 switch signal
57 % keep on reading batches of M until the signal is no longer "3"
/external/chromium_org/build/android/
H A Dadb_logcat_printer.py27 import signal namespace
135 os.kill(monitor_pid, signal.SIGTERM)
/external/chromium_org/chrome/browser/chromeos/dbus/
H A Dservice_provider_test_helper.cc127 // a response that the caller will ignore, this will send a signal, which
144 // Tell the callback that the object proxy is connected to the signal.
150 void ServiceProviderTestHelper::MockSendSignal(dbus::Signal* signal) { argument
153 on_signal_callback_.Run(signal);
/external/chromium_org/chrome/browser/extensions/
H A Dcontent_script_apitest.cc212 content::WindowedNotificationObserver signal(
223 signal.Wait();
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/host/chrome/
H A Dmathjax.js220 callback, signal) {
221 this.postMsg('RegSig', callback, {sig: signal});
/external/chromium_org/chrome/test/chromedriver/
H A Dutil.py10 import signal namespace
129 os.kill(pid, signal.SIGTERM)
/external/chromium_org/chromeos/dbus/
H A Dshill_client_helper.h84 // Adds an |observer| of the PropertyChanged signal.
87 // Removes an |observer| of the PropertyChanged signal.
90 // Starts monitoring PropertyChanged signal. If there aren't observers for the
91 // PropertyChanged signal, the actual monitoring will be delayed until the
162 // Starts monitoring PropertyChanged signal.
165 // Handles the result of signal connection setup.
167 const std::string& signal,
170 // Handles PropertyChanged signal.
171 void OnPropertyChanged(dbus::Signal* signal);
/external/chromium_org/native_client_sdk/src/libraries/third_party/newlib-extras/sys/
H A Dsignal.h1 /* sys/signal.h */
15 /* Cygwin defines it's own sigset_t in include/cygwin/signal.h */
29 #define SIGEV_SIGNAL 2 /* A queued signal, with an application defined */
40 int sival_int; /* Integer signal value */
41 void *sival_ptr; /* Pointer signal value */
67 int si_code; /* Cause of the signal */
75 #define SA_SIGINFO 2 /* Invoke the signal catching function with */
90 int sa_flags; /* Special flags to affect behavior of signal */
92 /* during execution of signal-catching */
108 #include <cygwin/signal
[all...]
/external/chromium_org/testing/gtest/test/
H A Dgtest_xml_output_unittest.py239 # p.signal is avalable only if p.terminated_by_signal is True.
242 '%s was killed by signal %d' % (GTEST_PROGRAM_NAME, p.signal))
276 '%s was killed by signal %d' % (gtest_prog_name, p.signal))
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/
H A Dlint_test_expectations.py31 import signal namespace
40 INTERRUPTED_EXIT_STATUS = signal.SIGINT + 128
/external/chromium_org/third_party/skia/experimental/webtry/sys/
H A Dwebtry_init97 start-stop-daemon --stop --signal 1 --quiet --pidfile $PIDFILE --name $NAME
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dprofiler.cc38 #include <signal.h>
51 #include <cygwin/signal.h>
70 #include "conflict-signal.h" /* used on msvc machines */
102 // call made from the signal handler, to protect against concurrent use of
103 // collector_'s control routines. Code other than signal handler must
104 // unregister the signal handler before calling any collector_ method.
260 // access the data touched by prof_handler() disable this signal handler before
272 // frame, but as the "pc" value in the signal handler context.
276 // signal handler frame) since they are artifacts of profiling and
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dprofiler.cc38 #include <signal.h>
51 #include <cygwin/signal.h>
68 #include "conflict-signal.h" /* used on msvc machines */
100 // call made from the signal handler, to protect against concurrent use of
101 // collector_'s control routines. Code other than signal handler must
102 // unregister the signal handler before calling any collector_ method.
258 // access the data touched by prof_handler() disable this signal handler before
270 // frame, but as the "pc" value in the signal handler context.
274 // signal handler frame) since they are artifacts of profiling and
/external/chromium_org/tools/valgrind/
H A Dcommon.py8 import signal namespace
78 os.kill(p.pid, signal.SIGINT)
/external/fio/
H A Dserver.h128 uint32_t signal; member in struct:cmd_end_pdu
185 extern int fio_net_send_stop(int sk, int error, int signal);
/external/gtest/test/
H A Dgtest_xml_output_unittest.py239 # p.signal is avalable only if p.terminated_by_signal is True.
242 '%s was killed by signal %d' % (GTEST_PROGRAM_NAME, p.signal))
276 '%s was killed by signal %d' % (gtest_prog_name, p.signal))
/external/libunwind/doc/
H A Dunw_regname.tex33 use from a signal handler.
H A Dunw_strerror.tex31 from a signal handler.
/external/lldb/source/Plugins/Process/FreeBSD/
H A DProcessMonitor.h15 #include <signal.h>
175 /// LLDB_INVALID_SIGNAL_NUMBER, deliver that signal to the thread.
180 /// LLDB_INVALID_SIGNAL_NUMBER, deliver that signal to the thread.
184 /// Sends the inferior process a PTRACE_KILL signal. The inferior will
285 lldb::pid_t pid, bool exited, int signal, int status);
/external/lldb/test/functionalities/thread/concurrent_events/
H A Dmain.cpp11 // (breakpoints, watchpoints, crashes, and signal generation/delivery) happen
22 #include <signal.h>
76 // Send a user-defined signal to the current process
78 // Send a user-defined signal to the current thread
105 g_sigusr1_count += 1; // Break here in signal handler
108 /// Register a simple function for to handle signal
109 void register_signal_handler(int signal, void (*handler)(int)) argument
151 register_signal_handler(SIGUSR1, sigusr1_handler); // Break here and adjust num_[breakpoint|watchpoint|signal|crash]_threads
/external/skia/experimental/webtry/sys/
H A Dwebtry_init97 start-stop-daemon --stop --signal 1 --quiet --pidfile $PIDFILE --name $NAME

Completed in 801 milliseconds

<<11121314151617181920>>