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

1 2

  /external/chromium_org/content/child/service_worker/
service_worker_network_provider.cc 41 if (!ChildThread::current())
43 ChildThread::current()->Send(
48 if (!ChildThread::current())
50 ChildThread::current()->Send(
56 if (!ChildThread::current())
58 ChildThread::current()->Send(
service_worker_provider_context.cc 22 if (!ChildThread::current())
24 thread_safe_sender_ = ChildThread::current()->thread_safe_sender();
  /external/chromium_org/content/child/
child_process.h 15 class ChildThread;
25 // 3. ChildThread::Shutdown() is called. ChildThread is also deleted.
30 // Note: IO thread outlives the ChildThread object.
39 ChildThread* main_thread();
43 void set_main_thread(ChildThread* thread);
85 scoped_ptr<ChildThread> main_thread_;
child_thread.cc 68 base::LazyInstance<base::ThreadLocalPointer<ChildThread> > g_lazy_tls =
158 ChildThread* g_child_thread = NULL;
195 ChildThread::ChildThreadMessageRouter::ChildThreadMessageRouter(
199 bool ChildThread::ChildThreadMessageRouter::Send(IPC::Message* msg) {
203 ChildThread::ChildThread()
212 ChildThread::ChildThread(const std::string& channel_name)
220 void ChildThread::Init() {
310 base::Bind(&ChildThread::EnsureConnected
    [all...]
thread_safe_sender.h 22 class ChildThread;
24 // The class of Sender returned by ChildThread::thread_safe_sender().
32 friend class ChildThread; // for construction
thread_safe_sender.cc 23 return ChildThread::current()->Send(msg);
child_thread.h 59 class CONTENT_EXPORT ChildThread
65 ChildThread();
67 explicit ChildThread(const std::string& channel_name);
73 virtual ~ChildThread();
148 static ChildThread* current();
218 // Implements message routing functionality to the consumers of ChildThread.
251 base::WeakPtrFactory<ChildThread> channel_connected_factory_;
261 DISALLOW_COPY_AND_ASSIGN(ChildThread);
threaded_data_provider.cc 131 ipc_channel_(ChildThread::current()->channel()),
134 main_thread_message_loop_(ChildThread::current()->message_loop()) {
135 DCHECK(ChildThread::current());
151 ChildThread::current()->channel()->AddFilter(filter_);
155 DCHECK(ChildThread::current());
157 ChildThread::current()->channel()->RemoveFilter(filter_);
163 DCHECK(ChildThread::current());
172 DCHECK(ChildThread::current());
212 DCHECK(ChildThread::current());
269 DCHECK(ChildThread::current())
    [all...]
child_message_filter.h 54 friend class ChildThread;
webblobregistry_impl.cc 134 ChildThread::AllocateSharedMemory(shared_memory_size,
155 DCHECK(ChildThread::current());
161 DCHECK(ChildThread::current());
167 DCHECK(ChildThread::current());
180 ChildThread::AllocateSharedMemory(shared_memory_size,
198 DCHECK(ChildThread::current());
203 DCHECK(ChildThread::current());
208 DCHECK(ChildThread::current());
websocket_bridge.cc 55 ChildThread::current()->Send(
217 ChildThread::current()->websocket_dispatcher();
230 ChildThread::current()->Send(new WebSocketHostMsg_AddChannelRequest(
258 ChildThread::current()->Send(
271 ChildThread::current()->Send(
284 ChildThread::current()->Send(
292 ChildThread::current()->websocket_dispatcher();
child_process.cc 75 ChildThread* ChildProcess::main_thread() {
79 void ChildProcess::set_main_thread(ChildThread* thread) {
child_message_filter.cc 55 thread_safe_sender_(ChildThread::current()->thread_safe_sender()) {}
shared_worker_devtools_agent.cc 80 return ChildThread::current()->Send(message);
socket_stream_dispatcher.cc 83 ChildThread::current()->Send(new SocketStreamHostMsg_Close(socket_id_));
104 ChildThread::current()->Send(
114 ChildThread::current()->Send(
124 ChildThread::current()->Send(new SocketStreamHostMsg_Close(socket_id_));
  /external/chromium_org/content/child/fileapi/
file_system_dispatcher.cc 183 ChildThread::current()->Send(new FileSystemHostMsg_OpenFileSystem(
193 ChildThread::current()->Send(new FileSystemHostMsg_ResolveURL(
202 ChildThread::current()->Send(new FileSystemHostMsg_DeleteFileSystem(
211 ChildThread::current()->Send(new FileSystemHostMsg_Move(
220 ChildThread::current()->Send(new FileSystemHostMsg_Copy(
229 ChildThread::current()->Send(
239 ChildThread::current()->Send(
248 ChildThread::current()->Send(new FileSystemHostMsg_Create(
259 ChildThread::current()->Send(new FileSystemHostMsg_Create(
268 ChildThread::current()->Send
    [all...]
webfilewriter_impl.cc 18 return ChildThread::current() ?
19 ChildThread::current()->file_system_dispatcher() : NULL;
45 ChildThread::current()->file_system_dispatcher()->Truncate(
57 ChildThread::current()->file_system_dispatcher()->Write(
67 ChildThread::current()->file_system_dispatcher()->Cancel(
  /external/chromium_org/content/plugin/
plugin_thread.h 25 class PluginThread : public ChildThread {
  /external/chromium_org/content/renderer/service_worker/
embedded_worker_context_message_filter.cc 18 thread_safe_sender_(ChildThread::current()->thread_safe_sender()) {}
  /external/chromium_org/content/utility/
utility_thread_impl.h 26 public ChildThread {
44 // ChildThread implementation.
utility_thread_impl.cc 40 : ChildThread(channel_name),
49 ChildThread::Shutdown();
56 return ChildThread::Send(msg);
  /external/chromium_org/content/worker/
worker_thread.h 21 class WorkerThread : public ChildThread {
worker_thread.cc 75 ChildThread::Shutdown();
113 IPC_MESSAGE_UNHANDLED(handled = ChildThread::OnMessageReceived(msg))
  /external/chromium_org/content/gpu/
gpu_child_thread.cc 64 : ChildThread(channel_id),
88 ChildThread::Shutdown();
101 return ChildThread::Send(msg);
  /external/chromium_org/content/renderer/pepper/
ppb_broker_impl.cc 36 ChildThread::current()->GetRouter()->AddRoute(routing_id_, this);
47 ChildThread::current()->GetRouter()->RemoveRoute(routing_id_);

Completed in 290 milliseconds

1 2