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

1 2

  /external/chromium_org/content/child/
child_process.h 15 class ChildThread;
27 ChildThread* main_thread();
31 void set_main_thread(ChildThread* thread);
73 scoped_ptr<ChildThread> main_thread_;
child_thread.cc 59 base::LazyInstance<base::ThreadLocalPointer<ChildThread> > g_lazy_tls =
110 ChildThread* g_child_thread = NULL;
144 ChildThread::ChildThread()
152 ChildThread::ChildThread(const std::string& channel_name)
159 void ChildThread::Init() {
232 base::Bind(&ChildThread::EnsureConnected,
255 ChildThread::~ChildThread() {
    [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);
webkitplatformsupport_impl.cc 33 return ChildThread::current()->CreateBridge(request_info);
41 ChildThread::current()->socket_stream_dispatcher();
child_thread.h 52 class CONTENT_EXPORT ChildThread : public IPC::Listener, public IPC::Sender {
55 ChildThread();
57 explicit ChildThread(const std::string& channel_name);
63 virtual ~ChildThread();
141 static ChildThread* current();
191 // Implements message routing functionality to the consumers of ChildThread.
222 base::WeakPtrFactory<ChildThread> channel_connected_factory_;
232 DISALLOW_COPY_AND_ASSIGN(ChildThread);
child_message_filter.h 49 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 50 ChildThread::current()->Send(
199 ChildThread::current()->websocket_dispatcher();
212 ChildThread::current()->Send(
243 ChildThread::current()->Send(
256 ChildThread::current()->Send(
269 ChildThread::current()->Send(
277 ChildThread::current()->websocket_dispatcher();
child_process.cc 74 ChildThread* ChildProcess::main_thread() {
78 void ChildProcess::set_main_thread(ChildThread* thread) {
child_message_filter.cc 54 thread_safe_sender_(ChildThread::current()->thread_safe_sender()) {}
socket_stream_dispatcher.cc 86 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_));
webmessageportchannel_impl.h 23 class ChildThread;
  /external/chromium_org/content/plugin/
plugin_thread.h 24 class PluginThread : public ChildThread {
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/ref/
ReferenceQueueTest.java 34 public class ChildThread implements Runnable {
35 public ChildThread() {
88 Thread ct = new Thread(new ChildThread());
  /external/chromium_org/content/renderer/
websharedworker_proxy.h 19 class ChildThread;
30 WebSharedWorkerProxy(ChildThread* child_thread,
92 ChildThread* child_thread_;
  /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/child/fileapi/
webfilewriter_impl.cc 21 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(
file_system_dispatcher.cc 190 ChildThread::current()->Send(new FileSystemHostMsg_OpenFileSystem(
200 ChildThread::current()->Send(new FileSystemHostMsg_ResolveURL(
209 ChildThread::current()->Send(new FileSystemHostMsg_DeleteFileSystem(
218 ChildThread::current()->Send(new FileSystemHostMsg_Move(
227 ChildThread::current()->Send(new FileSystemHostMsg_Copy(
236 ChildThread::current()->Send(
246 ChildThread::current()->Send(
255 ChildThread::current()->Send(new FileSystemHostMsg_Create(
266 ChildThread::current()->Send(new FileSystemHostMsg_Create(
275 ChildThread::current()->Send
    [all...]
  /external/chromium_org/content/common/gpu/
gpu_channel_manager.h 47 class ChildThread;
65 GpuChannelManager(ChildThread* gpu_child_thread,
141 ChildThread* gpu_child_thread_;
  /external/chromium_org/content/worker/
worker_thread.h 21 class WorkerThread : public ChildThread {
worker_thread.cc 74 ChildThread::Shutdown();
112 IPC_MESSAGE_UNHANDLED(handled = ChildThread::OnMessageReceived(msg))
  /external/chromium_org/content/gpu/
gpu_child_thread.cc 59 : ChildThread(channel_id),
80 ChildThread::Shutdown();
93 return ChildThread::Send(msg);
  /external/chromium_org/content/renderer/pepper/
ppb_broker_impl.cc 36 ChildThread::current()->AddRoute(routing_id_, this);
47 ChildThread::current()->RemoveRoute(routing_id_);

Completed in 941 milliseconds

1 2