Home
last modified time | relevance | path

Searched refs:ptr_info (Results 1 – 6 of 6) sorted by relevance

/external/libchrome/mojo/public/cpp/bindings/tests/
Dassociated_interface_unittest.cc83 IntegerSenderAssociatedPtrInfo ptr_info; in AsyncGetSender() local
84 auto request = MakeRequest(&ptr_info); in AsyncGetSender()
86 callback.Run(std::move(ptr_info)); in AsyncGetSender()
107 AssociatedInterfacePtrInfo<T> ptr_info, in EmulatePassingAssociatedPtrInfo() argument
110 ScopedInterfaceEndpointHandle handle = ptr_info.PassHandle(); in EmulatePassingAssociatedPtrInfo()
114 ptr_info.version()); in EmulatePassingAssociatedPtrInfo()
138 void CreateIntegerSender(IntegerSenderAssociatedPtrInfo* ptr_info, in CreateIntegerSender() argument
143 CreateIntegerSenderWithExistingRouters(router1, ptr_info, router0, request); in CreateIntegerSender()
201 IntegerSenderAssociatedPtrInfo ptr_info; in TEST_F() local
202 CreateIntegerSenderWithExistingRouters(router1, &ptr_info, router0, &request); in TEST_F()
[all …]
Ddata_view_unittest.cc168 TestInterfacePtrInfo ptr_info; in TEST_F() local
169 TestInterfaceImpl impl(MakeRequest(&ptr_info)); in TEST_F()
172 obj->f_interface_array.push_back(std::move(ptr_info)); in TEST_F()
/external/libchrome/mojo/public/cpp/bindings/
Dthread_safe_interface_ptr.h286 PtrInfoType ptr_info, in Create() argument
289 wrapper->BindOnTaskRunner(std::move(ptr_info)); in Create()
319 void BindOnTaskRunner(AssociatedInterfacePtrInfo<InterfaceType> ptr_info) { in BindOnTaskRunner() argument
320 associated_group_ = AssociatedGroup(ptr_info.handle()); in BindOnTaskRunner()
322 base::Passed(&ptr_info))); in BindOnTaskRunner()
325 void BindOnTaskRunner(InterfacePtrInfo<InterfaceType> ptr_info) { in BindOnTaskRunner() argument
334 base::Passed(&ptr_info))); in BindOnTaskRunner()
349 void Bind(PtrInfoType ptr_info) { in Bind() argument
351 ptr_.Bind(std::move(ptr_info)); in Bind()
Dassociated_interface_ptr.h191 AssociatedInterfacePtrInfo<Interface> ptr_info; variable
192 auto request = MakeRequest(&ptr_info);
193 ptr->Bind(std::move(ptr_info), std::move(runner));
206 AssociatedInterfacePtrInfo<Interface>* ptr_info) { in MakeRequest() argument
212 ptr_info->set_handle(std::move(handle0)); in MakeRequest()
213 ptr_info->set_version(0); in MakeRequest()
Dinterface_request.h147 InterfaceRequest<Interface> MakeRequest(InterfacePtrInfo<Interface>* ptr_info) { in MakeRequest() argument
149 ptr_info->set_handle(std::move(pipe.handle0)); in MakeRequest()
150 ptr_info->set_version(0u); in MakeRequest()
/external/libchrome/ipc/
Dipc_channel_proxy.h221 mojo::AssociatedInterfacePtrInfo<Interface> ptr_info; in COMPONENT_EXPORT() local
222 auto request = mojo::MakeRequest(&ptr_info); in COMPONENT_EXPORT()
225 std::move(ptr_info), ipc_task_runner()); in COMPONENT_EXPORT()