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

1 2 3 4 5 6 7 8 91011>>

  /external/adhd/cras/src/server/
cras_bt_endpoint.h 21 int (*get_capabilities)(struct cras_bt_endpoint *endpoint,
23 int (*select_configuration)(struct cras_bt_endpoint *endpoint,
27 void (*set_configuration)(struct cras_bt_endpoint *endpoint,
29 void (*suspend)(struct cras_bt_endpoint *endpoint,
32 void (*transport_state_changed)(struct cras_bt_endpoint *endpoint,
41 struct cras_bt_endpoint *endpoint);
45 struct cras_bt_endpoint *endpoint);
51 struct cras_bt_endpoint *endpoint);
53 struct cras_bt_endpoint *endpoint);
cras_bt_endpoint.c 44 static void cras_bt_endpoint_suspend(struct cras_bt_endpoint *endpoint)
46 if (!endpoint->transport)
49 endpoint->suspend(endpoint, endpoint->transport);
51 cras_bt_transport_set_endpoint(endpoint->transport, NULL);
52 endpoint->transport = NULL;
62 struct cras_bt_endpoint *endpoint; local
70 endpoint = cras_bt_endpoint_get(endpoint_path);
71 if (!endpoint)
130 struct cras_bt_endpoint *endpoint; local
193 struct cras_bt_endpoint *endpoint; local
236 struct cras_bt_endpoint *endpoint; local
523 struct cras_bt_endpoint *endpoint; local
583 struct cras_bt_endpoint *endpoint; local
591 struct cras_bt_endpoint *endpoint; local
    [all...]
  /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...]
  /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...]
  /test/vti/test_serving/gae/webapp/src/
endpoint_main.py 20 from webapp.src.endpoint import build_info
21 from webapp.src.endpoint import host_info
22 from webapp.src.endpoint import job_queue
23 from webapp.src.endpoint import lab_info
24 from webapp.src.endpoint import schedule_info
  /test/vti/test_serving/gae/script/
build.sh 30 python lib/endpoints/endpointscfg.py get_openapi_spec webapp.src.endpoint.build_info.BuildInfoApi --hostname $SERVICE
31 python lib/endpoints/endpointscfg.py get_openapi_spec webapp.src.endpoint.host_info.HostInfoApi --hostname $SERVICE
32 python lib/endpoints/endpointscfg.py get_openapi_spec webapp.src.endpoint.schedule_info.ScheduleInfoApi --hostname $SERVICE
33 python lib/endpoints/endpointscfg.py get_openapi_spec webapp.src.endpoint.lab_info.LabInfoApi --hostname $SERVICE
  /frameworks/av/services/oboeservice/
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...]
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...]
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...]
  /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/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/mesa3d/src/mesa/main/
