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

1 2

  /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_posix.cc 70 void ConditionVariable::Broadcast() {
condition_variable_unittest.cc 262 queue.work_is_available()->Broadcast(); // Make them all try.
283 queue.work_is_available()->Broadcast(); // Signal all threads.
317 // Same as last test, but with Broadcast().
323 queue.work_is_available()->Broadcast();
338 queue.work_is_available()->Broadcast(); // Force check for shutdown.
377 queue.work_is_available()->Broadcast(); // Start up all threads.
389 // With Broadcast(), every thread should have participated.
402 queue.SetAllowHelp(true); // Might outperform Broadcast().
428 queue.work_is_available()->Broadcast(); // Force check for shutdown.
471 work_is_available_.Broadcast(); // Tell them all to terminate
    [all...]
  /art/runtime/
barrier.cc 55 condition_.Broadcast(self);
thread_pool.cc 107 // Broadcast to everyone waiting.
108 task_queue_condition_.Broadcast(self);
109 completion_condition_.Broadcast(self);
118 task_queue_condition_.Broadcast(self);
144 // We may be done, lets broadcast to the completion condition.
145 completion_condition_.Broadcast(self);
thread_list.cc 215 // suspend count. Now the suspend_count_ is lowered so we must do the broadcast.
217 Thread::resume_cond_->Broadcast(self);
290 // Broadcast a notification to all suspended threads, some or all of
293 Thread::resume_cond_->Broadcast(self);
318 Thread::resume_cond_->Broadcast(self);
433 Thread::resume_cond_->Broadcast(self);
intern_table.cc 120 new_intern_condition_.Broadcast(self);
signal_catcher.cc 196 signal_catcher->cond_.Broadcast(self);
  /external/chromium/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().
97 // Broadcast() revives all waiting threads.
98 void Broadcast();
condition_variable_posix.cc 67 void ConditionVariable::Broadcast() {
condition_variable_win.cc 38 Broadcast(); // Make sure all waiting threads have been signaled.
48 // or Broadcast() to come out of this wait state.
73 // Broadcast() is guaranteed to signal all threads that were waiting (i.e., had
74 // a cv_event internally allocated for them) before Broadcast() was called.
75 void ConditionVariable::Broadcast() {
137 // waiting_list_. If it was selected by Broadcast() or Signal(), then it is
288 (especially with regard to Broadcast() and the impact on threads that
289 try to Wait() after a Broadcast() has been called, but before all the
296 WaitForSingleObject(). If a call to Broadcast() was then presented on
309 time-out and a signal via Signal() or Broadcast(). The series o
    [all...]
condition_variable_unittest.cc 297 queue.work_is_available()->Broadcast(); // Make them all try.
318 queue.work_is_available()->Broadcast(); // Signal all threads.
352 // Same as last test, but with Broadcast().
358 queue.work_is_available()->Broadcast();
373 queue.work_is_available()->Broadcast(); // Force check for shutdown.
412 queue.work_is_available()->Broadcast(); // Start up all threads.
424 // With Broadcast(), every thread should have participated.
437 queue.SetAllowHelp(true); // Might outperform Broadcast().
463 queue.work_is_available()->Broadcast(); // Force check for shutdown.
506 work_is_available_.Broadcast(); // Tell them all to terminate
    [all...]
waitable_event_posix.cc 100 cv_.Broadcast();
  /external/chromium_org/third_party/leveldatabase/port/
port_chromium.cc 50 cv_.Broadcast();
  /external/chromium/base/threading/
worker_pool_posix.cc 120 tasks_available_cv_.Broadcast();
  /art/runtime/jdwp/
jdwp_main.cc 427 thread_start_cond_.Broadcast(thread_);
440 * We broadcast a notification when a debugger attaches, after we
462 attach_cond_.Broadcast(thread_);
500 attach_cond_.Broadcast(thread_);
509 /* broadcast the disconnect; must be in RUNNING state */
  /external/chromium/chrome/browser/metrics/
thread_watcher_unittest.cc 94 state_changed_.Broadcast();
105 state_changed_.Broadcast();
147 // Broadcast to indicate we have checked responsiveness of the thread that
149 state_changed_.Broadcast();
  /external/chromium_org/base/threading/
worker_pool_posix.cc 145 pending_tasks_available_cv_.Broadcast();
  /external/chromium_org/content/child/npapi/
np_channel_base.h 137 static void 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
  /external/chromium_org/chrome/browser/metrics/
thread_watcher_unittest.cc 105 state_changed_.Broadcast();
116 state_changed_.Broadcast();
157 // Broadcast to indicate we have checked responsiveness of the thread that
159 state_changed_.Broadcast();
  /art/runtime/base/
mutex.h 315 // (Signal) or all at once (Broadcast).
321 void Broadcast(Thread* self);

Completed in 446 milliseconds

1 2