Home
last modified time | relevance | path

Searched refs:AssociatedInterfaceRequest (Results 1 – 22 of 22) sorted by relevance

/external/libchrome/mojo/public/cpp/bindings/
Dassociated_interface_request.h19 class AssociatedInterfaceRequest {
23 AssociatedInterfaceRequest() {} in AssociatedInterfaceRequest() function
24 AssociatedInterfaceRequest(decltype(nullptr)) {} in AssociatedInterfaceRequest() function
26 explicit AssociatedInterfaceRequest(ScopedInterfaceEndpointHandle handle) in AssociatedInterfaceRequest() function
31 AssociatedInterfaceRequest(AssociatedInterfaceRequest&& other) { in AssociatedInterfaceRequest() function
35 AssociatedInterfaceRequest& operator=(AssociatedInterfaceRequest&& other) {
44 AssociatedInterfaceRequest& operator=(decltype(nullptr)) { in decltype()
59 bool Equals(const AssociatedInterfaceRequest& other) const { in Equals()
75 DISALLOW_COPY_AND_ASSIGN(AssociatedInterfaceRequest);
Dassociated_binding.h109 AssociatedInterfaceRequest<Interface> request,
118 void Bind(AssociatedInterfaceRequest<Interface> request,
129 AssociatedInterfaceRequest<Interface> Unbind() { in Unbind()
131 AssociatedInterfaceRequest<Interface> request( in Unbind()
Dassociated_interface_ptr.h188 AssociatedInterfaceRequest<Interface> MakeRequest(
205 AssociatedInterfaceRequest<Interface> MakeRequest( in MakeRequest()
215 return AssociatedInterfaceRequest<Interface>(std::move(handle1)); in MakeRequest()
230 AssociatedInterfaceRequest<Interface> MakeRequestAssociatedWithDedicatedPipe( in MakeRequestAssociatedWithDedicatedPipe()
250 return AssociatedInterfaceRequest<Interface>(std::move(endpoint1)); in MakeRequestAssociatedWithDedicatedPipe()
Dstrong_associated_binding.h54 AssociatedInterfaceRequest<Interface> request) { in Create()
95 AssociatedInterfaceRequest<Interface> request) in StrongAssociatedBinding()
128 AssociatedInterfaceRequest<Interface> request) { in MakeStrongAssociatedBinding()
Dassociated_binding_set.h18 using RequestType = AssociatedInterfaceRequest<Interface>;
DREADME.md1045 `mojo::AssociatedInterfaceRequest<Bar>`).
/external/libchrome/mojo/public/js/
Dinterface_types.js60 function AssociatedInterfaceRequest(interfaceEndpointHandle) { class
64 AssociatedInterfaceRequest.prototype.isValid = function() { class
68 AssociatedInterfaceRequest.prototype.resetWithReason = function(reason) {
90 mojo.AssociatedInterfaceRequest = AssociatedInterfaceRequest;
Dbindings.js18 return new mojo.AssociatedInterfaceRequest(handle1);
522 return new mojo.AssociatedInterfaceRequest(null);
525 var result = new mojo.AssociatedInterfaceRequest(
DREADME.md188 * `mojo.AssociatedInterfacePtrInfo` and `mojo.AssociatedInterfaceRequest`
194 * `mojo.AssociatedBinding` owns an `AssociatedInterfaceRequest`. It listens on
/external/libchrome/mojo/public/cpp/bindings/lib/
Dinterface_serialization.h54 AssociatedInterfaceRequest<T>> {
57 static void Serialize(AssociatedInterfaceRequest<T>& input,
65 AssociatedInterfaceRequest<T>* output,
69 *output = AssociatedInterfaceRequest<T>();
71 *output = AssociatedInterfaceRequest<T>(std::move(handle));
/external/libchrome/mojo/public/cpp/bindings/tests/
Dassociated_interface_unittest.cc42 explicit IntegerSenderImpl(AssociatedInterfaceRequest<IntegerSender> request) in IntegerSenderImpl()
76 void GetSender(AssociatedInterfaceRequest<IntegerSender> sender) override { in GetSender()
200 AssociatedInterfaceRequest<IntegerSender> request; in TEST_F()
300 void SetUp(AssociatedInterfaceRequest<IntegerSender> request0, in SetUp()
301 AssociatedInterfaceRequest<IntegerSender> request1, in SetUp()
387 AssociatedInterfaceRequest<IntegerSender> requests[4]; in TEST_F()
472 AssociatedInterfaceRequest<IntegerSender> requests[4]; in TEST_F()
754 AssociatedInterfaceRequest<IntegerSender> request; in TEST_F()
780 AssociatedInterfaceRequest<IntegerSender> request; in TEST_F()
796 AssociatedInterfaceRequest<IntegerSender> request; in TEST_F()
[all …]
/external/libchrome/mojo/public/js/lib/
Dcodec.js1041 function AssociatedInterfaceRequest() { class
1044 AssociatedInterfaceRequest.decode = function(decoder) {
1046 return new mojo.AssociatedInterfaceRequest(handle);
1049 AssociatedInterfaceRequest.encode = function(encoder, val) {
1054 AssociatedInterfaceRequest.encodedSize = 4;
1060 AssociatedInterfaceRequest.encodedSize;
1063 AssociatedInterfaceRequest.decode;
1066 AssociatedInterfaceRequest.encode;
1134 internal.AssociatedInterfaceRequest = AssociatedInterfaceRequest;
Dvalidator.js97 return cls === internal.AssociatedInterfaceRequest ||
618 var elementSize = internal.AssociatedInterfaceRequest.encodedSize;
/external/libchrome/ipc/
Dipc_channel.h114 base::Callback<void(mojo::AssociatedInterfaceRequest<Interface>)>; in COMPONENT_EXPORT()
138 mojo::AssociatedInterfaceRequest<Interface>(std::move(handle))); in COMPONENT_EXPORT()
Dipc_channel_proxy.h179 base::Callback<void(mojo::AssociatedInterfaceRequest<Interface>)>; in COMPONENT_EXPORT()
402 factory.Run(mojo::AssociatedInterfaceRequest<Interface>(std::move(handle))); in COMPONENT_EXPORT()
Dipc_message_pipe_reader.h70 mojo::AssociatedInterfaceRequest<mojom::Channel> receiver, in COMPONENT_EXPORT()
Dipc_message_pipe_reader.cc27 mojo::AssociatedInterfaceRequest<mojom::Channel> receiver, in MessagePipeReader()
/external/libchrome/mojo/public/tools/bindings/generators/js_templates/
Dfuzzing.tmpl103 {{build_call(obj, operation, 'AssociatedInterfaceRequest', name, '"' ~ kind.kind.module.namespace ~…
/external/libchrome/mojo/public/tools/bindings/pylib/mojom/generate/
Dpack.py53 if isinstance(kind, mojom.AssociatedInterfaceRequest):
Dmodule.py507 class AssociatedInterfaceRequest(ReferenceKind): class
839 return isinstance(kind, AssociatedInterfaceRequest)
Dtranslate.py196 kind = mojom.AssociatedInterfaceRequest(inner_kind)
/external/libchrome/mojo/public/tools/bindings/generators/cpp_templates/
Dmodule.h.tmpl146 mojo::AssociatedInterfaceRequest<{{interface.name}}>;