Searched defs:endpoint (Results 1 - 25 of 102) sorted by relevance

12345

/external/walt/ios/WALT/
H A DMIDIEndpoint.h20 /** An abstract MIDI endpoint (input source or output destination). */
22 @property (readonly, nonatomic) MIDIEndpointRef endpoint; variable
/external/perfetto/src/tracing/test/
H A Dmock_consumer.h57 Service::ConsumerEndpoint* endpoint() { return service_endpoint_.get(); } function in class:perfetto::MockConsumer
H A Dmock_producer.h61 Service::ProducerEndpoint* endpoint() { return service_endpoint_.get(); } function in class:perfetto::MockProducer
/external/libusb-compat/examples/
H A Dtestlibusb.c13 void print_endpoint(struct usb_endpoint_descriptor *endpoint) argument
15 printf(" bEndpointAddress: %02xh\n", endpoint->bEndpointAddress);
16 printf(" bmAttributes: %02xh\n", endpoint->bmAttributes);
17 printf(" wMaxPacketSize: %d\n", endpoint->wMaxPacketSize);
18 printf(" bInterval: %d\n", endpoint->bInterval);
19 printf(" bRefresh: %d\n", endpoint->bRefresh);
20 printf(" bSynchAddress: %d\n", endpoint->bSynchAddress);
36 print_endpoint(&interface->endpoint[i]);
/external/parameter-framework/asio/include/asio/ip/
H A Dbasic_resolver_entry.hpp36 /// The protocol type associated with the endpoint entry.
39 /// The endpoint type associated with the endpoint entry.
40 typedef typename InternetProtocol::endpoint endpoint_type;
47 /// Construct with specified endpoint, host name and service name.
56 /// Get the endpoint associated with the entry.
57 endpoint_type endpoint() const function in class:asio::ip::basic_resolver_entry
62 /// Convert to the endpoint associated with the entry.
H A Dbasic_resolver_query.hpp39 /// The protocol type associated with the endpoint query.
65 typename InternetProtocol::endpoint endpoint; local
68 hints_.ai_socktype = endpoint.protocol().type();
69 hints_.ai_protocol = endpoint.protocol().protocol();
150 typename InternetProtocol::endpoint endpoint; local
153 hints_.ai_socktype = endpoint.protocol().type();
154 hints_.ai_protocol = endpoint.protocol().protocol();
H A Dresolver_service.hpp40 /// The endpoint type.
41 typedef typename InternetProtocol::endpoint endpoint_type;
107 /// Resolve an endpoint to a list of entries.
109 const endpoint_type& endpoint, asio::error_code& ec)
111 return service_impl_.resolve(impl, endpoint, ec);
114 /// Asynchronously resolve an endpoint to a list of entries.
118 async_resolve(implementation_type& impl, const endpoint_type& endpoint, argument
125 service_impl_.async_resolve(impl, endpoint, init.handler);
108 resolve(implementation_type& impl, const endpoint_type& endpoint, asio::error_code& ec) argument
H A Dtcp.hpp45 /// The type of a TCP endpoint.
46 typedef basic_endpoint<tcp> endpoint; typedef in class:asio::ip::tcp
/external/parameter-framework/asio/include/asio/ip/detail/
H A Dendpoint.hpp2 // ip/detail/endpoint.hpp
28 // Helper class for implementating an IP endpoint.
29 class endpoint class in namespace:asio::ip::detail
33 ASIO_DECL endpoint();
35 // Construct an endpoint using a family and port number.
36 ASIO_DECL endpoint(int family, unsigned short port_num);
38 // Construct an endpoint using an address and port number.
39 ASIO_DECL endpoint(const asio::ip::address& addr,
43 endpoint(const endpoint function in class:asio::ip::detail::endpoint
[all...]
/external/parameter-framework/asio-1.10.6/include/asio/ip/
H A Dbasic_resolver_entry.hpp36 /// The protocol type associated with the endpoint entry.
39 /// The endpoint type associated with the endpoint entry.
40 typedef typename InternetProtocol::endpoint endpoint_type;
47 /// Construct with specified endpoint, host name and service name.
56 /// Get the endpoint associated with the entry.
57 endpoint_type endpoint() const function in class:asio::ip::basic_resolver_entry
62 /// Convert to the endpoint associated with the entry.
H A Dbasic_resolver_query.hpp39 /// The protocol type associated with the endpoint query.
65 typename InternetProtocol::endpoint endpoint; local
68 hints_.ai_socktype = endpoint.protocol().type();
69 hints_.ai_protocol = endpoint.protocol().protocol();
150 typename InternetProtocol::endpoint endpoint; local
153 hints_.ai_socktype = endpoint.protocol().type();
154 hints_.ai_protocol = endpoint.protocol().protocol();
/external/parameter-framework/asio-1.10.6/include/asio/ip/detail/
H A Dendpoint.hpp2 // ip/detail/endpoint.hpp
28 // Helper class for implementating an IP endpoint.
29 class endpoint class in namespace:asio::ip::detail
33 ASIO_DECL endpoint();
35 // Construct an endpoint using a family and port number.
36 ASIO_DECL endpoint(int family, unsigned short port_num);
38 // Construct an endpoint using an address and port number.
39 ASIO_DECL endpoint(const asio::ip::address& addr,
43 endpoint(const endpoint function in class:asio::ip::detail::endpoint
[all...]
/external/v8/tools/testrunner/server/
H A Dwork_handler.py38 from ..network import endpoint namespace
73 endpoint.Execute(v8_root, self.ctx, tests, self.request, self.server.daemon)
/external/adhd/cras/src/server/
H A Dcras_a2dp_endpoint.c29 static int cras_a2dp_get_capabilities(struct cras_bt_endpoint *endpoint, argument
61 static int cras_a2dp_select_configuration(struct cras_bt_endpoint *endpoint, argument
134 static void cras_a2dp_set_configuration(struct cras_bt_endpoint *endpoint, argument
143 static void cras_a2dp_suspend(struct cras_bt_endpoint *endpoint, argument
150 static void a2dp_transport_state_changed(struct cras_bt_endpoint *endpoint, argument
164 /* BlueZ connects the device A2DP Sink to our A2DP Source endpoint,
195 "Replacing existing endpoint configuration");
/external/libusb/libusb/
H A Dsync.c167 unsigned char endpoint, unsigned char *buffer, int length,
181 libusb_fill_bulk_transfer(transfer, dev_handle, endpoint, buffer, length,
228 * the direction bits of the endpoint address.
246 * \param endpoint the address of a valid endpoint to communicate with
248 * (depending on endpoint)
262 * \returns LIBUSB_ERROR_PIPE if the endpoint halted
270 unsigned char endpoint, unsigned char *data, int length, int *transferred,
273 return do_sync_bulk_transfer(dev_handle, endpoint, data, length,
279 * from the direction bits of the endpoint addres
166 do_sync_bulk_transfer(struct libusb_device_handle *dev_handle, unsigned char endpoint, unsigned char *buffer, int length, int *transferred, unsigned int timeout, unsigned char type) argument
269 libusb_bulk_transfer(struct libusb_device_handle *dev_handle, unsigned char endpoint, unsigned char *data, int length, int *transferred, unsigned int timeout) argument
321 libusb_interrupt_transfer( struct libusb_device_handle *dev_handle, unsigned char endpoint, unsigned char *data, int length, int *transferred, unsigned int timeout) argument
[all...]
/external/parameter-framework/asio/include/asio/
H A Dbasic_stream_socket.hpp56 /// The endpoint type.
57 typedef typename Protocol::endpoint endpoint_type;
92 /// local endpoint.
95 * to the specified endpoint on the local machine. The protocol used is the
96 * protocol associated with the given endpoint.
101 * @param endpoint An endpoint on the local machine to which the stream
107 const endpoint_type& endpoint)
108 : basic_socket<Protocol, StreamSocketService>(io_service, endpoint)
106 basic_stream_socket(asio::io_service& io_service, const endpoint_type& endpoint) argument
/external/parameter-framework/asio/include/asio/detail/
H A Dreactive_socket_recvfrom_op.hpp33 const MutableBufferSequence& buffers, Endpoint& endpoint,
39 sender_endpoint_(endpoint),
80 const MutableBufferSequence& buffers, Endpoint& endpoint,
83 socket, protocol_type, buffers, endpoint, flags,
32 reactive_socket_recvfrom_op_base(socket_type socket, int protocol_type, const MutableBufferSequence& buffers, Endpoint& endpoint, socket_base::message_flags flags, func_type complete_func) argument
79 reactive_socket_recvfrom_op(socket_type socket, int protocol_type, const MutableBufferSequence& buffers, Endpoint& endpoint, socket_base::message_flags flags, Handler& handler) argument
H A Dreactive_socket_sendto_op.hpp33 const ConstBufferSequence& buffers, const Endpoint& endpoint,
38 destination_(endpoint),
72 const ConstBufferSequence& buffers, const Endpoint& endpoint,
75 buffers, endpoint, flags, &reactive_socket_sendto_op::do_complete),
32 reactive_socket_sendto_op_base(socket_type socket, const ConstBufferSequence& buffers, const Endpoint& endpoint, socket_base::message_flags flags, func_type complete_func) argument
71 reactive_socket_sendto_op(socket_type socket, const ConstBufferSequence& buffers, const Endpoint& endpoint, socket_base::message_flags flags, Handler& handler) argument
H A Dresolve_endpoint_op.hpp38 typedef typename Protocol::endpoint endpoint_type;
42 const endpoint_type& endpoint, io_service_impl& ios, Handler& handler)
45 endpoint_(endpoint),
64 // Perform the blocking endpoint resolution operation.
41 resolve_endpoint_op(socket_ops::weak_cancel_token_type cancel_token, const endpoint_type& endpoint, io_service_impl& ios, Handler& handler) argument
H A Dresolver_service.hpp38 // The endpoint type.
39 typedef typename Protocol::endpoint endpoint_type;
85 // Resolve an endpoint to a list of entries.
87 const endpoint_type& endpoint, asio::error_code& ec)
91 socket_ops::sync_getnameinfo(endpoint.data(), endpoint.size(),
93 endpoint.protocol().type(), ec);
96 endpoint, host_name, service_name);
99 // Asynchronously resolve an endpoint to a list of entries.
102 const endpoint_type& endpoint, Handle
86 resolve(implementation_type&, const endpoint_type& endpoint, asio::error_code& ec) argument
101 async_resolve(implementation_type& impl, const endpoint_type& endpoint, Handler& handler) argument
[all...]
/external/parameter-framework/asio-1.10.6/include/asio/
H A Dbasic_stream_socket.hpp56 /// The endpoint type.
57 typedef typename Protocol::endpoint endpoint_type;
92 /// local endpoint.
95 * to the specified endpoint on the local machine. The protocol used is the
96 * protocol associated with the given endpoint.
101 * @param endpoint An endpoint on the local machine to which the stream
107 const endpoint_type& endpoint)
108 : basic_socket<Protocol, StreamSocketService>(io_service, endpoint)
106 basic_stream_socket(asio::io_service& io_service, const endpoint_type& endpoint) argument
/external/parameter-framework/asio-1.10.6/include/asio/detail/
H A Dreactive_socket_recvfrom_op.hpp33 const MutableBufferSequence& buffers, Endpoint& endpoint,
39 sender_endpoint_(endpoint),
80 const MutableBufferSequence& buffers, Endpoint& endpoint,
83 socket, protocol_type, buffers, endpoint, flags,
32 reactive_socket_recvfrom_op_base(socket_type socket, int protocol_type, const MutableBufferSequence& buffers, Endpoint& endpoint, socket_base::message_flags flags, func_type complete_func) argument
79 reactive_socket_recvfrom_op(socket_type socket, int protocol_type, const MutableBufferSequence& buffers, Endpoint& endpoint, socket_base::message_flags flags, Handler& handler) argument
H A Dreactive_socket_sendto_op.hpp33 const ConstBufferSequence& buffers, const Endpoint& endpoint,
38 destination_(endpoint),
72 const ConstBufferSequence& buffers, const Endpoint& endpoint,
75 buffers, endpoint, flags, &reactive_socket_sendto_op::do_complete),
32 reactive_socket_sendto_op_base(socket_type socket, const ConstBufferSequence& buffers, const Endpoint& endpoint, socket_base::message_flags flags, func_type complete_func) argument
71 reactive_socket_sendto_op(socket_type socket, const ConstBufferSequence& buffers, const Endpoint& endpoint, socket_base::message_flags flags, Handler& handler) argument
H A Dresolve_endpoint_op.hpp38 typedef typename Protocol::endpoint endpoint_type;
42 const endpoint_type& endpoint, io_service_impl& ios, Handler& handler)
45 endpoint_(endpoint),
64 // Perform the blocking endpoint resolution operation.
41 resolve_endpoint_op(socket_ops::weak_cancel_token_type cancel_token, const endpoint_type& endpoint, io_service_impl& ios, Handler& handler) argument
H A Dresolver_service.hpp38 // The endpoint type.
39 typedef typename Protocol::endpoint endpoint_type;
85 // Resolve an endpoint to a list of entries.
87 const endpoint_type& endpoint, asio::error_code& ec)
91 socket_ops::sync_getnameinfo(endpoint.data(), endpoint.size(),
93 endpoint.protocol().type(), ec);
96 endpoint, host_name, service_name);
99 // Asynchronously resolve an endpoint to a list of entries.
102 const endpoint_type& endpoint, Handle
86 resolve(implementation_type&, const endpoint_type& endpoint, asio::error_code& ec) argument
101 async_resolve(implementation_type& impl, const endpoint_type& endpoint, Handler& handler) argument
[all...]

Completed in 7771 milliseconds

12345