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

1 2 3 4 5 6 7 8 91011>>

  /external/walt/ios/WALT/
MIDIEndpoint.h 20 /** An abstract MIDI endpoint (input source or output destination). */
22 @property (readonly, nonatomic) MIDIEndpointRef endpoint; variable
  /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)})
  /frameworks/native/libs/vr/libpdx/
mock_tests.cpp 17 android::pdx::MockEndpoint endpoint; local
  /external/parameter-framework/asio-1.10.6/include/asio/ip/
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.
basic_resolver_query.hpp 39 /// 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();
tcp.hpp 45 /// The type of a TCP endpoint.
46 typedef basic_endpoint<tcp> endpoint; typedef in class:asio::ip::tcp
  /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...]
  /external/perfetto/src/tracing/test/
mock_consumer.h 57 Service::ConsumerEndpoint* endpoint() { return service_endpoint_.get(); } function in class:perfetto::MockConsumer
mock_producer.h 61 Service::ProducerEndpoint* endpoint() { return service_endpoint_.get(); } function in class:perfetto::MockProducer
  /frameworks/av/services/oboeservice/
AAudioServiceStreamMMAP.cpp 73 sp<AAudioServiceEndpoint> endpoint = mServiceEndpointWeak.promote(); local
74 if (endpoint == nullptr) {
75 ALOGE("%s() has no endpoint", __func__);
79 result = endpoint->registerStream(keep);
126 sp<AAudioServiceEndpoint> endpoint = mServiceEndpointWeak.promote(); local
127 if (endpoint == nullptr) {
128 ALOGE("%s() has no endpoint", __func__);
132 aaudio_result_t result = endpoint->startClient(client, clientHandle);
137 sp<AAudioServiceEndpoint> endpoint = mServiceEndpointWeak.promote(); local
138 if (endpoint == nullptr)
149 sp<AAudioServiceEndpoint> endpoint = mServiceEndpointWeak.promote(); local
173 sp<AAudioServiceEndpoint> endpoint = mServiceEndpointWeak.promote(); local
196 sp<AAudioServiceEndpoint> endpoint = mServiceEndpointWeak.promote(); local
    [all...]
AAudioServiceEndpointShared.cpp 94 // The caller passed in a smart pointer to prevent the endpoint from getting deleted
98 sp<AAudioServiceEndpointShared> endpoint = *endpointForThread; local
100 void *result = endpoint->callbackLoop();
102 if (!endpoint->isConnected()) {
103 endpoint->close();
AAudioServiceStreamShared.cpp 131 sp<AAudioServiceEndpoint> endpoint = mServiceEndpointWeak.promote(); local
132 if (endpoint == nullptr) {
137 // Is the request compatible with the shared endpoint?
149 setSampleRate(endpoint->getSampleRate());
150 } else if (getSampleRate() != endpoint->getSampleRate()) {
152 __func__, getSampleRate(), endpoint->getSampleRate());
159 setSamplesPerFrame(endpoint->getSamplesPerFrame());
160 } else if (getSamplesPerFrame() != endpoint->getSamplesPerFrame()) {
162 __func__, getSamplesPerFrame(), endpoint->getSamplesPerFrame());
189 getSampleRate(), getSamplesPerFrame(), endpoint->getDeviceId())
258 sp<AAudioServiceEndpoint> endpoint = mServiceEndpointWeak.promote(); local
    [all...]
AAudioEndpointManager.cpp 106 // Try to find an existing endpoint.
109 sp<AAudioServiceEndpoint> endpoint; local
114 endpoint = ep;
120 endpoint.get(), configuration.getDeviceId(), configuration.getSessionId());
121 return endpoint;
124 // Try to find an existing endpoint.
127 sp<AAudioServiceEndpointShared> endpoint; local
132 endpoint = ep;
138 endpoint.get(), configuration.getDeviceId(), configuration.getSessionId());
139 return endpoint;
161 sp<AAudioServiceEndpoint> endpoint = findExclusiveEndpoint_l(configuration); local
201 sp<AAudioServiceEndpointShared> endpoint = findSharedEndpoint_l(configuration); local
    [all...]
