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

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/mojo/system/
waiter_list.cc 24 if (state.satisfies(it->signals))
26 else if (!state.can_satisfy(it->signals))
40 MojoHandleSignals signals,
42 waiters_.push_back(WaiterInfo(waiter, signals, context));
entrypoints.cc 43 MojoHandleSignals signals,
45 return g_core->Wait(handle, signals, deadline);
49 const MojoHandleSignals* signals,
52 return g_core->WaitMany(handles, signals, num_handles, deadline);
  /external/chromium_org/ppapi/api/dev/
ppp_video_capture_dev.idl 20 * Signals the capture device information, such as resolution and frame rate,
38 * Signals status changes on the VideoCapture. |status| is a
46 * Signals an error from the video capture system.
57 * Signals that a buffer is available for consumption by the plugin.
  /external/chromium_org/ppapi/c/dev/
ppp_video_capture_dev.h 36 * Signals the capture device information, such as resolution and frame rate,
53 * Signals status changes on the VideoCapture. |status| is a
60 * Signals an error from the video capture system.
70 * Signals that a buffer is available for consumption by the plugin.
  /external/chromium_org/third_party/skia/debugger/QT/
SkRasterWidget.h 35 signals:
SkImageWidget.h 34 signals:
  /external/chromium_org/tools/idl_parser/test_parser/
callback_web.idl 11 This comment signals that a node of type <Type> is created with the
15 This comment signals that a error of <Error String> is generated. The error
19 This comment signals that a property has been set on the Node such that
28 This comment signals that a tree of nodes matching the BUILD comment
dictionary_web.idl 11 This comment signals that a node of type <Type> is created with the
15 This comment signals that a error of <Error String> is generated. The error
19 This comment signals that a property has been set on the Node such that
28 This comment signals that a tree of nodes matching the BUILD comment
enum_web.idl 11 This comment signals that a node of type <Type> is created with the
15 This comment signals that a error of <Error String> is generated. The error
19 This comment signals that a property has been set on the Node such that
28 This comment signals that a tree of nodes matching the BUILD comment
exception_web.idl 11 This comment signals that a node of type <Type> is created with the
15 This comment signals that a error of <Error String> is generated. The error
19 This comment signals that a property has been set on the Node such that
28 This comment signals that a tree of nodes matching the BUILD comment
  /external/skia/debugger/QT/
SkRasterWidget.h 35 signals:
  /external/chromium_org/mojo/public/js/bindings/
support.js 13 * Waits on the given handle until the state indicated by |signals| is
17 * @param {MojoHandleSignals} signals Specifies the condition to wait for.
24 function asyncWait(handle, signals, callback) { [native code] }
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
sigchain.c 11 static struct sigchain_signal signals[SIGCHAIN_MAX_SIGNALS]; variable in typeref:struct:sigchain_signal
21 struct sigchain_signal *s = signals + sig;
34 struct sigchain_signal *s = signals + sig;
  /external/ltrace/testsuite/ltrace.main/
Makefile.am 22 parameters2.exp parameters3.exp signals.c signals.exp \
26 main main-internal parameters signals system_calls
  /external/ltrace/testsuite/ltrace.torture/
Makefile.am 19 ppc-lwarx.c ppc-lwarx.exp signals.c signals.exp \
23 signals
  /external/valgrind/main/memcheck/tests/
sigkill.c 22 // Skip signals 32 and 33, since these are used by LinuxThreads. Some
24 // signals.
25 // skip signals 63 and 64: some systems say "warning, ignored attempt
  /art/runtime/arch/arm64/
fault_handler_arm64.cc 60 VLOG(signals) << "sp: " << *out_sp;
79 VLOG(signals) << "pc: " << std::hex
96 VLOG(signals) << "Generating null pointer exception";
118 VLOG(signals) << "checking suspend";
121 VLOG(signals) << "inst2: " << std::hex << inst2 << " checkinst2: " << checkinst2;
133 VLOG(signals) << "inst1: " << std::hex << inst1 << " checkinst1: " << checkinst1;
141 VLOG(signals) << "suspend check match";
152 VLOG(signals) << "removed suspend trigger invoking test suspend";
161 VLOG(signals) << "stack overflow handler with sp at " << std::hex << &uc;
162 VLOG(signals) << "sigcontext: " << std::hex << sc
    [all...]
  /external/llvm/lib/Support/
Signals.cpp 1 //===- Signals.cpp - Signal Handling support --------------------*- C++ -*-===//
11 // Unix signals occurring while your program is running.
15 #include "llvm/Support/Signals.h"
30 #include "Unix/Signals.inc"
33 #include "Windows/Signals.inc"
  /external/chromium_org/chrome/browser/extensions/api/serial/
serial_connection_win.cc 164 // signals that data is available.
195 api::serial::DeviceControlSignals* signals) const {
200 signals->dcd = (status & MS_RLSD_ON) != 0;
201 signals->cts = (status & MS_CTS_ON) != 0;
202 signals->dsr = (status & MS_DSR_ON) != 0;
203 signals->ri = (status & MS_RING_ON) != 0;
208 const api::serial::HostControlSignals& signals) {
209 if (signals.dtr.get()) {
211 *signals.dtr ? SETDTR : CLRDTR)) {
215 if (signals.rts.get())
    [all...]
  /art/runtime/arch/arm/
fault_handler_arm.cc 64 VLOG(signals) << "longjmp address: " << reinterpret_cast<void*>(sc->arm_pc);
73 VLOG(signals) << "sp: " << *out_sp;
97 VLOG(signals) << "pc: " << std::hex << static_cast<void*>(ptr);
118 VLOG(signals) << "Generating null pointer exception";
140 VLOG(signals) << "checking suspend";
143 VLOG(signals) << "inst2: " << std::hex << inst2 << " checkinst2: " << checkinst2;
155 VLOG(signals) << "inst1: " << std::hex << inst1 << " checkinst1: " << checkinst1;
163 VLOG(signals) << "suspend check match";
171 VLOG(signals) << "arm lr: " << std::hex << sc->arm_lr;
172 VLOG(signals) << "arm pc: " << std::hex << sc->arm_pc
    [all...]
  /external/strace/test/
wait_must_be_interruptible.c 9 * Child signals parent
17 static const char msg1[] = "Child signals parent\n";
82 printf("Good: wait seems to be correctly interrupted by signals\n");
  /bionic/
ABI-bugs.txt 9 for real-time signals is broken. http://b/5828899
  /external/chromium_org/chrome/browser/extensions/api/declarative_content/
content_constants.cc 10 // Signals to which ContentRulesRegistries are registered.
content_constants.h 13 // Signals to which ContentRulesRegistries are registered.
  /external/chromium_org/sync/internal_api/public/base/
cancelation_observer.h 12 // Interface for classes that handle signals from the CancelationSignal.

Completed in 452 milliseconds

12 3 4 5 6 7 8 91011>>