Searched refs:ChildThread (Results 1 - 25 of 44) sorted by relevance

12

/external/chromium_org/content/child/
H A Dchild_process.h15 class ChildThread;
27 ChildThread* main_thread();
31 void set_main_thread(ChildThread* thread);
73 scoped_ptr<ChildThread> main_thread_;
H A Dchild_thread.cc52 base::LazyInstance<base::ThreadLocalPointer<ChildThread> > g_lazy_tls =
98 ChildThread* g_child_thread;
108 ChildThread::ChildThread() function in class:content::ChildThread
115 ChildThread::ChildThread(const std::string& channel_name) function in class:content::ChildThread
121 void ChildThread::Init() {
193 base::Bind(&ChildThread::EnsureConnected,
210 ChildThread::~ChildThread() {
[all...]
H A Dwebkitplatformsupport_impl.cc32 return ChildThread::current()->CreateBridge(request_info);
40 ChildThread::current()->socket_stream_dispatcher();
H A Dthread_safe_sender.cc23 return ChildThread::current()->Send(msg);
H A Dthread_safe_sender.h22 class ChildThread;
24 // The class of Sender returned by ChildThread::thread_safe_sender().
32 friend class ChildThread; // for construction
H A Dchild_thread.h47 class CONTENT_EXPORT ChildThread : public IPC::Listener, public IPC::Sender { class in namespace:content
50 ChildThread();
52 explicit ChildThread(const std::string& channel_name);
58 virtual ~ChildThread();
124 static ChildThread* current();
174 // Implements message routing functionality to the consumers of ChildThread.
199 base::WeakPtrFactory<ChildThread> channel_connected_factory_;
207 DISALLOW_COPY_AND_ASSIGN(ChildThread);
H A Dwebblobregistry_impl.cc56 ChildThread::AllocateSharedMemory(shared_memory_size,
75 DCHECK(ChildThread::current());
134 DCHECK(ChildThread::current());
139 DCHECK(ChildThread::current());
145 DCHECK(ChildThread::current());
151 DCHECK(ChildThread::current());
157 DCHECK(ChildThread::current());
170 ChildThread::AllocateSharedMemory(shared_memory_size,
188 DCHECK(ChildThread::current());
193 DCHECK(ChildThread
[all...]
H A Dchild_process.cc74 ChildThread* ChildProcess::main_thread() {
78 void ChildProcess::set_main_thread(ChildThread* thread) {
H A Dsocket_stream_dispatcher.cc86 ChildThread::current()->Send(new SocketStreamHostMsg_Close(socket_id_));
105 ChildThread::current()->Send(
115 ChildThread::current()->Send(
125 ChildThread::current()->Send(new SocketStreamHostMsg_Close(socket_id_));
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/ref/
H A DReferenceQueueTest.java34 public class ChildThread implements Runnable { class in class:ReferenceQueueTest
35 public ChildThread() { method in class:ReferenceQueueTest.ChildThread
88 Thread ct = new Thread(new ChildThread());
/external/chromium_org/content/renderer/
H A Dwebsharedworker_proxy.h19 class ChildThread;
30 WebSharedWorkerProxy(ChildThread* child_thread,
95 ChildThread* child_thread_;
H A Dwebsharedworkerrepository_impl.cc26 ChildThread::current()->Send(new ViewHostMsg_DocumentDetached(document));
/external/chromium_org/content/child/fileapi/
H A Dfile_system_dispatcher.cc173 ChildThread::current()->Send(new FileSystemHostMsg_Open(
182 ChildThread::current()->Send(new FileSystemHostMsg_DeleteFileSystem(
191 ChildThread::current()->Send(new FileSystemHostMsg_Move(
200 ChildThread::current()->Send(new FileSystemHostMsg_Copy(
209 ChildThread::current()->Send(
219 ChildThread::current()->Send(
228 ChildThread::current()->Send(new FileSystemHostMsg_Create(
239 ChildThread::current()->Send(new FileSystemHostMsg_Create(
248 ChildThread::current()->Send(
258 ChildThread
[all...]
H A Dwebfilewriter_impl.cc21 return ChildThread::current() ?
22 ChildThread::current()->file_system_dispatcher() : NULL;
48 ChildThread::current()->file_system_dispatcher()->Truncate(
60 ChildThread::current()->file_system_dispatcher()->Write(
70 ChildThread::current()->file_system_dispatcher()->Cancel(
/external/chromium_org/content/plugin/
H A Dplugin_thread.h24 class PluginThread : public ChildThread {
/external/chromium_org/content/utility/
H A Dutility_thread_impl.cc46 : ChildThread(channel_name),
55 ChildThread::Shutdown();
62 return ChildThread::Send(msg);
H A Dutility_thread_impl.h26 public ChildThread {
44 // ChildThread implementation.
/external/chromium_org/content/worker/
H A Dworker_thread.h22 class WorkerThread : public ChildThread {
/external/chromium_org/content/common/gpu/
H A Dgpu_channel_manager.h46 class ChildThread;
64 GpuChannelManager(ChildThread* gpu_child_thread,
136 ChildThread* gpu_child_thread_;
/external/chromium_org/content/gpu/
H A Dgpu_child_thread.cc59 : ChildThread(channel_id),
80 ChildThread::Shutdown();
93 return ChildThread::Send(msg);
H A Dgpu_child_thread.h36 class GpuChildThread : public ChildThread {
55 // ChildThread overrides.
/external/chromium_org/content/renderer/pepper/
H A Dppb_broker_impl.cc36 ChildThread::current()->AddRoute(routing_id_, this);
47 ChildThread::current()->RemoveRoute(routing_id_);
H A Dpepper_file_io_host.cc79 ChildThread::current()->quota_dispatcher()->QueryStorageUsageAndQuota(
83 ChildThread::current()->Send(new FileSystemHostMsg_WillUpdate(file_path));
86 ChildThread::current()->Send(new FileSystemHostMsg_DidUpdate(
103 ChildThread::current()->file_system_dispatcher()->NotifyCloseFile(
147 ChildThread::current()->AddRoute(routing_id_, this);
152 ChildThread::current()->RemoveRoute(routing_id_);
250 ChildThread::current()->file_system_dispatcher();
285 ChildThread::current()->file_system_dispatcher();
356 ChildThread::current()->file_system_dispatcher();
H A Dppb_file_ref_impl.cc225 ChildThread::current()->AddRoute(routing_id_, this);
237 ChildThread::current()->AddRoute(routing_id_, this);
243 ChildThread::current()->RemoveRoute(routing_id_);
330 ChildThread::current()->file_system_dispatcher();
344 ChildThread::current()->file_system_dispatcher();
358 ChildThread::current()->file_system_dispatcher();
381 ChildThread::current()->file_system_dispatcher();
503 ChildThread::current()->file_system_dispatcher();
529 ChildThread::current()->file_system_dispatcher();
H A Dppb_tcp_socket_private_impl.cc22 ChildThread::current()->AddRoute(routing_id, this);
26 ChildThread::current()->RemoveRoute(routing_id_);

Completed in 500 milliseconds

12