HomeSort by relevance Sort by last modified time
    Searched refs:Broadcast (Results 1 - 25 of 50) sorted by null

1 2

  /external/lldb/include/lldb/Host/
Condition.h 57 Broadcast ();
98 /// @see Condition::Broadcast()
Predicate.h 28 eBroadcastNever, ///< No broadcast will be sent when the value is modified.
29 eBroadcastAlways, ///< Always send a broadcast when the value is modified.
30 eBroadcastOnChange ///< Only broadcast if the value changes when the value is modified.
109 /// way and broadcast if needed.
118 /// @see Predicate::Broadcast()
130 Broadcast(old_value, broadcast_type);
137 /// thread safe way and broadcast if needed.
146 /// @see Predicate::Broadcast()
158 Broadcast(old_value, broadcast_type);
165 /// \a m_value in a thread safe way and broadcast if needed
494 bool broadcast = (broadcast_type == eBroadcastAlways) || ((broadcast_type == eBroadcastOnChange) && old_value != m_value); local
    [all...]
  /external/lldb/tools/debugserver/source/
PThreadCondition.h 38 int Broadcast()
PThreadEvent.cpp 82 // If any new bits are set, then broadcast
84 m_set_condition.Broadcast();
88 // Set one or more event bits and broadcast if any new event bits get set
103 // Broadcast only if any extra bits got set.
105 m_set_condition.Broadcast();
122 // Broadcast only if any extra bits got reset.
124 m_reset_condition.Broadcast();
154 // Wait for condition to get broadcast, or for a timeout. If we get
168 // Wait for condition to get broadcast. The only error this function
202 // Wait for condition to get broadcast, or for a timeout. If we ge
    [all...]
  /external/chromium_org/content/renderer/npapi/
plugin_channel_host.h 44 static void Broadcast(IPC::Message* message) {
45 NPChannelBase::Broadcast(message);
  /external/chromium_org/base/synchronization/
condition_variable.h 34 // USAGE NOTE 2: Broadcast() frees up all waiting threads at once,
42 // Broadcast() can be used nicely during teardown, as it gets the job
46 // The semantics of Broadcast() are carefully crafted so that *all*
52 // that all threads get signaled by Broadcast().
95 // Broadcast() revives all waiting threads.
96 void Broadcast();
condition_variable_win.cc 64 virtual void Broadcast() = 0;
79 virtual void Broadcast() OVERRIDE;
115 void WinVistaCondVar::Broadcast() {
134 virtual void Broadcast() OVERRIDE;
230 Broadcast(); // Make sure all waiting threads have been signaled.
240 // or Broadcast() to come out of this wait state.
266 // Broadcast() is guaranteed to signal all threads that were waiting (i.e., had
267 // a cv_event internally allocated for them) before Broadcast() was called.
268 void WinXPCondVar::Broadcast() {
330 // waiting_list_. If it was selected by Broadcast() or Signal(), then it i
    [all...]
condition_variable_unittest.cc 314 queue.work_is_available()->Broadcast(); // Make them all try.
335 queue.work_is_available()->Broadcast(); // Signal all threads.
369 // Same as last test, but with Broadcast().
375 queue.work_is_available()->Broadcast();
390 queue.work_is_available()->Broadcast(); // Force check for shutdown.
429 queue.work_is_available()->Broadcast(); // Start up all threads.
441 // With Broadcast(), every thread should have participated.
454 queue.SetAllowHelp(true); // Might outperform Broadcast().
480 queue.work_is_available()->Broadcast(); // Force check for shutdown.
523 work_is_available_.Broadcast(); // Tell them all to terminate
    [all...]
condition_variable_posix.cc 112 void ConditionVariable::Broadcast() {
waitable_event_posix.cc 103 cv_.Broadcast();
  /external/lldb/source/Host/common/
Condition.cpp 44 Condition::Broadcast ()
71 // another thread calls Signal(), or Broadcast() with the same
  /art/runtime/
barrier.cc 53 // be decremented to zero and a Broadcast will be made on the
82 condition_.Broadcast(self);
thread_pool.cc 111 // Broadcast to everyone waiting.
112 task_queue_condition_.Broadcast(self);
113 completion_condition_.Broadcast(self);
122 task_queue_condition_.Broadcast(self);
148 // We may be done, lets broadcast to the completion condition.
149 completion_condition_.Broadcast(self);
thread_list.cc 265 // suspend count. Now the suspend_count_ is lowered so we must do the broadcast.
267 Thread::resume_cond_->Broadcast(self);
397 // Broadcast a notification to all suspended threads, some or all of
404 Thread::resume_cond_->Broadcast(self);
440 Thread::resume_cond_->Broadcast(self);
764 Thread::resume_cond_->Broadcast(self);
792 Thread::resume_cond_->Broadcast(self);
    [all...]
signal_catcher.cc 207 signal_catcher->cond_.Broadcast(self);
  /external/chromium_org/third_party/leveldatabase/port/
port_chromium.cc 50 cv_.Broadcast();
  /art/runtime/gc/
reference_processor.cc 48 condition_.Broadcast(self);
109 condition_.Broadcast(self);
177 // Done processing, disable the slow path and broadcast to the waiters.
  /art/runtime/jdwp/
jdwp_main.cc 424 thread_start_cond_.Broadcast(thread_);
437 * We broadcast a notification when a debugger attaches, after we
460 attach_cond_.Broadcast(thread_);
495 attach_cond_.Broadcast(thread_);
504 /* broadcast the disconnect; must be in RUNNING state */
  /external/chromium_org/base/threading/
worker_pool_posix.cc 145 pending_tasks_available_cv_.Broadcast();
sequenced_worker_pool.cc 787 cleanup_cv_.Broadcast();
847 cleanup_cv_.Broadcast();
852 cleanup_cv_.Broadcast();
858 cleanup_cv_.Broadcast();
    [all...]
  /external/chromium_org/content/child/npapi/
np_channel_base.h 137 static void Broadcast(IPC::Message* message);
np_channel_base.cc 107 void NPChannelBase::Broadcast(IPC::Message* message) {
  /external/libpcap/
fad-win32.c 195 (struct sockaddr *)&if_addrs[if_addr_size].Broadcast,
  /external/ppp/pppd/plugins/radius/etc/
dictionary 151 VALUE Framed-Routing Broadcast 1
153 VALUE Framed-Routing Broadcast-Listen 3
  /art/runtime/base/
mutex.h 380 // (Signal) or all at once (Broadcast).
386 void Broadcast(Thread* self);

Completed in 400 milliseconds

1 2