Home
last modified time | relevance | path

Searched refs:ChannelFactory (Results 1 – 14 of 14) sorted by relevance

/external/chromium_org/ipc/
Dipc_channel_factory.cc11 class PlatformChannelFactory : public ChannelFactory {
37 scoped_ptr<ChannelFactory> ChannelFactory::Create( in Create()
39 return scoped_ptr<ChannelFactory>(new PlatformChannelFactory(handle, mode)); in Create()
Dipc_channel_factory.h19 class IPC_EXPORT ChannelFactory {
23 static scoped_ptr<ChannelFactory> Create(
26 virtual ~ChannelFactory() { } in ~ChannelFactory()
Dipc_channel_proxy.h25 class ChannelFactory; variable
75 scoped_ptr<ChannelFactory> factory,
87 void Init(scoped_ptr<ChannelFactory> factory, bool create_pipe_now);
183 void CreateChannel(scoped_ptr<ChannelFactory> factory);
Dipc_channel_proxy.cc53 void ChannelProxy::Context::CreateChannel(scoped_ptr<ChannelFactory> factory) { in CreateChannel()
321 scoped_ptr<ChannelFactory> factory, in Create()
358 Init(ChannelFactory::Create(channel_handle, mode), in Init()
362 void ChannelProxy::Init(scoped_ptr<ChannelFactory> factory, in Init()
Dipc_sync_channel.h26 class ChannelFactory; variable
80 scoped_ptr<ChannelFactory> factory,
Dipc_test_base.cc161 scoped_ptr<IPC::ChannelFactory> IPCTestBase::CreateChannelFactory( in CreateChannelFactory()
164 return IPC::ChannelFactory::Create(handle, IPC::Channel::MODE_SERVER); in CreateChannelFactory()
Dipc_test_base.h106 virtual scoped_ptr<IPC::ChannelFactory> CreateChannelFactory(
Dipc_sync_channel.cc424 scoped_ptr<ChannelFactory> factory, in Create()
/external/chromium_org/ipc/mojo/
Dipc_channel_mojo.cc23 class MojoChannelFactory : public ChannelFactory {
66 scoped_ptr<ChannelFactory> ChannelMojo::CreateServerFactory( in CreateServerFactory()
71 .PassAs<ChannelFactory>(); in CreateServerFactory()
75 scoped_ptr<ChannelFactory> ChannelMojo::CreateClientFactory( in CreateClientFactory()
79 .PassAs<ChannelFactory>(); in CreateClientFactory()
Dipc_channel_mojo.h80 static scoped_ptr<ChannelFactory> CreateServerFactory(
84 static scoped_ptr<ChannelFactory> CreateClientFactory(
Dipc_mojo_perftest.cc32 virtual scoped_ptr<IPC::ChannelFactory> CreateChannelFactory( in CreateChannelFactory()
Dipc_channel_mojo_unittest.cc82 virtual scoped_ptr<IPC::ChannelFactory> CreateChannelFactory( in CreateChannelFactory()
190 virtual scoped_ptr<IPC::ChannelFactory> CreateChannelFactory( in CreateChannelFactory()
/external/chromium_org/content/child/npapi/
Dnp_channel_base.h120 typedef NPChannelBase* (*ChannelFactory)();
133 ChannelFactory factory, base::MessageLoopProxy* ipc_message_loop,
Dnp_channel_base.cc66 ChannelFactory factory, base::MessageLoopProxy* ipc_message_loop, in GetChannel()