HomeSort by relevance Sort by last modified time
    Searched refs:endpoint (Results 51 - 75 of 375) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/cloudsearch2/
test_exceptions.py 25 search = SearchConnection(endpoint=HOSTNAME)
34 search = SearchConnection(endpoint=HOSTNAME)
  /external/jetty/src/java/org/eclipse/jetty/server/
Connector.java 24 import org.eclipse.jetty.io.EndPoint;
184 /** Customize a request for an endpoint.
186 * the particular endpoint (eg security properties from a SSL connection).
187 * @param endpoint
191 void customize(EndPoint endpoint, Request request) throws IOException;
194 /** Persist an endpoint.
196 * @param endpoint
199 void persist(EndPoint endpoint) throws IOException
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/websocket/
WebSocketServletConnectionD08.java 26 import org.eclipse.jetty.io.EndPoint;
32 public WebSocketServletConnectionD08(WebSocketFactory factory, WebSocket websocket, EndPoint endpoint, WebSocketBuffers buffers, long timestamp, int maxIdleTime, String protocol,
35 super(websocket,endpoint,buffers,timestamp,maxIdleTime,protocol,extensions,draft);
WebSocketServletConnectionRFC6455.java 26 import org.eclipse.jetty.io.EndPoint;
32 public WebSocketServletConnectionRFC6455(WebSocketFactory factory, WebSocket websocket, EndPoint endpoint, WebSocketBuffers buffers, long timestamp, int maxIdleTime, String protocol,
35 super(websocket,endpoint,buffers,timestamp,maxIdleTime,protocol,extensions,draft);
WebSocketServletConnectionD00.java 26 import org.eclipse.jetty.io.EndPoint;
33 public WebSocketServletConnectionD00(WebSocketFactory factory, WebSocket websocket, EndPoint endpoint, WebSocketBuffers buffers, long timestamp, int maxIdleTime, String protocol)
36 super(websocket,endpoint,buffers,timestamp,maxIdleTime,protocol);
WebSocketClientFactory.java 43 import org.eclipse.jetty.io.EndPoint;
291 AsyncEndPoint endPoint = result;
297 SslConnection sslConnection = new SslConnection(sslEngine, endPoint);
298 endPoint.setConnection(sslConnection);
299 endPoint = sslConnection.getSslEndPoint();
302 AsyncConnection connection = selectSet.getManager().newConnection(channel, endPoint, holder);
303 endPoint.setConnection(connection);
309 public AsyncConnection newConnection(SocketChannel channel, AsyncEndPoint endpoint, Object attachment)
312 return new HandshakeConnection(endpoint, holder);
316 protected void endPointOpened(SelectChannelEndPoint endpoint)
    [all...]
  /external/webrtc/webrtc/p2p/base/
p2ptransportchannel_unittest.cc 169 NAT_SYMMETRIC, // NAT, endpoint-dependent bindings
225 struct Endpoint {
226 Endpoint()
302 int endpoint,
309 "test content name", component, NULL, GetAllocator(endpoint));
322 channel->SetIceRole(GetEndpoint(endpoint)->ice_role());
323 channel->SetIceTiebreaker(GetEndpoint(endpoint)->GetIceTiebreaker());
356 Endpoint* GetEndpoint(int endpoint) {
357 if (endpoint == 0)
    [all...]
  /external/autotest/client/cros/cellular/mbim_compliance/
usb_descriptors.py 239 """ Endpoint Descriptor. """
315 """ SuperSpeed Endpoint Companion Descriptor. """
418 endpoint descriptors.
468 Check if there are one bulk-in endpoint and one bulk-out endpoint.
470 @param endpoints: A list of endpoint descriptors.
472 @returns True if there are one bulk-in and one bulk-out endpoint, False
476 for endpoint in endpoints:
477 if (endpoint.bLength == 7 and
478 endpoint.bEndpointAddress < 0x80 an
    [all...]
mbim_descriptor_cache.py 40 also fetch the MBIM funnction descriptor, interrrupt endpoint
41 descriptor and bulk endpoint descriptors.
76 'No MBIM Interrupt Endpoint descriptor found')
88 'MBIM Bulk-In/Bulk-Out Endpoint descriptors not found')
98 for endpoint in bulk_endpoint_descriptors:
100 # BULK-OUT vs BULK-IN endpoint
101 if endpoint.bEndpointAddress < 0x80:
102 self.bulk_out_endpoint = endpoint
104 self.bulk_in_endpoint = endpoint
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/cloudsearch2/
document.py 89 def __init__(self, domain=None, endpoint=None):
91 self.endpoint = endpoint
92 if not self.endpoint:
93 self.endpoint = domain.doc_service_endpoint
110 host=self.endpoint,
186 url = "http://%s/%s/documents/batch" % (self.endpoint, api_version)
  /libcore/ojluni/src/main/java/java/net/
ServerSocket.java 321 * @param endpoint The IP address & port number to bind to.
326 * @throws IllegalArgumentException if endpoint is a
330 public void bind(SocketAddress endpoint) throws IOException {
331 bind(endpoint, 50);
348 * @param endpoint The IP address & port number to bind to.
355 * @throws IllegalArgumentException if endpoint is a
359 public void bind(SocketAddress endpoint, int backlog) throws IOException {
364 if (endpoint == null)
365 endpoint = new InetSocketAddress(0);
366 if (!(endpoint instanceof InetSocketAddress)
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/internal/backends/chrome_inspector/
devtools_http.py 77 endpoint = '/json'
79 endpoint += '/' + path
87 self._conn.request('GET', endpoint)
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
reactive_socket_accept_op.hpp 35 typename Protocol::endpoint* peer_endpoint, func_type complete_func)
74 typename Protocol::endpoint* peer_endpoint_;
86 typename Protocol::endpoint* peer_endpoint, Handler& handler)
  /frameworks/base/core/java/android/net/
LocalSocket.java 117 * Connects this socket to an endpoint. May only be called on an instance
120 * @param endpoint endpoint address
124 public void connect(LocalSocketAddress endpoint) throws IOException {
131 impl.connect(endpoint, 0);
138 * Binds this socket to an endpoint name. May only be called on an instance
141 * @param bindpoint endpoint address
275 public void connect(LocalSocketAddress endpoint, int timeout)
  /system/connectivity/shill/wifi/
wifi_service.cc 223 void WiFiService::AddEndpoint(const WiFiEndpointConstRefPtr& endpoint) {
224 DCHECK(endpoint->ssid() == ssid());
225 endpoints_.insert(endpoint);
229 void WiFiService::RemoveEndpoint(const WiFiEndpointConstRefPtr& endpoint) {
230 set<WiFiEndpointConstRefPtr>::iterator i = endpoints_.find(endpoint);
234 << "ignoring non-existent endpoint "
235 << endpoint->bssid_string();
239 if (current_endpoint_ == endpoint) {
246 const WiFiEndpointConstRefPtr& endpoint) {
247 DCHECK(!endpoint || (endpoints_.find(endpoint) != endpoints_.end()))
    [all...]
wifi_provider.cc 275 const WiFiEndpointConstRefPtr& endpoint) {
277 service_by_endpoint_.find(endpoint.get());
283 void WiFiProvider::OnEndpointAdded(const WiFiEndpointConstRefPtr& endpoint) {
288 WiFiServiceRefPtr service = FindService(endpoint->ssid(),
289 endpoint->network_mode(),
290 endpoint->security_mode());
294 endpoint->ssid(),
295 endpoint->network_mode(),
296 WiFiService::ComputeSecurityClass(endpoint->security_mode()),
300 service->AddEndpoint(endpoint);
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/
test_connection.py 89 host = self.region.endpoint
220 endpoint='mockservice.cc-zone-1.amazonaws.com',
232 'https://%s/' % self.region.endpoint,
243 'https://%s/' % self.region.endpoint,
247 os.environ['no_proxy'] = self.region.endpoint
264 'https://%s/' % self.region.endpoint,
268 os.environ['no_proxy'] = self.region.endpoint
286 'https://%s/' % self.region.endpoint,
309 'https://%s/' % self.region.endpoint,
343 'http://%s/' % self.region.endpoint,
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/dynamodb2/
test_layer1.py 41 endpoint='dynamodb.us-west-2.amazonaws.com'),
  /external/parameter-framework/asio-1.10.6/include/asio/ip/
tcp.hpp 45 /// The type of a TCP endpoint.
46 typedef basic_endpoint<tcp> endpoint; typedef in class: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);
  /external/jetty/src/java/org/eclipse/jetty/client/
SocketConnector.java 27 import org.eclipse.jetty.io.EndPoint;
62 final EndPoint endpoint=new SocketEndPoint(socket); local
64 final AbstractHttpConnection connection=new BlockingHttpConnection(_httpClient.getRequestBuffers(),_httpClient.getResponseBuffers(),endpoint);
  /external/jetty/src/java/org/eclipse/jetty/server/ssl/
SslSelectChannelConnector.java 34 import org.eclipse.jetty.io.EndPoint;
96 * @param endpoint
103 public void customize(EndPoint endpoint, Request request) throws IOException
106 super.customize(endpoint,request);
108 SslConnection.SslEndPoint sslEndpoint=(SslConnection.SslEndPoint)endpoint;
112 SslCertificates.customize(sslSession,endpoint,request);
552 protected AsyncConnection newConnection(SocketChannel channel, AsyncEndPoint endpoint)
557 SslConnection connection = newSslConnection(endpoint, engine);
569 protected AsyncConnection newPlainConnection(SocketChannel channel, AsyncEndPoint endPoint)
    [all...]
  /development/host/windows/usb/api/
adb_legacy_interface.cpp 75 // ADB_QUERY_BULK_READ_ENDPOINT_INDEX into actual endpoint indexes and IDs.
76 for (UCHAR endpoint = 0; endpoint < usb_interface_descriptor_.bNumEndpoints;
77 endpoint++) {
78 // Get endpoint information
80 if (!GetEndpointInformation(endpoint, &pipe_info)) {
85 // This is a bulk endpoint. Cache its index and ID.
87 // Use this endpoint as default bulk read endpoint
89 def_read_endpoint_ = endpoint;
    [all...]
  /development/host/windows/usb/winusb/
adb_winusb_interface.cpp 100 // ADB_QUERY_BULK_READ_ENDPOINT_INDEX into actual endpoint indexes and IDs.
101 for (UCHAR endpoint = 0; endpoint < usb_interface_descriptor_.bNumEndpoints;
102 endpoint++) {
103 // Get endpoint information
105 if (!WinUsb_QueryPipe(winusb_handle(), interface_number(), endpoint,
111 // This is a bulk endpoint. Cache its index and ID.
113 // Use this endpoint as default bulk read endpoint
115 def_read_endpoint_ = endpoint;
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/server/bio/
SocketConnector.java 33 import org.eclipse.jetty.io.EndPoint;
62 protected final Set<EndPoint> _connections;
71 _connections=new HashSet<EndPoint>();
128 protected Connection newConnection(EndPoint endpoint)
130 return new BlockingHttpConnection(this, endpoint, getServer());
135 public void customize(EndPoint endpoint, Request request)
138 ConnectorEndPoint connection = (ConnectorEndPoint)endpoint;
142 super.customize(endpoint, request)
    [all...]

Completed in 555 milliseconds

1 23 4 5 6 7 8 91011>>