texcompress_bptc.c 56 int8_t endpoint; member in struct:bptc_float_bitfield
364 int endpoint; local
371 for (endpoint = 0; endpoint < 2; endpoint++) {
372 endpoints[subset * 2 + endpoint][component] =
382 for (endpoint = 0; endpoint < 2; endpoint++) {
383 endpoints[subset * 2 + endpoint][3]
764 int endpoint, component; local
1017 int endpoint; local
1113 int endpoint; local
1214 int component, endpoint; local
1366 int endpoint, component; local
1441 int endpoint; local
1528 int component, endpoint; local
    [all...]
  /external/libmojo/mojo/public/cpp/bindings/lib/
multiplex_router.cc 26 // InterfaceEndpoint stores the information of an interface endpoint registered
196 // If a SyncWatch() call (or multiple ones) of this interface endpoint is
240 // Whether the endpoint has been closed.
242 // Whether the peer endpoint has been closed.
246 // endpoint.
253 // Not owned. It is null if no client is attached to this endpoint.
324 InterfaceEndpoint* endpoint) {
326 task->endpoint_to_notify = endpoint;
398 InterfaceEndpoint* endpoint = iter->second.get(); local
403 if (!endpoint->closed())
442 InterfaceEndpoint* endpoint = new InterfaceEndpoint(this, id); local
454 InterfaceEndpoint* endpoint = FindEndpoint(id); local
472 InterfaceEndpoint* endpoint = FindOrInsertEndpoint(id, &inserted); local
500 InterfaceEndpoint* endpoint = endpoints_[id].get(); local
525 InterfaceEndpoint* endpoint = endpoints_[id].get(); local
544 InterfaceEndpoint* endpoint = endpoints_[id].get(); local
646 InterfaceEndpoint* endpoint = FindEndpoint(id); local
668 InterfaceEndpoint* endpoint = FindOrInsertEndpoint(id, nullptr); local
699 InterfaceEndpoint* endpoint = iter->second.get(); local
805 InterfaceEndpoint* endpoint = task->endpoint_to_notify.get(); local
865 InterfaceEndpoint* endpoint = FindEndpoint(id); local
960 InterfaceEndpoint* endpoint = FindEndpoint(id); local
    [all...]
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
resolver_service.hpp 38 // 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, Handler& handler
    [all...]
  /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_iterator.hpp 90 typename InternetProtocol::endpoint endpoint;
91 endpoint.resize(static_cast<std::size_t>(address_info->ai_addrlen));
92 memcpy(endpoint.data(), address_info->ai_addr,
95 basic_resolver_entry<InternetProtocol>(endpoint,
104 /// Create an iterator from an endpoint, host name and service name.
106 const typename InternetProtocol::endpoint& endpoint,
113 endpoint, host_name, service_name));
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();
  /bionic/tools/bionicbb/
gerrit.py 38 def call(endpoint, method='GET'):
42 url = gerrit_url + endpoint
50 endpoint = '/changes/{}/detail?o=CURRENT_REVISION'.format(change_id)
51 change = json.loads(call(endpoint))
  /frameworks/native/libs/vr/libpdx/
service_tests.cpp 102 auto endpoint = std::make_unique<testing::StrictMock<MockEndpoint>>(); local
103 EXPECT_CALL(*endpoint, SetService(_))
106 service_ = std::make_shared<MockService>("MockSvc", std::move(endpoint));
109 MockEndpoint* endpoint() { function in class:__anon46434::ServiceTest
110 return static_cast<MockEndpoint*>(service_->endpoint());
133 EXPECT_CALL(*endpoint(), AllocateMessageState()).WillOnce(Return(kState));
134 EXPECT_CALL(*endpoint(), FreeMessageState(kState));
138 EXPECT_CALL(*endpoint(), MessageReply(_, -EOPNOTSUPP))
174 EXPECT_CALL(*endpoint(), AllocateMessageState()).WillOnce(Return(kState));
194 EXPECT_CALL(*endpoint(), FreeMessageState(kState))
    [all...]
service.cpp 29 state_ = svc->endpoint()->AllocateMessageState();
61 svc->endpoint()->FreeMessageState(state_);
80 return svc->endpoint()->ReadMessageData(this, vector, vector_length);
91 svc->endpoint()->ReadMessageData(this, vector, vector_length);
109 return svc->endpoint()->ReadMessageData(this, &vector, 1);
119 return svc->endpoint()->WriteMessageData(this, vector, vector_length);
130 svc->endpoint()->WriteMessageData(this, vector, vector_length);
148 return svc->endpoint()->WriteMessageData(this, &vector, 1);
157 return svc->endpoint()->PushFileHandle(this, handle);
166 return svc->endpoint()->PushFileHandle(this, handle)
    [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)})
  /development/host/windows/usb/winusb/
adb_winusb_endpoint_object.h 21 encapsulates a handle opened to a WinUsb endpoint on our device.
27 /** Class AdbWinUsbEndpointObject encapsulates a handle opened to an endpoint on
35 @param[in] endpoint_id Endpoint ID (endpoint address) on the device.
36 @param[in] endpoint_index Zero-based endpoint index in the interface's
141 global per endpoint (pipe). I.e. once set, it will be used against
142 all read / write operations performed on this endpoint, untill
148 there is no conflict in setting per-endpoint timeouts.
169 DecrementPendingIO(AdbWinUsbEndpointObject* endpoint)
170 : endpoint_(endpoint) {}
    [all...]
  /external/libusb-compat/examples/
testlibusb.c 13 void print_endpoint(struct usb_endpoint_descriptor *endpoint)
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]);
  /frameworks/base/telecomm/java/android/telecom/
ConferenceParticipant.java 40 * The endpoint Uri which uniquely identifies this conference participant. E.g. for an IMS
41 * conference call, this is the endpoint URI for the participant on the IMS conference server.
57 * @param endpoint The enpoint Uri which uniquely identifies this conference participant.
60 public ConferenceParticipant(Uri handle, String displayName, Uri endpoint, int state) {
63 mEndpoint = endpoint;
78 Uri endpoint = source.readParcelable(classLoader);
80 return new ConferenceParticipant(handle, displayName, endpoint, state);
120 sb.append(" Endpoint: ");
144 * conference call, this is the endpoint URI for the participant on the IMS conference server.

Completed in 455 milliseconds

1 2 3 4 5 6 7 8 91011>>