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

1 2

  /external/chromium_org/content/gpu/
gpu_process.h 12 class GpuProcess : public ChildProcess {
gpu_child_thread.cc 152 ChildProcess::current()->io_message_loop_proxy(),
153 ChildProcess::current()->GetShutDownEvent()));
  /external/chromium_org/content/renderer/pepper/
pepper_proxy_channel_delegate_impl.cc 17 DCHECK(ChildProcess::current()) << "Must be in the renderer.";
18 return ChildProcess::current()->io_message_loop_proxy();
22 DCHECK(ChildProcess::current()) << "Must be in the renderer.";
23 return ChildProcess::current()->GetShutDownEvent();
pepper_hung_plugin_filter.cc 35 io_loop_(ChildProcess::current()->io_message_loop_proxy()),
  /external/chromium_org/content/child/
child_process.h 19 class CONTENT_EXPORT ChildProcess {
23 ChildProcess();
24 virtual ~ChildProcess();
56 // Getter for the one ChildProcess object for this process. Can only be called
58 static ChildProcess* current();
75 DISALLOW_COPY_AND_ASSIGN(ChildProcess);
child_process.cc 33 base::LazyInstance<base::ThreadLocalPointer<ChildProcess> > g_lazy_tls =
37 ChildProcess::ChildProcess()
55 ChildProcess::~ChildProcess() {
74 ChildThread* ChildProcess::main_thread() {
78 void ChildProcess::set_main_thread(ChildThread* thread) {
82 void ChildProcess::AddRefProcess() {
88 void ChildProcess::ReleaseProcess() {
99 ChildProcess* ChildProcess::current()
    [all...]
child_histogram_message_filter.cc 21 io_message_loop_(ChildProcess::current()->io_message_loop_proxy()),
child_thread.cc 129 ChildProcess::current()->io_message_loop_proxy(),
131 ChildProcess::current()->GetShutDownEvent()));
137 new IPC::SyncMessageFilter(ChildProcess::current()->GetShutDownEvent());
157 ChildProcess::current()->io_message_loop_proxy()));
child_thread.h 53 // ChildProcess::main_thread() is reset after Shutdown(), and before the
54 // destructor, so any subsystem that relies on ChildProcess::main_thread()
56 // has a thread that post tasks to ChildProcess::main_thread(), that thread
133 friend class ChildProcess;
  /external/chromium_org/content/ppapi_plugin/
plugin_process_dispatcher.cc 26 ChildProcess::current()->AddRefProcess();
37 base::Bind(&ChildProcess::ReleaseProcess,
38 base::Unretained(ChildProcess::current())),
ppapi_broker_main.cc 20 ChildProcess::WaitForDebugger("PpapiBroker");
29 ChildProcess ppapi_broker_process;
ppapi_plugin_main.cc 52 // effect is that we can't pop dialogs like ChildProcess::WaitForDebugger()
58 ChildProcess::WaitForDebugger("Ppapi");
104 ChildProcess ppapi_process;
broker_process_dispatcher.cc 84 ChildProcess::current()->AddRefProcess();
110 base::Bind(&ChildProcess::ReleaseProcess,
111 base::Unretained(ChildProcess::current())),
  /external/chromium_org/content/renderer/
render_process.h 26 class RenderProcess : public ChildProcess {
64 return static_cast<RenderProcess*>(ChildProcess::current());
  /external/chromium_org/content/plugin/
plugin_main.cc 74 ChildProcess::WaitForDebugger("Plugin");
78 ChildProcess plugin_process;
plugin_channel.cc 36 ChildProcess::current()->ReleaseProcess();
160 ChildProcess::current()->GetShutDownEvent()));
246 ChildProcess::current()->AddRefProcess();
plugin_thread.cc 176 renderer_id, ChildProcess::current()->io_message_loop_proxy()));
  /external/chromium_org/content/worker/
worker_main.cc 56 ChildProcess worker_process;
63 ChildProcess::WaitForDebugger("Worker");
websharedworker_stub.cc 36 ChildProcess::current()->AddRefProcess();
50 ChildProcess::current()->ReleaseProcess();
  /external/chromium_org/content/utility/
utility_main.cc 33 ChildProcess utility_process;
utility_thread_impl.cc 76 ChildProcess::current()->ReleaseProcess();
94 ChildProcess::current()->AddRefProcess();
127 ChildProcess::current()->ReleaseProcess();
  /external/chromium_org/content/renderer/java/
java_bridge_channel.cc 23 ChildProcess::current()->GetShutDownEvent()));
java_bridge_dispatcher.cc 33 channel_handle, ChildProcess::current()->io_message_loop_proxy());
  /external/chromium_org/content/test/
webrtc_audio_device_test.cc 153 ChildProcess::current()->io_message_loop()->PostTask(FROM_HERE,
171 ChildProcess::current()->io_message_loop()->PostTask(FROM_HERE,
184 ChildProcess::current()->io_message_loop()->PostTask(FROM_HERE,
327 ChildProcess::current()->io_message_loop()->message_loop_proxy().get());
  /external/chromium_org/content/renderer/npapi/
plugin_channel_host.cc 71 ChildProcess::current()->GetShutDownEvent()));

Completed in 835 milliseconds

1 2