/external/chromium_org/content/child/ |
D | child_process.cc | 33 base::LazyInstance<base::ThreadLocalPointer<ChildProcess> > g_lazy_tls = 37 ChildProcess::ChildProcess() in ChildProcess() function in content::ChildProcess 55 ChildProcess::~ChildProcess() { in ~ChildProcess() 75 ChildThread* ChildProcess::main_thread() { in main_thread() 79 void ChildProcess::set_main_thread(ChildThread* thread) { in set_main_thread() 83 void ChildProcess::AddRefProcess() { in AddRefProcess() 89 void ChildProcess::ReleaseProcess() { in ReleaseProcess() 100 ChildProcess* ChildProcess::current() { in current() 104 base::WaitableEvent* ChildProcess::GetShutDownEvent() { in GetShutDownEvent() 108 void ChildProcess::WaitForDebugger(const std::string& label) { in WaitForDebugger()
|
D | child_process.h | 31 class CONTENT_EXPORT ChildProcess { 35 ChildProcess(); 36 virtual ~ChildProcess(); 69 static ChildProcess* current(); 86 DISALLOW_COPY_AND_ASSIGN(ChildProcess);
|
D | scoped_child_process_reference.cc | 15 ChildProcess::current()->AddRefProcess(); in ScopedChildProcessReference() 20 ChildProcess::current()->ReleaseProcess(); in ~ScopedChildProcessReference() 28 base::Bind(&ChildProcess::ReleaseProcess, in ReleaseWithDelay() 29 base::Unretained(ChildProcess::current())), in ReleaseWithDelay()
|
D | child_thread.cc | 234 ChildProcess::current()->io_message_loop_proxy(), in CreateChannel() 236 ChildProcess::current()->GetShutDownEvent()); in CreateChannel() 244 ChildProcess::current()->io_message_loop_proxy(), in CreateChannel() 246 ChildProcess::current()->GetShutDownEvent()); in CreateChannel() 270 new IPC::SyncMessageFilter(ChildProcess::current()->GetShutDownEvent()); in Init() 302 ChildProcess::current()->io_message_loop_proxy())); in Init()
|
/external/chromium_org/mojo/shell/ |
D | child_process.cc | 18 ChildProcess::~ChildProcess() { in ~ChildProcess() 22 scoped_ptr<ChildProcess> ChildProcess::Create( in Create() 25 return scoped_ptr<ChildProcess>(); in Create() 31 scoped_ptr<ChildProcess> rv; in Create() 54 ChildProcess::ChildProcess() { in ChildProcess() function in mojo::shell::ChildProcess
|
D | child_process.h | 21 class ChildProcess { 29 virtual ~ChildProcess(); 34 static scoped_ptr<ChildProcess> Create(const base::CommandLine& command_line); 41 ChildProcess(); 51 DISALLOW_COPY_AND_ASSIGN(ChildProcess);
|
D | shell_test_main.cc | 20 scoped_ptr<mojo::shell::ChildProcess> child_process = in main() 21 mojo::shell::ChildProcess::Create(command_line); in main()
|
D | child_process_host.h | 38 ChildProcess::Type type); 68 const ChildProcess::Type type_;
|
D | app_child_process.h | 16 class AppChildProcess : public ChildProcess {
|
D | test_child_process.h | 14 class TestChildProcess : public ChildProcess {
|
/external/chromium_org/content/renderer/media/ |
D | video_capture_impl_manager.cc | 50 ChildProcess::current()->io_message_loop_proxy()->PostTask( in ~VideoCaptureImplManager() 54 ChildProcess::current()->io_message_loop_proxy()->PostTask( in ~VideoCaptureImplManager() 73 ChildProcess::current()->io_message_loop_proxy()->PostTask( in UseDevice() 97 ChildProcess::current()->io_message_loop_proxy()->PostTask( in StartCapture() 117 ChildProcess::current()->io_message_loop_proxy()->PostTask( in GetDeviceSupportedFormats() 130 ChildProcess::current()->io_message_loop_proxy()->PostTask( in GetDeviceFormatsInUse() 149 ChildProcess::current()->io_message_loop_proxy()->PostTask( in StopCapture() 167 ChildProcess::current()->io_message_loop_proxy()->PostTask( in UnrefDevice() 171 ChildProcess::current()->io_message_loop_proxy()->PostTask( in UnrefDevice() 183 ChildProcess::current()->io_message_loop_proxy()->PostTask( in SuspendDevices()
|
D | video_source_handler_unittest.cc | 47 : child_process_(new ChildProcess()), in VideoSourceHandlerTest() 61 scoped_ptr<ChildProcess> child_process_;
|
D | video_capture_impl_manager_unittest.cc | 78 child_process_.reset(new ChildProcess()); in VideoCaptureImplManagerTest() 126 scoped_ptr<ChildProcess> child_process_;
|
/external/chromium_org/content/renderer/pepper/ |
D | pepper_proxy_channel_delegate_impl.cc | 16 DCHECK(ChildProcess::current()) << "Must be in the renderer."; in GetIPCMessageLoop() 17 return ChildProcess::current()->io_message_loop_proxy(); in GetIPCMessageLoop() 21 DCHECK(ChildProcess::current()) << "Must be in the renderer."; in GetShutdownEvent() 22 return ChildProcess::current()->GetShutDownEvent(); in GetShutdownEvent()
|
/external/chromium_org/content/renderer/ |
D | render_process.h | 19 class RenderProcess : public ChildProcess { 35 return static_cast<RenderProcess*>(ChildProcess::current()); in current()
|
/external/chromium_org/content/ppapi_plugin/ |
D | ppapi_broker_main.cc | 20 ChildProcess::WaitForDebugger("PpapiBroker"); in PpapiBrokerMain() 29 ChildProcess ppapi_broker_process; in PpapiBrokerMain()
|
D | ppapi_plugin_main.cc | 79 ChildProcess::WaitForDebugger("Ppapi"); in PpapiPluginMain() 133 ChildProcess ppapi_process; in PpapiPluginMain()
|
/external/chromium_org/content/utility/ |
D | in_process_utility_thread.h | 15 class ChildProcess; variable 30 scoped_ptr<ChildProcess> child_process_;
|
D | utility_thread_impl.cc | 73 ChildProcess::current()->ReleaseProcess(); in ReleaseProcessIfNeeded() 91 ChildProcess::current()->AddRefProcess(); in Init()
|
/external/chromium_org/content/plugin/ |
D | plugin_main.cc | 58 ChildProcess::WaitForDebugger("Plugin"); in PluginMain() 62 ChildProcess plugin_process; in PluginMain()
|
/external/chromium_org/mojo/shell/desktop/ |
D | mojo_main.cc | 48 if (scoped_ptr<mojo::shell::ChildProcess> child_process = in main() 49 mojo::shell::ChildProcess::Create( in main()
|
/external/chromium_org/content/renderer/media/webrtc/ |
D | video_destination_handler_unittest.cc | 39 : child_process_(new ChildProcess()), in VideoDestinationHandlerTest() 55 scoped_ptr<ChildProcess> child_process_;
|
D | media_stream_remote_video_source_unittest.cc | 37 : child_process_(new ChildProcess()), in MediaStreamRemoteVideoSourceTest() 103 scoped_ptr<ChildProcess> child_process_;
|
D | webrtc_media_stream_adapter_unittest.cc | 28 child_process_.reset(new ChildProcess()); in SetUp() 102 scoped_ptr<ChildProcess> child_process_;
|
/external/chromium_org/content/gpu/ |
D | gpu_process.h | 12 class GpuProcess : public ChildProcess {
|