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

1 2

  /external/libchrome/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_unittest.cc 317 queue.work_is_available()->Broadcast(); // Make them all try.
338 queue.work_is_available()->Broadcast(); // Signal all threads.
372 // Same as last test, but with Broadcast().
378 queue.work_is_available()->Broadcast();
393 queue.work_is_available()->Broadcast(); // Force check for shutdown.
432 queue.work_is_available()->Broadcast(); // Start up all threads.
444 // With Broadcast(), every thread should have participated.
457 queue.SetAllowHelp(true); // Might outperform Broadcast().
483 queue.work_is_available()->Broadcast(); // Force check for shutdown.
526 work_is_available_.Broadcast(); // Tell them all to terminate
    [all...]
condition_variable_posix.cc 127 void ConditionVariable::Broadcast() {
waitable_event_posix.cc 105 cv_.Broadcast();
  /hardware/qcom/display/msm8996/sdm/include/utils/
locker.h 79 locker_.Broadcast();
119 locker_.Broadcast();
140 void Broadcast() { pthread_cond_broadcast(&condition_); }
  /external/dng_sdk/source/
dng_mutex.h 153 void Broadcast ();
dng_abort_sniffer.cpp 119 fCondition.Broadcast ();
dng_mutex.cpp 376 void dng_condition::Broadcast ()
  /art/runtime/
barrier.cc 55 // be decremented to zero and a Broadcast will be made on the
86 condition_.Broadcast(self);
thread_pool.cc 144 // Broadcast to everyone waiting.
145 task_queue_condition_.Broadcast(self);
146 completion_condition_.Broadcast(self);
155 task_queue_condition_.Broadcast(self);
181 // We may be done, lets broadcast to the completion condition.
182 completion_condition_.Broadcast(self);
thread_list.cc 352 // suspend count. Now the suspend_count_ is lowered so we must do the broadcast.
354 Thread::resume_cond_->Broadcast(self);
429 // The thread will resume right after the broadcast.
436 Thread::resume_cond_->Broadcast(self);
458 Thread::resume_cond_->Broadcast(self);
661 // Broadcast a notification to all suspended threads, some or all of
668 Thread::resume_cond_->Broadcast(self);
706 Thread::resume_cond_->Broadcast(self);
    [all...]
signal_catcher.cc 194 signal_catcher->cond_.Broadcast(self);
intern_table.cc 241 weak_intern_condition_.Broadcast(self);
523 weak_intern_condition_.Broadcast(Thread::Current());
java_vm_ext.cc 132 // Broadcast a wakeup to anybody sleeping on the condition variable.
133 jni_on_load_cond_.Broadcast(self);
619 weak_globals_add_condition_.Broadcast(self);
626 weak_globals_add_condition_.Broadcast(self);
    [all...]
  /external/libpcap/
fad-win32.c 96 (struct sockaddr *)&if_addrs[if_addr_size].Broadcast,
  /art/runtime/gc/
reference_processor.cc 54 condition_.Broadcast(self);
60 condition_.Broadcast(self);
115 condition_.Broadcast(self);
183 // Done processing, disable the slow path and broadcast to the waiters.
task_processor.cc 110 cond_->Broadcast(self);
allocation_record.cc 173 new_record_condition_.Broadcast(Thread::Current());
183 new_record_condition_.Broadcast(Thread::Current());
  /art/runtime/jdwp/
jdwp_main.cc 424 shutdown_cond_.Broadcast(self);
458 thread_start_cond_.Broadcast(thread_);
471 * We broadcast a notification when a debugger attaches, after we
494 attach_cond_.Broadcast(thread_);
529 attach_cond_.Broadcast(thread_);
538 /* broadcast the disconnect; must be in RUNNING state */
  /art/runtime/lambda/
box_table.cc 275 new_weaks_condition_.Broadcast(self);
282 new_weaks_condition_.Broadcast(self);
  /external/libchrome/base/threading/
worker_pool_posix.cc 140 pending_tasks_available_cv_.Broadcast();
sequenced_worker_pool.cc 866 cleanup_cv_.Broadcast();
942 cleanup_cv_.Broadcast()
    [all...]
  /external/ppp/pppd/plugins/radius/etc/
dictionary 151 VALUE Framed-Routing Broadcast 1
153 VALUE Framed-Routing Broadcast-Listen 3
  /toolchain/binutils/binutils-2.25/opcodes/
i386-opc.h 508 /* Broadcast factor.
509 0: No broadcast.
510 1: 1to16 broadcast.
511 2: 1to8 broadcast.
518 Broadcast,
599 unsigned int broadcast:3; member in struct:i386_opcode_modifier
  /art/runtime/base/
mutex.h 443 // (Signal) or all at once (Broadcast).
449 void Broadcast(Thread* self);

Completed in 532 milliseconds

1 2