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

1 2 3 4 5 6 7 8 91011>>

  /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/av/services/oboeservice/
AAudioEndpointManager.cpp 40 AAudioServiceEndpoint *endpoint = nullptr; local
43 // Try to find an existing endpoint.
46 endpoint = mInputs[deviceId];
49 endpoint = mOutputs[deviceId];
56 endpoint, deviceId, (int)direction);
59 if (endpoint == nullptr) {
67 endpoint = capture;
76 endpoint = player;
82 if (endpoint != nullptr) {
84 endpoint->setReferenceCount(endpoint->getReferenceCount() + 1)
    [all...]
AAudioServiceEndpoint.cpp 107 AAudioServiceEndpoint *endpoint = (AAudioServiceEndpoint *) context; local
108 if (endpoint != NULL) {
109 return endpoint->callbackLoop();
AAudioServiceStreamShared.cpp 69 // Is the request compatible with the shared endpoint?
132 AAudioServiceEndpoint *endpoint = mServiceEndpoint; local
133 if (endpoint == nullptr) {
137 aaudio_result_t result = endpoint->startStream(this);
153 AAudioServiceEndpoint *endpoint = mServiceEndpoint; local
154 if (endpoint == nullptr) {
158 aaudio_result_t result = endpoint->stopStream(this);
167 AAudioServiceEndpoint *endpoint = mServiceEndpoint; local
168 if (endpoint == nullptr) {
172 aaudio_result_t result = endpoint->stopStream(this)
194 AAudioServiceEndpoint *endpoint = mServiceEndpoint; local
    [all...]
  /frameworks/native/libs/vr/libpdx/
mock_tests.cpp 19 android::pdx::MockEndpoint endpoint; local
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:__anon39487::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...]
  /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/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...]
  /system/core/libusbhost/include/usbhost/
usbhost.h 50 int endpoint; member in struct:usb_request
203 /* Sends a control message to the specified device on endpoint zero */
213 /* Reads or writes on a bulk endpoint.
217 int 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 33 using android::pdx::uds::Endpoint;
47 TestService(std::unique_ptr<Endpoint> endpoint)
48 : ServiceBase{"TestService", std::move(endpoint)} {}
81 auto endpoint = Endpoint::CreateFromSocketFd(LocalHandle{}); local
82 endpoint->RegisterNewChannelForTests(std::move(channel_socket));
83 service_ = TestService::Create(std::move(endpoint));
service_dispatcher.cpp 73 if (service->endpoint()->GetIpcTag() != Endpoint::kIpcTag)
78 auto* endpoint = static_cast<Endpoint*>(service->endpoint()); local
83 if (epoll_ctl(epoll_fd_.Get(), EPOLL_CTL_ADD, endpoint->epoll_fd(), &event) <
94 if (service->endpoint()->GetIpcTag() != Endpoint::kIpcTag)
105 auto* endpoint = static_cast<Endpoint*>(service->endpoint()) local
    [all...]
  /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...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
TestConferenceEventPackageParser.java 42 * <endpoint>sip:+16505551212@ims-test-provider.com</endpoint>
102 ImsConferenceState.ENDPOINT), participant);
132 String endpoint = ""; local
143 } else if (parser.getName().equals(ImsConferenceState.ENDPOINT)) {
145 endpoint = parser.getText();
154 Log.v(LOG_TAG, "Endpoint: "+endpoint);
159 bundle.putString(ImsConferenceState.ENDPOINT, endpoint);
    [all...]
  /external/libmojo/mojo/edk/system/
message_pipe_dispatcher.cc 32 int8_t endpoint; member in struct:mojo::edk::__anon23494::SerializedState
65 int endpoint)
69 endpoint_(endpoint) {
71 << " [pipe_id=" << pipe_id << "; endpoint=" << endpoint << "]"; local
109 DVLOG(2) << "Closing message pipe " << pipe_id_ << " endpoint " << endpoint_
144 DVLOG(2) << "Sent message on pipe " << pipe_id_ << " endpoint " << endpoint_
361 DVLOG(2) << "Getting signal state for pipe " << pipe_id_ << " endpoint "
380 DVLOG(2) << "Adding awakable to pipe " << pipe_id_ << " endpoint "
398 DVLOG(2) << "Removing awakable from pipe " << pipe_id_ << " endpoint "
    [all...]
  /external/ppp/pppd/
lcp.h 62 #define CI_EPDISC 19 /* endpoint discriminator */
104 bool neg_endpoint; /* negotiate endpoint discriminator */
112 struct epdisc endpoint; /* endpoint discriminator */ member in struct:lcp_options
  /external/syslinux/core/lwip/src/netif/ppp/
lcp.h 69 #define CI_EPDISC 19 /* endpoint discriminator */
99 u_int neg_endpoint : 1; /* Negotiate endpoint discriminator */
111 struct epdisc endpoint; /* endpoint discriminator */ member in struct:lcp_options

Completed in 1622 milliseconds

1 2 3 4 5 6 7 8 91011>>