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

1 2

  /external/chromium_org/ipc/
ipc_channel_proxy.cc 25 ChannelProxy::Context::Context(
38 // 1) Create the ChannelProxy on a different thread, or
41 // basically works, but is outside the intent of ChannelProxy. This support
46 ChannelProxy::Context::~Context() {
49 void ChannelProxy::Context::ClearIPCTaskRunner() {
53 void ChannelProxy::Context::CreateChannel(scoped_ptr<ChannelFactory> factory) {
59 bool ChannelProxy::Context::TryFilters(const Message& message) {
82 bool ChannelProxy::Context::OnMessageReceived(const Message& message) {
90 bool ChannelProxy::Context::OnMessageReceivedNoFilter(const Message& message) {
97 void ChannelProxy::Context::OnChannelConnected(int32 peer_pid)
    [all...]
ipc_channel_proxy.h 31 // IPC::ChannelProxy
36 // your main thread (the thread on which the IPC::ChannelProxy is created).
38 // The API for an IPC::ChannelProxy is very similar to that of an IPC::Channel.
39 // When you send a message to an IPC::ChannelProxy, the message is routed to
48 // An IPC::ChannelProxy can have a MessageFilter associated with it, which will
50 // the consumer of IPC::ChannelProxy the ability to respond to incoming
55 // The consumer of IPC::ChannelProxy is responsible for allocating the Thread
58 class IPC_EXPORT ChannelProxy : public Sender, public base::NonThreadSafe {
62 // the thread that creates the ChannelProxy. The filter's OnMessageReceived
68 static scoped_ptr<ChannelProxy> Create
    [all...]
ipc_test_base.h 101 IPC::ChannelProxy* channel_proxy() { return channel_proxy_.get(); }
118 scoped_ptr<IPC::ChannelProxy> channel_proxy_;
ipc_sync_channel.cc 234 : ChannelProxy::Context(listener, ipc_task_runner),
448 : ChannelProxy(new SyncContext(listener, ipc_task_runner, shutdown_event)) {
474 ChannelProxy::Send(message);
490 ChannelProxy::Send(message);
ipc_sync_channel.h 28 // This is similar to ChannelProxy, with the added feature of supporting sending
62 class IPC_EXPORT SyncChannel : public ChannelProxy {
86 // Creates an uninitialized sync channel. Call ChannelProxy::Init to
121 // ChannelProxy::Context for more information.
174 // ChannelProxy methods that we override.
  /external/chromium_org/ppapi/nacl_irt/
manifest_service.h 20 class ChannelProxy;
37 scoped_ptr<IPC::ChannelProxy> channel_;
manifest_service.cc 68 channel_ = IPC::ChannelProxy::Create(handle,
  /external/chromium_org/remoting/host/
ipc_util.h 26 class ChannelProxy;
41 scoped_ptr<IPC::ChannelProxy>* server_out);
desktop_process.h 20 class ChannelProxy;
78 scoped_ptr<IPC::ChannelProxy> daemon_channel_;
ipc_util_posix.cc 25 scoped_ptr<IPC::ChannelProxy>* server_out) {
49 *server_out = IPC::ChannelProxy::Create(IPC::ChannelHandle(socket_name, fd),
ipc_util_win.cc 30 scoped_ptr<IPC::ChannelProxy>* server_out) {
55 scoped_ptr<IPC::ChannelProxy> server =
56 IPC::ChannelProxy::Create(IPC::ChannelHandle(pipe.Get()),
desktop_process_unittest.cc 141 scoped_ptr<IPC::ChannelProxy> daemon_channel_;
152 scoped_ptr<IPC::ChannelProxy> network_channel_;
178 network_channel_ = IPC::ChannelProxy::Create(channel_handle,
249 daemon_channel_ = IPC::ChannelProxy::Create(IPC::ChannelHandle(channel_name),
desktop_session_agent.h 25 class ChannelProxy;
200 scoped_ptr<IPC::ChannelProxy> network_channel_;
desktop_session_proxy.h 30 class ChannelProxy;
209 scoped_ptr<IPC::ChannelProxy> desktop_channel_;
  /external/chromium_org/remoting/host/win/
unprivileged_process_delegate.h 24 class ChannelProxy;
65 scoped_ptr<IPC::ChannelProxy> channel_;
  /external/chromium_org/tools/ipc_fuzzer/replay/
replay_process.h 46 scoped_ptr<IPC::ChannelProxy> channel_;
replay_process.cc 58 channel_ = IPC::ChannelProxy::Create(channel_name,
81 LOG(ERROR) << "ChannelProxy::Send() failed after "
  /external/chromium_org/chrome/browser/apps/app_shim/
app_shim_host_mac.h 20 class ChannelProxy;
80 scoped_ptr<IPC::ChannelProxy> channel_;
app_shim_host_mac.cc 27 channel_ = IPC::ChannelProxy::Create(
  /external/chromium_org/content/public/browser/
browser_ppapi_host.h 16 class ChannelProxy;
54 IPC::ChannelProxy* channel,
render_process_host.h 152 virtual IPC::ChannelProxy* GetChannel() = 0;
  /external/chromium_org/chrome/browser/service_process/
service_process_control.h 205 void SetChannel(scoped_ptr<IPC::ChannelProxy> channel);
210 scoped_ptr<IPC::ChannelProxy> channel_;
  /external/chromium_org/components/nacl/browser/
nacl_process_host.h 33 class ChannelProxy;
236 scoped_ptr<IPC::ChannelProxy> ipc_proxy_channel_;
  /external/chromium_org/win8/viewer/
metro_viewer_process_host.h 26 class ChannelProxy;
197 scoped_ptr<IPC::ChannelProxy> channel_;
  /external/chromium_org/content/browser/renderer_host/
render_process_host_impl.h 121 virtual IPC::ChannelProxy* GetChannel() OVERRIDE;
265 scoped_ptr<IPC::ChannelProxy> channel_;
292 scoped_ptr<IPC::ChannelProxy> CreateChannelProxy(

Completed in 1480 milliseconds

1 2