Home
last modified time | relevance | path

Searched refs:InterfaceRequest (Results 1 – 25 of 33) sorted by relevance

12

/external/libmojo/mojo/public/cpp/bindings/
Dinterface_request.h24 class InterfaceRequest {
28 InterfaceRequest() {} in InterfaceRequest() function
29 InterfaceRequest(decltype(nullptr)) {} in InterfaceRequest() function
32 InterfaceRequest(InterfaceRequest&& other) { in InterfaceRequest() function
35 InterfaceRequest& operator=(InterfaceRequest&& other) {
42 InterfaceRequest& operator=(decltype(nullptr)) { in decltype()
58 bool Equals(const InterfaceRequest& other) const { in Equals()
70 DISALLOW_COPY_AND_ASSIGN(InterfaceRequest);
77 InterfaceRequest<Interface> MakeRequest(ScopedMessagePipeHandle handle) { in MakeRequest()
78 InterfaceRequest<Interface> request; in MakeRequest()
[all …]
Dbinding.h101 InterfaceRequest<Interface> request,
149 void Bind(InterfaceRequest<Interface> request,
204 InterfaceRequest<Interface> Unbind() { in Unbind()
Dstrong_binding.h66 StrongBinding(Interface* impl, InterfaceRequest<Interface> request) in StrongBinding()
87 void Bind(InterfaceRequest<Interface> request) { in Bind()
Dbinding_set.h32 void AddBinding(Interface* impl, InterfaceRequest<Interface> request) { in AddBinding()
62 Element(Interface* impl, InterfaceRequest<Interface> request) in Element()
/external/libmojo/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
DInterfaceRequest.java18 public class InterfaceRequest<P extends Interface> implements HandleOwner<MessagePipeHandle> { class
30 InterfaceRequest(MessagePipeHandle handle) { in InterfaceRequest() method in InterfaceRequest
55 public static InterfaceRequest asInterfaceRequestUnsafe(MessagePipeHandle handle) { in asInterfaceRequestUnsafe()
56 return new InterfaceRequest(handle); in asInterfaceRequestUnsafe()
DInterface.java344 public final void bind(I impl, InterfaceRequest<I> request) { in bind()
368 public final Pair<P, InterfaceRequest<I>> getInterfaceRequest(Core core) { in getInterfaceRequest()
371 return Pair.create(proxy, new InterfaceRequest<I>(handles.second)); in getInterfaceRequest()
374 public final InterfaceRequest<I> asInterfaceRequest(MessagePipeHandle handle) { in asInterfaceRequest()
375 return new InterfaceRequest<I>(handle); in asInterfaceRequest()
DDecoder.java487 public <I extends Interface> InterfaceRequest<I> readInterfaceRequest(int offset, in readInterfaceRequest()
493 return new InterfaceRequest<I>(handle); in readInterfaceRequest()
667 public <I extends Interface> InterfaceRequest<I>[] readInterfaceRequests( in readInterfaceRequests()
675 InterfaceRequest<I>[] result = new InterfaceRequest[si.elementsOrVersion]; in readInterfaceRequests()
DEncoder.java294 public <I extends Interface> void encode(InterfaceRequest<I> v, int offset, boolean nullable) { in encode()
478 public <I extends Interface> void encode(InterfaceRequest<I>[] v, int offset, in encode()
/external/libmojo/mojo/public/cpp/bindings/tests/
Dvariant_test_util.h21 InterfaceRequest<Interface0> ConvertInterfaceRequest( in ConvertInterfaceRequest()
22 InterfaceRequest<Interface1> request) { in ConvertInterfaceRequest()
24 InterfaceRequest<Interface0> result; in ConvertInterfaceRequest()
De2e_perftest.cc26 EchoServiceImpl(InterfaceRequest<EchoService> request,
39 EchoServiceImpl::EchoServiceImpl(InterfaceRequest<EchoService> request, in EchoServiceImpl()
164 void CreateAndRunService(InterfaceRequest<test::EchoService> request, in CreateAndRunService()
173 InterfaceRequest<test::EchoService> request; in DEFINE_TEST_CLIENT_TEST_WITH_PIPE()
Dhandle_passing_unittest.cc39 InterfaceRequest<imported::ImportedInterface> request, in ImportedInterfaceImpl()
59 explicit SampleNamedObjectImpl(InterfaceRequest<sample::NamedObject> request) in SampleNamedObjectImpl()
74 explicit SampleFactoryImpl(InterfaceRequest<sample::Factory> request) in SampleFactoryImpl()
134 InterfaceRequest<sample::NamedObject> object_request) override { in CreateNamedObject()
143 InterfaceRequest<imported::ImportedInterface> imported, in RequestImportedInterface()
330 InterfaceRequest<sample::NamedObject> object1_request = GetProxy(&object1); in TEST_F()
Dinterface_ptr_unittest.cc28 explicit MathCalculatorImpl(InterfaceRequest<math::Calculator> request) in MathCalculatorImpl()
138 explicit ReentrantServiceImpl(InterfaceRequest<sample::Service> request) in ReentrantServiceImpl()
157 void GetPort(mojo::InterfaceRequest<sample::Port> port) override {} in GetPort()
629 CImpl(bool* d_called, InterfaceRequest<C> request, in CImpl()
648 BImpl(bool* d_called, InterfaceRequest<B> request, in BImpl()
655 void GetC(InterfaceRequest<C> c) override { in GetC()
666 AImpl(InterfaceRequest<A> request, const base::Closure& closure) in AImpl()
674 void GetB(InterfaceRequest<B> b) override { in GetB()
707 explicit PingTestImpl(InterfaceRequest<sample::PingTest> request) in PingTestImpl()
Dequals_unittest.cc139 TEST_F(EqualsTest, InterfaceRequest) { in TEST_F() argument
142 InterfaceRequest<SomeInterface> req1; in TEST_F()
143 InterfaceRequest<SomeInterface> req2; in TEST_F()
Dversioning_test_service.cc36 InterfaceRequest<HumanResourceDatabase> request) in HumanResourceDatabaseImpl()
111 InterfaceRequest<HumanResourceDatabase> request) override { in Create()
Dbinding_unittest.cc54 void GetPort(InterfaceRequest<sample::Port> port) override {} in GetPort()
174 InterfaceRequest<sample::Service> request) in ServiceImplWithBinding()
350 InterfaceRequest<sample::Service> request) in ServiceImplWithStrongBinding()
Dpickle_unittest.cc163 InterfaceRequest<ProxyType> request = GetProxy(&proxy); in ConnectToChromiumService()
173 InterfaceRequest<ProxyType> request = GetProxy(&proxy); in ConnectToBlinkService()
Drequest_response_unittest.cc22 explicit ProviderImpl(InterfaceRequest<sample::Provider> request) in ProviderImpl()
/external/libmojo/mojo/public/cpp/bindings/lib/
Dhandle_interface_serialization.h86 struct Serializer<InterfaceRequest<T>, InterfaceRequest<T>> {
87 static void Serialize(InterfaceRequest<T>& input,
94 InterfaceRequest<T>* output,
Dbinding_state.h91 InterfaceRequest<Interface> Unbind() { in Unbind()
92 InterfaceRequest<Interface> request = in Unbind()
198 InterfaceRequest<Interface> Unbind() { in Unbind()
200 InterfaceRequest<Interface> request = in Unbind()
Dbindings_internal.h32 class InterfaceRequest; variable
264 struct MojomTypeTraits<InterfaceRequest<T>, false> {
/external/libmojo/mojo/android/javatests/src/org/chromium/mojo/bindings/
DInterfacesTest.java131 public void createNamedObject(InterfaceRequest<NamedObject> obj) { in createNamedObject()
136 public void requestImportedInterface(InterfaceRequest<ImportedInterface> obj, in requestImportedInterface()
244 Pair<NamedObject.Proxy, InterfaceRequest<NamedObject>> request = in testFactoryOverPipe()
/external/libmojo/mojo/public/tools/bindings/pylib/mojom_tests/generate/
Dmodule_unittest.py34 mojom.InterfaceRequest(struct)
Ddata_unittest.py121 interface_req = mojom.InterfaceRequest(interface)
/external/libmojo/mojo/public/tools/bindings/pylib/mojom/generate/
Dmodule.py454 class InterfaceRequest(ReferenceKind): class
473 if not isinstance(kind, InterfaceRequest):
742 return isinstance(kind, InterfaceRequest)
/external/libmojo/mojo/public/java/
DBUILD.gn44 "bindings/src/org/chromium/mojo/bindings/InterfaceRequest.java",

12