HomeSort by relevance Sort by last modified time
    Searched full:signals (Results 76 - 100 of 1722) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/valgrind/main/none/tests/
thread-exits.c 2 This test makes sure the thread exit notification signals don't
3 interfere with the stack growth signals.
5 Thread death notifications are sent as RT signals, which are
10 The system has a finite limit to the number of RT signals which can
17 unwanted signals are discarded while the main thread is blocked in
  /art/runtime/
signal_catcher.cc 82 // Since we know the thread is just sitting around waiting for signals
168 int SignalCatcher::WaitForSignal(Thread* self, SignalSet& signals) {
171 // Signals for sigwait() must be blocked but not ignored. We
172 // block signals like SIGQUIT for all threads, so the condition
175 int signal_number = signals.Wait();
204 // Set up mask with signals we want to handle.
205 SignalSet signals; local
206 signals.Add(SIGQUIT);
207 signals.Add(SIGUSR1);
210 int signal_number = signal_catcher->WaitForSignal(self, signals);
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/serial/
serial_connection_posix.cc 205 api::serial::DeviceControlSignals* signals) const {
211 signals->dcd = (status & TIOCM_CAR) != 0;
212 signals->cts = (status & TIOCM_CTS) != 0;
213 signals->dsr = (status & TIOCM_DSR) != 0;
214 signals->ri = (status & TIOCM_RI) != 0;
219 const api::serial::HostControlSignals& signals) {
226 if (signals.dtr.get()) {
227 if (*signals.dtr) {
234 if (signals.rts.get()) {
235 if (*signals.rts)
    [all...]
  /external/bison/lib/
spawn-pipe.h 61 The reason is that child processes inherit the mask of blocked signals
63 likewise, signals ignored in the parent are also ignored in the child
67 assume that they start with certain signals set to the default
70 signals, such as the one in the ISO C standard, may not behave
71 properly if invoked with some signals blocked. Therefore, it is
72 best not to block or ignore signals across execs without explicit
73 reason to do so, and especially not to block signals across execs
fatal-signal.c 37 /* The list of fatal signals.
38 These are those signals whose default action is to terminate the process
53 /* ISO C 99 signals. */
60 /* POSIX:2001 signals. */
67 /* BSD signals. */
74 /* Native Windows signals. */
83 /* Eliminate signals whose signal handler is SIG_IGN. */
272 /* Temporarily delay the catchable fatal signals. */
280 /* Stop delaying the catchable fatal signals. */
  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
signal.c 41 * Win32 does not implement signals.
42 * Signals are simply software interrupts.
46 * Signals are always asynchronous (no deferred signals).
48 * A similar system can be written to deliver signals
52 * signals it will respond to. Handler routines
57 * thread must then (except for some signals) return to
  /external/chromium_org/chrome/common/extensions/api/
serial.idl 174 // The set of control signals which may be sent to a connected serial device
175 // using <code>setControlSignals</code>. Note that support for these signals
185 // The set of control signals which may be set by a connected serial device.
187 // support for these signals is device-dependent.
202 // Returns a snapshot of current control signals.
203 callback GetControlSignalsCallback = void (DeviceControlSignals signals);
297 // Retrieves the state of control signals on a given connection.
299 // |callback| : Called when the control signals are available.
303 // Sets the state of control signals on a given connection.
305 // |signals| : The set of signal changes to send to the device
    [all...]
  /external/chromium_org/components/nacl/loader/nonsfi/
irt_exception_handling.cc 24 // Crash signals to handle. The differences from SFI NaCl are that
94 // Mask all signals we catch to prevent re-entry.
102 NaClLog(LOG_FATAL, "sigaction to register signals failed.\n");
  /external/chromium_org/mojo/public/c/system/tests/
core_unittest_pure_c.c 45 MojoHandleSignals signals; local
63 signals = MOJO_HANDLE_SIGNAL_READABLE;
65 MojoWaitMany(&handle0, &signals, 1, 1));
  /external/valgrind/main/docs/internals/
threads-syscalls-signals.txt 57 all its signals blocked (all but the fault signals: SEGV, BUS, ILL, etc).
60 signals are pending for it. poll_signals grabs the next pending signal
62 it uses the sigtimedwait() syscall to fetch blocked pending signals
64 we avoid the complexity of having signals delivered asynchronously via
68 Fault signals, being caused by a specific instruction, are the exception
80 have to set things up to accept signals during a syscall so that we get
88 window where signals are actually unblocked very narrow, the number of
95 per-signal special cases (which is, roughly, signals 1-32 are not queued
96 except when they are, and signals 33-64 are queued except when they aren't)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/
signal.h 171 /* Set the mask of blocked signals to MASK,
195 /* Block signals in MASK, returning the old mask. */
198 /* Set the mask of blocked signals to MASK, returning the old mask. */
221 /* Clear all signals from SET. */
224 /* Set all signals in SET. */
254 /* Get and/or change the set of blocked signals. */
258 /* Change the set of blocked signals to SET,
259 wait until a signal arrives, and restore the set of blocked signals.
269 /* Put in SET all signals that are blocked and waiting to be delivered. */
273 /* Select any of pending signals from SET or wait for any to arrive
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
signal.h 171 /* Set the mask of blocked signals to MASK,
195 /* Block signals in MASK, returning the old mask. */
198 /* Set the mask of blocked signals to MASK, returning the old mask. */
221 /* Clear all signals from SET. */
224 /* Set all signals in SET. */
254 /* Get and/or change the set of blocked signals. */
258 /* Change the set of blocked signals to SET,
259 wait until a signal arrives, and restore the set of blocked signals.
269 /* Put in SET all signals that are blocked and waiting to be delivered. */
273 /* Select any of pending signals from SET or wait for any to arrive
    [all...]
  /development/samples/training/multiscreen/newsreader/src/com/example/android/newsreader/
CompatActionBarNavListener.java 26 * Signals that the given news category was selected.
  /external/chromium_org/content/browser/loader/
resource_scheduler.h 37 // IPCs may be meaningless if they arrive after the UI thread signals a renderer
64 // Signals from the UI thread, posted as tasks on the IO thread:
72 // Signals from IPC messages directly from the renderers:
81 // Signals from the IO thread
  /external/chromium_org/jingle/notifier/base/
weak_xmpp_client.cc 22 // We don't want XmppClient raising any signals once its invalidated.
  /external/chromium_org/mojo/public/c/environment/
async_waiter.h 20 MojoHandleSignals signals,
  /external/chromium_org/mojo/public/platform/native/
system_thunks.cc 24 MojoHandleSignals signals,
27 return g_thunks.Wait(handle, signals, deadline);
31 const MojoHandleSignals* signals,
35 return g_thunks.WaitMany(handles, signals, num_handles, deadline);
  /external/chromium_org/mojo/system/
local_message_pipe_endpoint.cc 131 MojoHandleSignals signals,
136 if (state.satisfies(signals))
138 if (!state.can_satisfy(signals))
141 waiter_list_.AddWaiter(waiter, signals, context);
message_pipe_endpoint.cc 31 MojoHandleSignals /*signals*/,
  /external/chromium_org/third_party/skia/debugger/QT/
SkGLWidget.h 38 signals:
  /external/javassist/src/main/javassist/
NotFoundException.java 19 * Signals that something could not be found.
  /external/javassist/src/main/javassist/bytecode/
BadBytecode.java 19 * Signals that a bad bytecode sequence has been found.
  /external/javassist/src/main/javassist/tools/reflect/
CannotCreateException.java 19 * Signals that <code>ClassMetaobject.newInstance()</code> fails.
  /external/ltrace/testsuite/ltrace.main/
signals.c 1 /* Ltrace Test : signals.c.
  /external/ltrace/testsuite/ltrace.torture/
signals.c 1 /* Ltrace Test : signals.c.

Completed in 662 milliseconds

1 2 34 5 6 7 8 91011>>