HomeSort by relevance Sort by last modified time
    Searched full:endpoint (Results 1 - 25 of 1891) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/native/libs/vr/libpdx_default_transport/private/servicefs/pdx/default_transport/
service_endpoint.h 10 using Endpoint = ::android::pdx::servicefs::Endpoint;
  /frameworks/native/libs/vr/libpdx_default_transport/private/uds/pdx/default_transport/
service_endpoint.h 10 using Endpoint = ::android::pdx::uds::Endpoint;
  /external/parameter-framework/asio-1.10.6/include/asio/ip/detail/
endpoint.hpp 2 // 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& other function in class:asio::ip::detail::endpoint
    [all...]
  /frameworks/base/core/java/android/hardware/usb/
UsbEndpoint.java 23 * A class representing an endpoint on a {@link UsbInterface}.
28 * The endpoint zero is a special endpoint for control messages sent from the host
51 * Returns the endpoint's address field.
52 * The address is a bitfield containing both the endpoint number
53 * as well as the data direction of the endpoint.
54 * the endpoint number and direction can also be accessed via
57 * @return the endpoint's address
64 * Extracts the endpoint's endpoint number from its addres
    [all...]
  /frameworks/native/libs/vr/libvrsensor/include/private/dvr/
sensor-ipc.h 9 * Endpoint ops
  /external/walt/ios/WALT/
