/external/chromium_org/content/common/mojo/ |
D | service_registry_impl.h | 26 explicit ServiceRegistryImpl(mojo::ScopedMessagePipeHandle handle); 33 void BindRemoteServiceProvider(mojo::ScopedMessagePipeHandle handle); 38 const base::Callback<void(mojo::ScopedMessagePipeHandle)> service_factory) 43 mojo::ScopedMessagePipeHandle handle) OVERRIDE; 51 mojo::ScopedMessagePipeHandle client_handle) OVERRIDE; 54 std::map<std::string, base::Callback<void(mojo::ScopedMessagePipeHandle)> >
|
D | service_registry_impl.cc | 15 ServiceRegistryImpl::ServiceRegistryImpl(mojo::ScopedMessagePipeHandle handle) in ServiceRegistryImpl() 28 mojo::ScopedMessagePipeHandle handle) { in BindRemoteServiceProvider() 35 mojo::ScopedMessagePipeHandle(pending_connects_.front().second)); in BindRemoteServiceProvider() 46 const base::Callback<void(mojo::ScopedMessagePipeHandle)> service_factory) { in AddService() 58 mojo::ScopedMessagePipeHandle handle) { in ConnectToRemoteService() 73 mojo::ScopedMessagePipeHandle client_handle) { in ConnectToService() 75 base::Callback<void(mojo::ScopedMessagePipeHandle)> >::iterator it = in ConnectToService()
|
/external/chromium_org/mojo/public/cpp/system/ |
D | message_pipe.h | 29 typedef ScopedHandleBase<MessagePipeHandle> ScopedMessagePipeHandle; typedef 30 MOJO_COMPILE_ASSERT(sizeof(ScopedMessagePipeHandle) == 35 ScopedMessagePipeHandle* message_pipe0, in CreateMessagePipe() 36 ScopedMessagePipeHandle* message_pipe1) { in CreateMessagePipe() 82 ScopedMessagePipeHandle handle0; 83 ScopedMessagePipeHandle handle1;
|
/external/chromium_org/ipc/mojo/ |
D | ipc_channel_mojo_readers.h | 31 MessageReader(mojo::ScopedMessagePipeHandle pipe, ChannelMojo* owner); 50 ControlReader(mojo::ScopedMessagePipeHandle pipe, ChannelMojo* owner); 67 ServerControlReader(mojo::ScopedMessagePipeHandle pipe, ChannelMojo* owner); 80 mojo::ScopedMessagePipeHandle message_pipe_; 88 ClientControlReader(mojo::ScopedMessagePipeHandle pipe, ChannelMojo* owner);
|
D | ipc_channel_mojo_readers.cc | 95 MessageReader::MessageReader(mojo::ScopedMessagePipeHandle pipe, in MessageReader() 166 ControlReader::ControlReader(mojo::ScopedMessagePipeHandle pipe, in ControlReader() 190 ServerControlReader::ServerControlReader(mojo::ScopedMessagePipeHandle pipe, in ServerControlReader() 212 mojo::ScopedMessagePipeHandle self; in SendHelloRequest() 213 mojo::ScopedMessagePipeHandle peer; in SendHelloRequest() 264 ClientControlReader::ClientControlReader(mojo::ScopedMessagePipeHandle pipe, in ClientControlReader() 273 mojo::ScopedMessagePipeHandle received_pipe( in RespondHelloRequest()
|
/external/chromium_org/mojo/application_manager/ |
D | application_loader.h | 33 virtual ScopedMessagePipeHandle RegisterApplication() = 0; 49 SimpleLoadCallbacks(ScopedMessagePipeHandle shell_handle); 50 virtual ScopedMessagePipeHandle RegisterApplication() OVERRIDE; 55 ScopedMessagePipeHandle shell_handle_;
|
D | background_shell_application_loader.cc | 20 ScopedMessagePipeHandle shell_handle) { in Load() 56 ScopedMessagePipeHandle shell_handle = callbacks->RegisterApplication(); in Load() 80 base::Owned(new ScopedMessagePipeHandle(shell_handle.Pass())))); in Load() 111 ScopedMessagePipeHandle* shell_handle) { in LoadOnBackgroundThread()
|
D | application_loader.cc | 12 ScopedMessagePipeHandle shell_handle) in SimpleLoadCallbacks() 19 ScopedMessagePipeHandle
|
D | application_manager.h | 74 ScopedMessagePipeHandle service_handle = in ConnectToService() 79 ScopedMessagePipeHandle ConnectToServiceByName( 126 ScopedMessagePipeHandle* shell_handle);
|
/external/chromium_org/mojo/public/cpp/bindings/ |
D | interface_request.h | 30 void Bind(ScopedMessagePipeHandle handle) { in Bind() 34 ScopedMessagePipeHandle PassMessagePipe() { in PassMessagePipe() 39 ScopedMessagePipeHandle handle_; 43 InterfaceRequest<Interface> MakeRequest(ScopedMessagePipeHandle handle) { in MakeRequest()
|
D | interface_ptr.h | 65 ScopedMessagePipeHandle handle, 94 ScopedMessagePipeHandle PassMessagePipe() { in PassMessagePipe() 127 ScopedMessagePipeHandle handle,
|
/external/chromium_org/mojo/spy/ |
D | spy.cc | 56 void Start(mojo::ScopedMessagePipeHandle client, in Start() 57 mojo::ScopedMessagePipeHandle interceptor, in Start() 108 mojo::ScopedMessagePipeHandle message_pipe_handle; in Start() 111 mojo::ScopedMessagePipeHandle faux_client; in Start() 112 mojo::ScopedMessagePipeHandle interceptor; in Start() 245 mojo::ScopedMessagePipeHandle faux_client; in OnConnectToClient() 246 mojo::ScopedMessagePipeHandle interceptor; in OnConnectToClient() 251 mojo::ScopedMessagePipeHandle real_handle = real_client.PassMessagePipe(); in OnConnectToClient() 278 void StartWebServer(int port, mojo::ScopedMessagePipeHandle pipe) { in StartWebServer()
|
/external/chromium_org/mojo/public/cpp/system/tests/ |
D | core_unittest.cc | 151 ScopedMessagePipeHandle h0; in TEST() 152 ScopedMessagePipeHandle h1; in TEST() 194 ScopedMessagePipeHandle h0; in TEST() 195 ScopedMessagePipeHandle h1; in TEST() 297 ScopedMessagePipeHandle h0; in TEST() 298 ScopedMessagePipeHandle h1; in TEST() 302 ScopedMessagePipeHandle h2; in TEST() 303 ScopedMessagePipeHandle h3; in TEST() 344 ScopedMessagePipeHandle h0; in TEST() 345 ScopedMessagePipeHandle h1; in TEST() [all …]
|
/external/chromium_org/mojo/public/cpp/bindings/tests/ |
D | handle_passing_unittest.cc | 61 ScopedMessagePipeHandle pipe) MOJO_OVERRIDE { in DoStuff() 74 ScopedMessagePipeHandle pipe0; in DoStuff() 126 ScopedMessagePipeHandle pipe1_; 156 ScopedMessagePipeHandle p = response->pipe.Pass(); in DidStuff() 170 ScopedMessagePipeHandle pipe1_; 171 ScopedMessagePipeHandle pipe3_; 233 factory->DoStuff(request.Pass(), ScopedMessagePipeHandle().Pass()); in TEST_F() 291 Array<ScopedMessagePipeHandle> pipes(2); in TEST_F() 298 factory->DoStuff(request.Pass(), ScopedMessagePipeHandle()); in TEST_F()
|
/external/chromium_org/mojo/shell/ |
D | ui_application_loader_android.cc | 20 ScopedMessagePipeHandle shell_handle) { in Load() 52 ScopedMessagePipeHandle shell_handle = callbacks->RegisterApplication(); in Load() 62 base::Owned(new ScopedMessagePipeHandle(shell_handle.Pass())))); in Load() 78 ScopedMessagePipeHandle* shell_handle) { in LoadOnUIThread()
|
D | dbus_application_loader_linux.cc | 38 ScopedMessagePipeHandle service_provider_handle) in LoadContext() 65 mojo::ScopedMessagePipeHandle bootstrap_message_pipe = in CreateChannelOnIOThread() 104 external_service_->Activate(mojo::ScopedMessagePipeHandle( in ActivateService() 131 ScopedMessagePipeHandle service_provider_handle_; 155 ScopedMessagePipeHandle shell_handle = callbacks->RegisterApplication(); in Load()
|
D | out_of_process_dynamic_service_runner.h | 29 ScopedMessagePipeHandle service_handle, 39 ScopedMessagePipeHandle service_handle_;
|
D | in_process_dynamic_service_runner.h | 29 ScopedMessagePipeHandle service_handle, 37 ScopedMessagePipeHandle service_handle_;
|
D | out_of_process_dynamic_service_runner.cc | 33 ScopedMessagePipeHandle service_handle, in Start() 49 ScopedMessagePipeHandle(MessagePipeHandle( in Start()
|
/external/chromium_org/mojo/public/cpp/bindings/lib/ |
D | connector.h | 30 ScopedMessagePipeHandle message_pipe, 64 ScopedMessagePipeHandle PassMessagePipe(); 94 ScopedMessagePipeHandle message_pipe_;
|
D | interface_ptr_internal.h | 47 void Bind(ScopedMessagePipeHandle handle, const MojoAsyncWaiter* waiter) { in Bind() 64 ScopedMessagePipeHandle PassMessagePipe() { in PassMessagePipe() 142 ScopedMessagePipeHandle handle_;
|
/external/chromium_org/content/public/common/ |
D | service_registry.h | 41 const base::Callback<void(mojo::ScopedMessagePipeHandle)> 60 mojo::ScopedMessagePipeHandle handle) = 0; 67 mojo::ScopedMessagePipeHandle handle) { in ForwardToServiceFactory()
|
/external/chromium_org/mojo/dbus/ |
D | dbus_external_service.h | 32 virtual void Connect(ScopedMessagePipeHandle client_handle) = 0; 78 virtual void Connect(ScopedMessagePipeHandle client_handle) OVERRIDE { in Connect() 94 virtual void Activate(ScopedMessagePipeHandle service_provider_handle) in Activate()
|
/external/chromium_org/mojo/embedder/ |
D | embedder.h | 69 MOJO_SYSTEM_IMPL_EXPORT ScopedMessagePipeHandle 83 MOJO_SYSTEM_IMPL_EXPORT ScopedMessagePipeHandle
|
D | channel_init.cc | 22 ScopedMessagePipeHandle ChannelInit::Init( in Init() 27 ScopedMessagePipeHandle message_pipe = in Init()
|