/external/openscreen/cast/common/channel/testing/ |
D | fake_cast_socket.h | 32 FakeCastSocket(const IPEndpoint& local_endpoint, in FakeCastSocket() 34 : local_endpoint(local_endpoint), in FakeCastSocket() 36 moved_connection(std::make_unique<MockTlsConnection>(local_endpoint, in FakeCastSocket() 41 IPEndpoint local_endpoint; member 57 FakeCastSocketPair(const IPEndpoint& local_endpoint, in FakeCastSocketPair() 59 : local_endpoint(local_endpoint), remote_endpoint(remote_endpoint) { in FakeCastSocketPair() 65 local_endpoint, remote_endpoint); in FakeCastSocketPair() 71 remote_endpoint, local_endpoint); in FakeCastSocketPair() 93 IPEndpoint local_endpoint; member
|
/external/openscreen/platform/api/ |
D | socket_integration_unittest.cc | 29 const IPEndpoint local_endpoint = socket->GetLocalEndpoint(); in TEST() local 30 EXPECT_NE(local_endpoint.port, 0) << local_endpoint; in TEST() 47 const IPEndpoint local_endpoint = socket->GetLocalEndpoint(); in TEST() local 48 EXPECT_NE(local_endpoint.port, 0) << local_endpoint; in TEST()
|
D | udp_socket.h | 82 const IPEndpoint& local_endpoint);
|
/external/libchrome/mojo/public/cpp/platform/ |
D | platform_channel.cc | 49 void CreateChannel(PlatformHandle* local_endpoint, in CreateChannel() argument 57 *local_endpoint = PlatformHandle(base::win::ScopedHandle( in CreateChannel() 64 PCHECK(local_endpoint->is_valid()); in CreateChannel() 81 CHECK(!::ConnectNamedPipe(local_endpoint->GetHandle().Get(), nullptr)); in CreateChannel() 85 void CreateChannel(PlatformHandle* local_endpoint, 91 *local_endpoint = PlatformHandle(std::move(handles[0])); 93 DCHECK(local_endpoint->is_valid()); 115 void CreateChannel(PlatformHandle* local_endpoint, 139 *local_endpoint = PlatformHandle(base::ScopedFD(fds[0])); 141 DCHECK(local_endpoint->is_valid());
|
D | platform_channel.h | 56 const PlatformChannelEndpoint& local_endpoint() const { in COMPONENT_EXPORT()
|
/external/grpc-grpc/src/core/tsi/alts/handshaker/ |
D | handshaker.pb.c | 31 …SSAGE , OPTIONAL, STATIC , OTHER, grpc_gcp_StartClientHandshakeReq, local_endpoint, local_identit… 32 … STATIC , OTHER, grpc_gcp_StartClientHandshakeReq, remote_endpoint, local_endpoint, &grpc_gcp_End… 48 …SSAGE , OPTIONAL, STATIC , OTHER, grpc_gcp_StartServerHandshakeReq, local_endpoint, in_bytes, &gr… 49 … STATIC , OTHER, grpc_gcp_StartServerHandshakeReq, remote_endpoint, local_endpoint, &grpc_gcp_End… 107 …local_endpoint) < 65536 && pb_membersize(grpc_gcp_StartClientHandshakeReq, remote_endpoint) < 6553… 118 …local_endpoint) < 256 && pb_membersize(grpc_gcp_StartClientHandshakeReq, remote_endpoint) < 256 &&…
|
D | handshaker.pb.h | 113 grpc_gcp_Endpoint local_endpoint; member 128 grpc_gcp_Endpoint local_endpoint; member
|
D | alts_handshaker_service_api.cc | 67 req->client_start.local_endpoint.ip_address.arg)); in grpc_gcp_handshaker_req_destroy() 89 req->server_start.local_endpoint.ip_address.arg)); in grpc_gcp_handshaker_req_destroy() 302 set_endpoint(&req->client_start.local_endpoint, ip_address, port, protocol); in grpc_gcp_handshaker_req_set_local_endpoint() 305 set_endpoint(&req->server_start.local_endpoint, ip_address, port, protocol); in grpc_gcp_handshaker_req_set_local_endpoint()
|
/external/python/bumble/bumble/ |
D | avdtp.py | 1701 self.local_endpoint.seid, self.local_endpoint.configuration 1729 await self.local_endpoint.start() 1738 await self.local_endpoint.stop() 1750 await self.local_endpoint.close() 1762 self.local_endpoint.in_use = 0 1770 result = self.local_endpoint.on_set_configuration_command(configuration) 1785 return self.local_endpoint.on_get_configuration_command(configuration) 1791 result = self.local_endpoint.on_reconfigure_command(configuration) 1801 result = self.local_endpoint.on_open_command() 1820 result = self.local_endpoint.on_start_command() [all …]
|
/external/openscreen/cast/streaming/ |
D | environment.cc | 19 const IPEndpoint& local_endpoint) in Environment() argument 24 UdpSocket::Create(task_runner_, this, local_endpoint); in Environment() 26 OSP_LOG_ERROR << "Unable to create a UDP socket bound to " << local_endpoint in Environment()
|
D | environment.h | 72 const IPEndpoint& local_endpoint = IPEndpoint::kAnyV6());
|
/external/openscreen/platform/impl/ |
D | stream_socket_posix.cc | 36 StreamSocketPosix::StreamSocketPosix(const IPEndpoint& local_endpoint) in StreamSocketPosix() argument 37 : version_(local_endpoint.address.version()), in StreamSocketPosix() 38 local_address_(local_endpoint) {} in StreamSocketPosix()
|
D | udp_socket_posix.h | 29 const IPEndpoint& local_endpoint,
|
D | stream_socket_posix.h | 25 explicit StreamSocketPosix(const IPEndpoint& local_endpoint);
|
/external/parameter-framework/asio-1.10.6/include/asio/ |
D | basic_socket_acceptor.hpp | 865 endpoint_type local_endpoint() const in local_endpoint() function in asio::basic_socket_acceptor 868 endpoint_type ep = this->get_service().local_endpoint( in local_endpoint() 896 endpoint_type local_endpoint(asio::error_code& ec) const in local_endpoint() function in asio::basic_socket_acceptor 898 return this->get_service().local_endpoint(this->get_implementation(), ec); in local_endpoint()
|
D | basic_socket.hpp | 1351 endpoint_type local_endpoint() const in local_endpoint() function in asio::basic_socket 1354 endpoint_type ep = this->get_service().local_endpoint( in local_endpoint() 1381 endpoint_type local_endpoint(asio::error_code& ec) const in local_endpoint() function in asio::basic_socket 1383 return this->get_service().local_endpoint(this->get_implementation(), ec); in local_endpoint()
|
D | socket_acceptor_service.hpp | 215 endpoint_type local_endpoint(const implementation_type& impl, in local_endpoint() function in asio::socket_acceptor_service 218 return service_impl_.local_endpoint(impl, ec); in local_endpoint()
|
D | stream_socket_service.hpp | 250 endpoint_type local_endpoint(const implementation_type& impl, in local_endpoint() function in asio::stream_socket_service 253 return service_impl_.local_endpoint(impl, ec); in local_endpoint()
|
/external/grpc-grpc/test/core/tsi/alts/handshaker/ |
D | alts_handshaker_service_api_test_lib.cc | 40 req->client_start.local_endpoint.ip_address.funcs.decode = in grpc_gcp_handshaker_decoded_req_create() 57 req->server_start.local_endpoint.ip_address.funcs.decode = in grpc_gcp_handshaker_decoded_req_create() 495 result &= handshaker_endpoint_equals(&l_req->local_endpoint, in grpc_gcp_handshaker_client_start_req_equals() 496 &r_req->local_endpoint); in grpc_gcp_handshaker_client_start_req_equals() 552 result &= handshaker_endpoint_equals(&l_req->local_endpoint, in grpc_gcp_handshaker_server_start_req_equals() 553 &r_req->local_endpoint); in grpc_gcp_handshaker_server_start_req_equals()
|
/external/parameter-framework/upstream/asio/stub/ |
D | asio.hpp | 104 const endpoint_base &local_endpoint() const { return base; } in local_endpoint() function
|
/external/python/bumble/tests/ |
D | a2dp_test.py | 231 assert stream.local_endpoint.in_use == 1 256 assert stream.local_endpoint.in_use == 1
|
/external/parameter-framework/upstream/remote-processor/ |
D | RemoteProcessorServer.cpp | 146 const auto &endpoint = _socket.local_endpoint(); in acceptRegister()
|
/external/grpc-grpc-java/alts/src/main/proto/grpc/gcp/ |
D | handshaker.proto | 85 Endpoint local_endpoint = 6; field 128 Endpoint local_endpoint = 4; field
|
/external/rust/crates/grpcio-sys/grpc/src/core/tsi/alts/handshaker/proto/ |
D | handshaker.proto | 85 Endpoint local_endpoint = 6; field 128 Endpoint local_endpoint = 4; field
|
/external/grpc-grpc/test/core/tsi/alts/fake_handshaker/ |
D | handshaker.proto | 85 Endpoint local_endpoint = 6; field 128 Endpoint local_endpoint = 4; field
|