MIDIEndpoint.m 20 @property (readwrite, nonatomic, assign) MIDIEndpointRef endpoint;
26 MIDIObjectGetStringProperty(self.endpoint, kMIDIPropertyDisplayName, &result);
32 MIDIObjectGetIntegerProperty(self.endpoint, kMIDIPropertyOffline, &result);
44 MIDIEndpointRef endpoint = MIDIGetDestination(i);
45 if (endpoint) {
47 destination.endpoint = endpoint;
64 MIDIEndpointRef endpoint = MIDIGetSource(i);
65 if (endpoint) {
67 source.endpoint = endpoint
    [all...]
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/lif/
lif.go 15 type endpoint struct { type
20 func (ep *endpoint) close() error {
24 func newEndpoints(af int) ([]endpoint, error) {
26 var eps []endpoint
37 eps = append(eps, endpoint{af: af, s: uintptr(s)})
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/net/lif/
lif.go 15 type endpoint struct { type
20 func (ep *endpoint) close() error {
24 func newEndpoints(af int) ([]endpoint, error) {
26 var eps []endpoint
37 eps = append(eps, endpoint{af: af, s: uintptr(s)})
  /external/libchrome/sandbox/linux/syscall_broker/
broker_channel.h 20 typedef base::ScopedFD EndPoint;
21 static void CreatePair(EndPoint* reader, EndPoint* writer);
  /external/parameter-framework/asio-1.10.6/include/asio/ip/
basic_endpoint.hpp 17 #include "asio/ip/detail/endpoint.hpp"
25 /// Describes an endpoint for a version-independent IP socket.
27 * The asio::ip::basic_endpoint class template describes an endpoint that
35 * Endpoint.
41 /// The protocol type associated with the endpoint.
44 /// The type of the endpoint structure. This type is dependent on the
54 /// Construct an endpoint using a port number, specified in the host's byte
60 * To initialise an IPv4 TCP endpoint for port 1234, use:
62 * asio::ip::tcp::endpoint ep(asio::ip::tcp::v4(), 1234);
65 * To specify an IPv6 UDP endpoint for port 9876, use
    [all...]
basic_resolver_entry.hpp 36 /// 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.
  /frameworks/av/services/oboeservice/
AAudioEndpointManager.cpp 94 // Try to find an existing endpoint.
97 sp<AAudioServiceEndpoint> endpoint; local
100 endpoint = ep;
106 endpoint.get(), configuration.getDeviceId());
107 return endpoint;
110 // Try to find an existing endpoint.
113 sp<AAudioServiceEndpointShared> endpoint; local
116 endpoint = ep;
122 endpoint.get(), configuration.getDeviceId());
123 return endpoint;
145 sp<AAudioServiceEndpoint> endpoint = findExclusiveEndpoint_l(configuration); local
186 sp<AAudioServiceEndpointShared> endpoint = findSharedEndpoint_l(configuration); local
    [all...]
  /frameworks/native/libs/vr/libpdx_uds/
service_endpoint.cpp 134 Endpoint::Endpoint(const std::string& endpoint_path, bool blocking,
145 << "Endpoint::Endpoint: Socket name '" << endpoint_path_
150 << "Endpoint::Endpoint: Unable to obtain the control socket fd for '"
155 CHECK(fd.IsValid()) << "Endpoint::Endpoint: Failed to create socket: "
166 CHECK_EQ(ret, 0) << "Endpoint::Endpoint: bind error: " << strerror(errno)
    [all...]
  /external/skia/src/utils/
SkInsetConvexPolygon.h 41 * Uses the outer tangents of two circles centered on each endpoint.
44 * @param p0 First endpoint.
45 * @param p1 Second endpoint.
46 * @param d0 Offset distance from first endpoint.
47 * @param d1 Offset distance from second endpoint.
49 * @param offset0 First endpoint of offset segment.
50 * @param offset1 Second endpoint of offset segment.
  /external/autotest/client/cros/chameleon/
audio_board.py 82 # Maps port id defined in chameleon_audio_ids to endpoint name used in
121 """Gets the endpoint name used in audio bus API.
126 @returns: The endpoint name for the port used in audio bus API.
132 def _connect_endpoint(self, endpoint):
133 """Connects an endpoint to audio bus.
135 @param endpoint: An endpoint name in _PORT_ID_AUDIO_BUS_ENDPOINT_MAP.
139 'Audio bus %s is connecting endpoint %s',
140 self.bus_index, endpoint)
141 self._chameleond_proxy.AudioBoardConnect(self.bus_index, endpoint)
    [all...]
  /external/guava/guava/src/com/google/common/collect/
Cut.java 38 final C endpoint; field in class:Cut
40 Cut(@Nullable C endpoint) {
41 this.endpoint = endpoint;
75 int result = Range.compareOrThrow(endpoint, that.endpoint);
84 C endpoint() { method in class:Cut
85 return endpoint;
119 @Override Comparable<?> endpoint() { method in class:Cut.BelowAll
188 @Override Comparable<?> endpoint() { method in class:Cut.AboveAll
    [all...]
  /external/libmojo/mojo/public/cpp/bindings/lib/
multiplex_router.cc 26 // InterfaceEndpoint stores the information of an interface endpoint registered
165 // If a SyncWatch() call (or multiple ones) of this interface endpoint is
225 // Whether the endpoint has been closed.
227 // Whether the peer endpoint has been closed.
232 // Not owned. It is null if no client is attached to this endpoint.
263 InterfaceEndpoint* endpoint) {
265 task->endpoint_to_notify = endpoint;
317 InterfaceEndpoint* endpoint = iter->second.get(); local
322 DCHECK(endpoint->closed());
323 UpdateEndpointStateMayRemove(endpoint, PEER_ENDPOINT_CLOSED)
349 InterfaceEndpoint* endpoint = new InterfaceEndpoint(this, id); local
365 InterfaceEndpoint* endpoint = FindOrInsertEndpoint(id, &inserted); local
395 InterfaceEndpoint* endpoint = endpoints_[id].get(); local
418 InterfaceEndpoint* endpoint = endpoints_[id].get(); local
437 InterfaceEndpoint* endpoint = endpoints_[id].get(); local
568 InterfaceEndpoint* endpoint = iter->second.get(); local
667 InterfaceEndpoint* endpoint = task->endpoint_to_notify.get(); local
715 InterfaceEndpoint* endpoint = FindOrInsertEndpoint(id, &inserted); local
835 InterfaceEndpoint* endpoint; local
    [all...]
  /development/host/windows/usb/api/
adb_legacy_interface.h 86 /** \brief Gets information about an endpoint on this interface.
88 @param[in] endpoint_index Zero-based endpoint index. There are two
92 @param[out] info Upon successful completion will have endpoint information.
99 /** \brief Opens an endpoint on this interface.
101 @param[in] endpoint_index Zero-based endpoint index. There are two
106 this parameter has no effect on the way endpoint is opened. It's
109 this parameter has no effect on the way endpoint is opened. It's
111 @return Handle to the opened endpoint object or NULL on failure.
124 /** \brief Opens an endpoint on this interface.
126 @param[in] endpoint_name Endpoint file name.
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Include/Protocol/
UsbDevice.h 25 * endpoint.
49 @param[in]Endpoint Endpoint index, as specified in endpoint descriptors, of
50 the endpoint the IN token was sent to.
62 @param[in]Endpoint Endpoint index, as specified in endpoint descriptors, of
63 the endpoint to send the data from.
87 configuration descriptor. The endpoint
    [all...]
  /external/libchrome/base/mac/
mach_port_util.cc 30 kern_return_t SendMachPort(mach_port_t endpoint,
37 send_msg.header.msgh_remote_port = endpoint;
55 mach_port_deallocate(mach_task_self(), endpoint); local
84 mach_port_name_t endpoint; local
86 mach_port_allocate(task_port, MACH_PORT_RIGHT_RECEIVE, &endpoint);
96 kr = mach_port_set_attributes(task_port, endpoint, MACH_PORT_LIMITS_INFO,
102 mach_port_deallocate(task_port, endpoint);
110 mach_port_extract_right(task_port, endpoint, MACH_MSG_TYPE_MAKE_SEND_ONCE,
115 mach_port_deallocate(task_port, endpoint);
127 mach_port_deallocate(task_port, endpoint);
    [all...]
  /external/libmojo/mojo/public/cpp/bindings/
interface_endpoint_controller.h 20 // Allows the interface endpoint to watch for incoming sync messages while
25 // Watches the interface endpoint for incoming sync messages. (It also watches
31 // interface endpoint.
  /development/samples/USB/MissileLauncher/
README.txt 10 - Sending control requests on endpoint zero that contain data
12 - Receiving packets on an interrupt endpoint using a thread that calls
  /external/parameter-framework/asio-1.10.6/include/asio/ip/detail/impl/
endpoint.ipp 2 // ip/detail/impl/endpoint.ipp
20 #include "asio/ip/detail/endpoint.hpp"
28 endpoint::endpoint()
36 endpoint::endpoint(int family, unsigned short port_num)
65 endpoint::endpoint(const asio::ip::address& addr,
95 void endpoint::resize(std::size_t new_size)
104 unsigned short endpoint::port() cons
    [all...]
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
reactive_socket_recvfrom_op.hpp 28 template <typename MutableBufferSequence, typename Endpoint>
33 const MutableBufferSequence& buffers, Endpoint& endpoint,
39 sender_endpoint_(endpoint),
68 Endpoint& sender_endpoint_;
72 template <typename MutableBufferSequence, typename Endpoint, typename Handler>
74 public reactive_socket_recvfrom_op_base<MutableBufferSequence, Endpoint>
80 const MutableBufferSequence& buffers, Endpoint& endpoint,
82 : reactive_socket_recvfrom_op_base<MutableBufferSequence, Endpoint>(
    [all...]
reactive_socket_sendto_op.hpp 28 template <typename ConstBufferSequence, typename Endpoint>
33 const ConstBufferSequence& buffers, const Endpoint& endpoint,
38 destination_(endpoint),
60 Endpoint destination_;
64 template <typename ConstBufferSequence, typename Endpoint, typename Handler>
66 public reactive_socket_sendto_op_base<ConstBufferSequence, Endpoint>
72 const ConstBufferSequence& buffers, const Endpoint& endpoint,
74 : reactive_socket_sendto_op_base<ConstBufferSequence, Endpoint>(socket
    [all...]

Completed in 1427 milliseconds

1 2 3 4 5 6 7 8 91011>>