Searched refs:endpoint (Results 1 - 25 of 214) sorted by relevance

123456789

/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/fps/
H A Dtest_verify_signature.py7 endpoint = 'http://vamsik.desktop.amazon.com:8080/ipn.jsp'
8 conn.verify_signature(endpoint, params)
/external/parameter-framework/asio/include/asio/ip/detail/
H A Dendpoint.hpp2 // 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 function in class:asio::ip::detail::endpoint
[all...]
/external/parameter-framework/asio-1.10.6/include/asio/ip/detail/
H A Dendpoint.hpp2 // 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 function in class:asio::ip::detail::endpoint
[all...]
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ec2/
H A Dregioninfo.py32 def __init__(self, connection=None, name=None, endpoint=None,
35 super(EC2RegionInfo, self).__init__(connection, name, endpoint,
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/rds/
H A Dregioninfo.py29 def __init__(self, connection=None, name=None, endpoint=None,
32 super(RDSRegionInfo, self).__init__(connection, name, endpoint,
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/sdb/
H A Dregioninfo.py29 def __init__(self, connection=None, name=None, endpoint=None,
32 super(SDBRegionInfo, self).__init__(connection, name, endpoint,
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/sqs/
H A Dregioninfo.py29 def __init__(self, connection=None, name=None, endpoint=None,
32 super(SQSRegionInfo, self).__init__(connection, name, endpoint,
/external/guava/guava/src/com/google/common/collect/
H A DCut.java38 final C endpoint; field in class:Cut
40 Cut(@Nullable C endpoint) { argument
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
234 belowValue(C endpoint) argument
239 BelowValue(C endpoint) argument
295 aboveValue(C endpoint) argument
300 AboveValue(C endpoint) argument
[all...]
/external/autotest/client/cros/chameleon/
H A Daudio_board.py82 # 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/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/
H A DEndpointEvent.java48 private Endpoint endpoint; field in class:EndpointEvent
54 this.endpoint = p;
75 return endpoint;
85 return "EndpointEvent[" + type + ", " + endpoint + "]";
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/
H A Dregioninfo.py45 Given an existing set of endpoint data, this will deep-update it with
70 Actually load the region/endpoint information from the JSON files.
137 for region_name, endpoint in endpoints.get(service_name, {}).items():
141 endpoint=endpoint,
154 def __init__(self, connection=None, name=None, endpoint=None,
158 self.endpoint = endpoint
171 self.endpoint = value
177 Connect to this Region's endpoint
[all...]
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/iam/
H A D__init__.py33 Connect to this Region's endpoint. Returns an connection
34 object pointing to the endpoint associated with this region.
40 :return: The connection to this regions endpoint
43 return self.connection_cls(host=self.endpoint, **kw_params)
59 # For historical reasons, we had a "universal" endpoint as well.
63 endpoint='iam.amazonaws.com',
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/route53/
H A D__init__.py34 Connect to this Region's endpoint. Returns an connection
35 object pointing to the endpoint associated with this region.
41 :return: The connection to this regions endpoint
44 return self.connection_cls(host=self.endpoint, **kw_params)
60 # For historical reasons, we had a "universal" endpoint as well.
64 endpoint='route53.amazonaws.com',
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/s3/
H A D__init__.py33 Connect to this Region's endpoint. Returns an connection
34 object pointing to the endpoint associated with this region.
40 :return: The connection to this regions endpoint
43 return self.connection_cls(host=self.endpoint, **kw_params)
66 region.endpoint = kw_params['host']
/external/jetty/src/java/org/eclipse/jetty/server/nio/
H A DSelectChannelConnector.java135 public void customize(EndPoint endpoint, Request request) throws IOException argument
138 endpoint.setMaxIdleTime(_maxIdleTime);
139 super.customize(endpoint, request);
144 public void persist(EndPoint endpoint) throws IOException argument
146 AsyncEndPoint aEndp = ((AsyncEndPoint)endpoint);
148 super.persist(endpoint);
277 protected void endPointClosed(SelectChannelEndPoint endpoint) argument
279 connectionClosed(endpoint.getConnection());
283 protected AsyncConnection newConnection(SocketChannel channel,final AsyncEndPoint endpoint) argument
285 return new AsyncHttpConnection(SelectChannelConnector.this,endpoint,getServe
304 endPointClosed(final SelectChannelEndPoint endpoint) argument
310 endPointOpened(SelectChannelEndPoint endpoint) argument
317 endPointUpgraded(ConnectedEndPoint endpoint, Connection oldConnection) argument
323 newConnection(SocketChannel channel,AsyncEndPoint endpoint, Object attachment) argument
[all...]
/external/parameter-framework/asio/include/asio/detail/
H A Dresolver_service.hpp38 // 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, Handle
86 resolve(implementation_type&, const endpoint_type& endpoint, asio::error_code& ec) argument
101 async_resolve(implementation_type& impl, const endpoint_type& endpoint, Handler& handler) argument
[all...]
/external/parameter-framework/asio/include/asio/ip/
H A Dbasic_resolver_entry.hpp36 /// 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.
H A Dbasic_resolver_iterator.hpp90 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));
105 create( const typename InternetProtocol::endpoint& endpoint, const std::string& host_name, const std::string& service_name) argument
H A Dbasic_resolver_query.hpp39 /// 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();
/external/parameter-framework/asio-1.10.6/include/asio/detail/
H A Dresolver_service.hpp38 // 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, Handle
86 resolve(implementation_type&, const endpoint_type& endpoint, asio::error_code& ec) argument
101 async_resolve(implementation_type& impl, const endpoint_type& endpoint, Handler& handler) argument
[all...]
/external/parameter-framework/asio-1.10.6/include/asio/ip/
H A Dbasic_resolver_entry.hpp36 /// 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.
H A Dbasic_resolver_iterator.hpp90 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));
105 create( const typename InternetProtocol::endpoint& endpoint, const std::string& host_name, const std::string& service_name) argument
H A Dbasic_resolver_query.hpp39 /// 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();
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/cloudsearch/
H A Dtest_document.py42 endpoint="doc-demo-userdomain.us-east-1.cloudsearch.amazonaws.com")
58 endpoint="doc-demo-userdomain.us-east-1.cloudsearch.amazonaws.com")
74 endpoint="doc-demo-userdomain.us-east-1.cloudsearch.amazonaws.com")
91 endpoint="doc-demo-userdomain.us-east-1.cloudsearch.amazonaws.com")
130 endpoint="doc-demo-userdomain.us-east-1.cloudsearch.amazonaws.com")
153 endpoint="doc-demo-userdomain.us-east-1.cloudsearch.amazonaws.com")
176 endpoint="doc-demo-userdomain.us-east-1.cloudsearch.amazonaws.com")
190 endpoint="doc-demo-userdomain.us-east-1.cloudsearch.amazonaws.com")
208 endpoint="doc-demo-userdomain.us-east-1.cloudsearch.amazonaws.com")
236 endpoint
[all...]
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/cloudsearch2/
H A Dtest_document.py63 endpoint="doc-demo-userdomain.us-east-1.cloudsearch.amazonaws.com")
78 endpoint="doc-demo-userdomain.us-east-1.cloudsearch.amazonaws.com")
93 endpoint="doc-demo-userdomain.us-east-1.cloudsearch.amazonaws.com")
110 endpoint="doc-demo-userdomain.us-east-1.cloudsearch.amazonaws.com")
147 endpoint="doc-demo-userdomain.us-east-1.cloudsearch.amazonaws.com")
169 endpoint="doc-demo-userdomain.us-east-1.cloudsearch.amazonaws.com")
192 endpoint="doc-demo-userdomain.us-east-1.cloudsearch.amazonaws.com")
205 endpoint="doc-demo-userdomain.us-east-1.cloudsearch.amazonaws.com")
223 endpoint="doc-demo-userdomain.us-east-1.cloudsearch.amazonaws.com")
243 endpoint
[all...]

Completed in 418 milliseconds

123456789