HomeSort by relevance Sort by last modified time
    Searched defs:Signal (Results 26 - 50 of 62) sorted by null

12 3

  /external/chromium/chrome/common/deprecated/
event_sys-inl.h 82 void Signal() {
189 callback_waiters_->Signal();
  /external/chromium/net/base/
mock_host_resolver.cc 279 void WaitingHostResolverProc::Signal() {
280 event_.Signal();
host_resolver_impl_unittest.cc 84 void Signal() {
85 event_.Signal();
365 resolver_proc->Signal();
551 // blocked, these should all pile up until we signal it.
560 resolver_proc->Signal();
602 // blocked, these should all pile up until we signal it.
617 resolver_proc->Signal();
689 // blocked, these should all pile up until we signal it.
700 resolver_proc->Signal();
746 // blocked, these should all pile up until we signal it
    [all...]
  /external/chromium_org/base/timer/
timer_unittest.cc 176 void Signal() {
191 TimeDelta::FromMilliseconds(1), &target, &DelayTimerTarget::Signal);
206 TimeDelta::FromMilliseconds(1), &target, &DelayTimerTarget::Signal);
240 TimeDelta::FromMilliseconds(50), &target, &DelayTimerTarget::Signal);
261 void Signal() {
275 &DelayTimerFatalTarget::Signal);
  /external/chromium_org/dbus/
message.h 170 // Signal is a type of message used to send a signal.
171 class CHROME_DBUS_EXPORT Signal : public Message {
173 // Creates a signal message for the specified interface name and the
176 // For instance, to send "PropertiesChanged" signal of
178 // ("org.freedesktop.DBus.Introspectable"), create a signal like this:
180 // Signal signal(DBUS_INTERFACE_INTROSPECTABLE, "PropertiesChanged");
183 Signal(const std::string& interface_name,
186 // Returns a newly created SIGNAL from the given raw message of the typ
    [all...]
message.cc 374 // Signal implementation.
376 Signal::Signal(const std::string& interface_name,
385 Signal::Signal() : Message() {
388 Signal* Signal::FromRawMessage(DBusMessage* raw_message) {
391 Signal* signal = new Signal; local
    [all...]
  /external/chromium_org/ppapi/tests/
test_utils.cc 195 void NestedEvent::Signal() {
  /external/chromium_org/third_party/libjingle/source/talk/base/
sigslot_unittest.cc 57 void Connect(sigslot::signal0<signal_policy>* signal) {
58 if (!signal) return;
60 signal_ = signal;
61 signal->connect(this,
151 // MT signal (there are two separate SigslotReceiver which
163 void Signal() { SignalMTLoopback(); }
176 // ST slot, ST signal
183 // ST slot, MT signal
190 // ST slot, both ST and MT (separate) signal
215 // MT slot, ST signal
248 sigslot::signal0<>* signal = new sigslot::signal0<>; local
258 sigslot::signal0<>* signal = new sigslot::signal0<>; local
    [all...]
physicalsocketserver.cc 40 #include <signal.h>
280 // other end is closed will result in a SIGPIPE signal being raised to
326 // pretend it is blocking, and then signal close, so that simplifying
568 virtual void Signal() {
615 // non-trivial things with a POSIX signal in an event-driven program (until
625 // There is just a single global instance. (Signal handlers do not get any
633 // Returns true if the given signal number is set.
643 // Clears the given signal number.
651 // Returns the file descriptor to monitor for signal events.
656 // This is called directly from our real signal handler, so it must b
    [all...]
  /external/valgrind/unittest/
thread_wrappers_win.h 181 void Signal() {
thread_wrappers_pthread.h 230 void Signal() { CHECK(0 == pthread_cond_signal(&cv_)); }
  /external/chromium_org/base/synchronization/
condition_variable_win.cc 65 virtual void Signal() = 0;
80 virtual void Signal() OVERRIDE;
119 void WinVistaCondVar::Signal() {
135 virtual void Signal() OVERRIDE;
239 // Default to "wait forever" timing, which means have to get a Signal()
259 // Minimize spurious signal creation window by recycling asap.
266 // Broadcast() is guaranteed to signal all threads that were waiting (i.e., had
284 // Signal() will select one of the waiting threads, and signal it (signal it
    [all...]
  /external/chromium_org/jingle/glue/
chrome_async_socket_unittest.cc 191 enum Signal {
199 // Helper struct that records the state at the time of a signal.
203 : signal(SIGNAL_ERROR),
209 Signal signal,
213 : signal(signal),
220 (signal == other.signal) &&
227 Signal signal
243 Signal signal; member in struct:jingle_glue::__anon10746::ChromeAsyncSocketTest::SignalSocketState
    [all...]
  /external/chromium_org/v8/src/
platform-cygwin.cc 408 virtual void Signal() { sem_post(&sem_); }
418 CHECK(result == -1 && errno == EINTR); // Signal caused spurious wakeup.
456 CHECK(result == -1 && errno == EINTR); // Signal caused spurious wakeup.
platform-freebsd.cc 33 #include <signal.h>
382 virtual void Signal() { sem_post(&sem_); }
392 CHECK(result == -1 && errno == EINTR); // Signal caused spurious wakeup.
421 CHECK(result == -1 && errno == EINTR); // Signal caused spurious wakeup.
platform-macos.cc 42 #include <signal.h>
422 void Signal() { semaphore_signal(semaphore_); }
platform-solaris.cc 46 #include <signal.h> // sigemptyset(), etc
403 virtual void Signal() { sem_post(&sem_); }
413 CHECK(result == -1 && errno == EINTR); // Signal caused spurious wakeup.
464 CHECK(result == -1 && errno == EINTR); // Signal caused spurious wakeup.
platform-linux.cc 33 #include <signal.h>
59 // Old versions of the C library <signal.h> didn't define the type.
694 virtual void Signal() { sem_post(&sem_); }
704 CHECK(result == -1 && errno == EINTR); // Signal caused spurious wakeup.
747 CHECK(result == -1 && errno == EINTR); // Signal caused spurious wakeup.
platform-nullos.cc 525 virtual void Signal() {
platform-openbsd.cc 33 #include <signal.h>
439 virtual void Signal() { sem_post(&sem_); }
449 CHECK(result == -1 && errno == EINTR); // Signal caused spurious wakeup.
489 CHECK(result == -1 && errno == EINTR); // Signal caused spurious wakeup.
  /external/v8/src/
platform-nullos.cc 453 virtual void Signal() {
  /art/runtime/base/
mutex.cc 817 void ConditionVariable::Signal(Thread* self) {
822 android_atomic_inc(&sequence_); // Indicate a signal occurred.
853 // EINTR implies a signal was sent to this thread.
889 // A signal or ConditionVariable::Signal/Broadcast has come in.
  /external/chromium/chrome/browser/
browser_process_impl.cc 291 static void Signal(base::WaitableEvent* event) {
292 event->Signal();
324 shutdown_event_->Signal();
349 NewRunnableFunction(Signal, &done_writing));
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
physicalsocketserver.cc 40 #include <signal.h>
275 // other end is closed will result in a SIGPIPE signal being raised to
318 // pretend it is blocking, and then signal close, so that simplifying
537 virtual void Signal() {
584 // non-trivial things with a POSIX signal in an event-driven program (until
596 // Returns true if the given signal number is set.
606 // Clears the given signal number.
614 // Returns the file descriptor to monitor for signal events.
619 // This is called directly from our real signal handler, so it must be
620 // signal-handler-safe. That means it cannot assume anything about th
    [all...]
  /external/chromium_org/chrome/browser/
browser_process_impl.cc 301 static void Signal(base::WaitableEvent* event) {
302 event->Signal();
377 base::Bind(Signal, done_writing.get()));
379 // so that there's no race to reference it in Signal().
    [all...]

Completed in 405 milliseconds

12 3