AAudioServiceStreamBase.cpp 119 // Save a weak pointer that we will use to access the endpoint.
140 sp<AAudioServiceEndpoint> endpoint = mServiceEndpointWeak.promote(); local
141 if (endpoint == nullptr) {
144 endpoint->unregisterStream(this);
146 endpointManager.closeEndpoint(endpoint);
149 mServiceEndpoint.clear(); // endpoint will hold the pointer until this method returns.
165 sp<AAudioServiceEndpoint> endpoint = mServiceEndpointWeak.promote(); local
166 if (endpoint == nullptr) {
167 ALOGE("%s() has no endpoint", __func__);
170 return endpoint->startStream(this, &mClientHandle)
224 sp<AAudioServiceEndpoint> endpoint = mServiceEndpointWeak.promote(); local
257 sp<AAudioServiceEndpoint> endpoint = mServiceEndpointWeak.promote(); local
    [all...]
  /system/core/libusbhost/include/usbhost/
usbhost.h 50 int endpoint; member in struct:usb_request
228 /* Sends a control message to the specified device on endpoint zero */
238 /* Reads or writes on a bulk endpoint.
242 int endpoint,
  /device/google/contexthub/firmware/app/chre/chre_test2.app/
main.cpp 113 const uint16_t endpoint = msg->hostEndpoint; local
114 chreLog(CHRE_LOG_INFO, APP_LABEL "message=%p; code=%d; size=%zu; type=%ld; endpoint=%d",
115 data, (data && size) ? data[0] : 0, size, type, endpoint);
  /external/parameter-framework/upstream/asio/stub/
asio.hpp 99 struct endpoint : dummy_base struct in namespace:asio::ip::tcp
  /frameworks/base/libs/usb/tests/AccessoryChat/accessorychat/
accessorychat.c 35 int endpoint = (int)(uintptr_t)arg; local
41 ret = usb_device_bulk_transfer(sDevice, endpoint, buffer, sizeof(buffer), 1000);
55 int endpoint = (int)(uintptr_t)arg; local
63 ret = usb_device_bulk_transfer(sDevice, endpoint, line, strlen(line), 1000);
  /frameworks/native/libs/vr/libpdx_uds/
client_channel_tests.cpp 34 using android::pdx::uds::Endpoint;
48 TestService(std::unique_ptr<Endpoint> endpoint)
49 : ServiceBase{"TestService", std::move(endpoint)} {}
82 auto endpoint = Endpoint::CreateFromSocketFd(LocalHandle{}); local
83 endpoint->RegisterNewChannelForTests(std::move(channel_socket));
84 service_ = TestService::Create(std::move(endpoint));
  /device/google/cuttlefish_common/host/libs/usbip/
messages.h 64 uint32_t endpoint; // valid values: 0-15 member in struct:vadb::usbip::CmdHeader
  /external/google-breakpad/src/common/windows/
omap_internal.h 117 DWORD endpoint; member in struct:google_breakpad::EndpointIndex
130 // an interval in |mapping| that contains the endpoint. Useful for doing
  /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/libusb/libusb/os/
sunos_usb.h 38 typedef struct endpoint { struct
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
reactive_socket_service.hpp 50 // The endpoint type.
51 typedef typename Protocol::endpoint endpoint_type;
106 other_impl.protocol_ = typename Protocol1::endpoint().protocol();
135 // Bind the socket to the specified local endpoint.
137 const endpoint_type& endpoint, asio::error_code& ec)
139 socket_ops::bind(impl.socket_, endpoint.data(), endpoint.size(), ec);
168 // Get the local endpoint.
172 endpoint_type endpoint; local
173 std::size_t addr_len = endpoint.capacity()
184 endpoint_type endpoint; local
    [all...]

Completed in 488 milliseconds

1 2 3 4 5 6 7 8 91011>>