HomeSort by relevance Sort by last modified time
    Searched full:worker_thread (Results 1 - 25 of 73) sorted by null

1 2 3

  /external/chromium_org/content/worker/
BUILD.gn 15 "worker_thread.cc",
16 "worker_thread.h",
websharedworker_stub.cc 16 #include "content/worker/worker_thread.h"
35 WorkerThread* worker_thread = WorkerThread::current(); local
36 DCHECK(worker_thread);
37 worker_thread->AddWorkerStub(this);
39 worker_thread->GetRouter()->AddRoute(route_id_, this);
57 WorkerThread* worker_thread = WorkerThread::current(); local
58 DCHECK(worker_thread);
59 worker_thread->RemoveWorkerStub(this);
60 worker_thread->GetRouter()->RemoveRoute(route_id_);
worker_webapplicationcachehost_impl.cc 8 #include "content/worker/worker_thread.h"
worker_main.cc 15 #include "content/worker/worker_thread.h"
  /external/chromium_org/third_party/libjingle/source/talk/session/media/
audiomonitor.cc 47 voice_channel_->worker_thread()->Clear(this);
55 voice_channel_->worker_thread()->Post(this, MSG_MONITOR_START);
59 voice_channel_->worker_thread()->Post(this, MSG_MONITOR_STOP);
67 assert(talk_base::Thread::Current() == voice_channel_->worker_thread());
75 assert(talk_base::Thread::Current() == voice_channel_->worker_thread());
78 voice_channel_->worker_thread()->Clear(this);
83 assert(talk_base::Thread::Current() == voice_channel_->worker_thread());
101 assert(talk_base::Thread::Current() == voice_channel_->worker_thread());
110 voice_channel_->worker_thread()->PostDelayed(rate_, this, MSG_MONITOR_POLL);
mediamonitor.h 44 MediaMonitor(talk_base::Thread* worker_thread,
68 MediaMonitorT(MC* media_channel, talk_base::Thread* worker_thread,
70 : MediaMonitor(worker_thread, monitor_thread),
mediamonitor.cc 41 MediaMonitor::MediaMonitor(talk_base::Thread* worker_thread,
43 : worker_thread_(worker_thread),
typingmonitor.cc 37 talk_base::Thread* worker_thread,
40 worker_thread_(worker_thread),
88 * be called on the worker_thread.
channel.cc 298 worker_thread(),
    [all...]
  /external/bluetooth/bluedroid/hci/src/
bt_hci_bdroid.c 87 thread_t *worker_thread; member in struct:__anon5780
221 if (hc_cb.worker_thread)
222 thread_post(hc_cb.worker_thread, event_rx, NULL);
230 if (hc_cb.worker_thread) {
233 thread_post(hc_cb.worker_thread, event_tx, NULL);
242 if (hc_cb.worker_thread)
243 thread_post(hc_cb.worker_thread, event_lpm_idle_timeout, NULL);
261 thread_free(hc_cb.worker_thread);
264 hc_cb.worker_thread = NULL;
355 if (hc_cb.worker_thread)
    [all...]
  /external/chromium_org/content/
content_worker.gypi 20 'worker/worker_thread.cc',
21 'worker/worker_thread.h',
  /external/chromium_org/third_party/libjingle/source/talk/p2p/client/
fakeportallocator.h 23 FakePortAllocatorSession(talk_base::Thread* worker_thread,
31 worker_thread_(worker_thread),
80 FakePortAllocator(talk_base::Thread* worker_thread,
82 : worker_thread_(worker_thread), factory_(factory) {
socketmonitor.cc 42 talk_base::Thread* worker_thread,
45 channel_thread_ = worker_thread;
  /external/valgrind/main/helgrind/tests/
tc03_re_excl.c 16 static void* worker_thread ( void* argV ) function
30 pthread_create(&thread_id, 0, worker_thread, (void*)x);
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
portallocatorfactory.cc 42 talk_base::Thread* worker_thread) {
44 new talk_base::RefCountedObject<PortAllocatorFactory>(worker_thread);
48 PortAllocatorFactory::PortAllocatorFactory(talk_base::Thread* worker_thread)
50 socket_factory_(new talk_base::BasicPacketSocketFactory(worker_thread)) {
portallocatorfactory.h 53 talk_base::Thread* worker_thread);
60 explicit PortAllocatorFactory(talk_base::Thread* worker_thread);
peerconnectionfactory.cc 127 talk_base::Thread* worker_thread,
133 new talk_base::RefCountedObject<PeerConnectionFactory>(worker_thread,
155 talk_base::Thread* worker_thread,
162 worker_thread_(worker_thread),
166 ASSERT(worker_thread != NULL);
376 talk_base::Thread* PeerConnectionFactory::worker_thread() { function in class:webrtc::PeerConnectionFactory
peerconnectionfactory.h 79 virtual talk_base::Thread* worker_thread();
85 talk_base::Thread* worker_thread,
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
transport.cc 122 talk_base::Thread* worker_thread,
127 worker_thread_(worker_thread),
170 ASSERT(worker_thread()->IsCurrent());
202 ASSERT(worker_thread()->IsCurrent());
278 ASSERT(worker_thread()->IsCurrent());
312 ASSERT(worker_thread()->IsCurrent());
351 worker_thread()->Clear(this);
357 ASSERT(worker_thread()->IsCurrent());
382 ASSERT(worker_thread()->IsCurrent());
399 worker_thread()->Post(this, MSG_ONSIGNALINGREADY, NULL)
    [all...]
rawtransport.cc 44 talk_base::Thread* worker_thread,
47 : Transport(signaling_thread, worker_thread,
123 worker_thread(),
rawtransportchannel.cc 57 talk_base::Thread *worker_thread,
67 if (worker_thread == NULL)
68 worker_thread_ = raw_transport_->worker_thread();
70 worker_thread_ = worker_thread;
rawtransport.h 43 talk_base::Thread* worker_thread,
  /external/chromium_org/base/task/
cancelable_task_tracker_unittest.cc 84 Thread worker_thread("worker thread");
85 ASSERT_TRUE(worker_thread.Start());
87 ignore_result(task_tracker_.PostTask(worker_thread.message_loop_proxy().get(),
92 task_tracker_.PostTaskAndReply(worker_thread.message_loop_proxy().get(),
100 worker_thread.Stop();
166 Thread worker_thread("worker thread");
167 ASSERT_TRUE(worker_thread.Start());
170 task_tracker_.PostTaskAndReply(worker_thread.message_loop_proxy().get(),
178 worker_thread.Stop();
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
mediaengine.h 72 virtual bool Init(talk_base::Thread* worker_thread) = 0;
183 virtual bool Init(talk_base::Thread* worker_thread) {
184 if (!voice_.Init(worker_thread))
186 if (!video_.Init(worker_thread)) {
304 bool Init(talk_base::Thread* worker_thread) { return true; }
349 bool Init(talk_base::Thread* worker_thread) { return true; }
hybridvideoengine.h 152 bool Init(talk_base::Thread* worker_thread) {
153 if (!video1_.Init(worker_thread)) {
157 if (!video2_.Init(worker_thread)) {

Completed in 403 milliseconds

1 2 3