Searched refs:_destination (Results 1 - 6 of 6) sorted by relevance

/external/jetty/src/java/org/eclipse/jetty/client/
H A DRedirectListener.java36 private HttpDestination _destination; field in class:RedirectListener
49 _destination = destination;
59 _attempts < _destination.getHttpClient().maxRedirects());
128 HttpDestination destination=_destination.getHttpClient().getDestination(_exchange.getAddress(),isHttps);
130 if (_destination==destination)
132 _destination.resend(_exchange);
H A DAbstractHttpConnection.java57 protected HttpDestination _destination; field in class:AbstractHttpConnection
92 return _destination;
97 _destination = destination;
141 timeout = _destination.getHttpClient().getTimeout();
190 if (_destination.isProxied())
194 boolean secure = _destination.isSecure();
195 String host = _destination.getAddress().getHost();
196 int port = _destination.getAddress().getPort();
207 Authentication auth = _destination.getProxyAuthentication();
219 requestHeaders.add(HttpHeaders.HOST_BUFFER,_destination
[all...]
H A DAsyncHttpConnection.java195 _endp.setMaxIdleTime((int)_destination.getHttpClient().getIdleTimeout());
205 exchange.cancelTimeout(_destination.getHttpClient());
219 _destination.send(_pipeline);
231 _destination.send(_pipeline);
238 _destination.returnConnection(this, !persistent);
H A DBlockingHttpConnection.java243 _endp.setMaxIdleTime((int)_destination.getHttpClient().getIdleTimeout());
253 exchange.cancelTimeout(_destination.getHttpClient());
268 _destination.send(_pipeline);
279 _destination.send(_pipeline);
286 _destination.returnConnection(this, !persistent);
/external/jetty/src/java/org/eclipse/jetty/client/webdav/
H A DWebdavListener.java46 private HttpDestination _destination; field in class:WebdavListener
58 _destination=destination;
128 _destination.resend(_exchange);
177 _destination.resend(_exchange);
262 propfindExchange.setEventListener( new SecurityListener( _destination, propfindExchange ) );
266 _destination.send( propfindExchange );
287 mkcolExchange.setEventListener( new SecurityListener( _destination, mkcolExchange ) );
291 _destination.send( mkcolExchange );
313 supportedExchange.setEventListener( new SecurityListener( _destination, supportedExchange ) );
317 _destination
[all...]
/external/jetty/src/java/org/eclipse/jetty/client/security/
H A DSecurityListener.java47 private HttpDestination _destination; field in class:SecurityListener
60 _destination=destination;
130 if ( status == HttpStatus.UNAUTHORIZED_401 && _attempts<_destination.getHttpClient().maxRetries())
168 RealmResolver realmResolver = _destination.getHttpClient().getRealmResolver();
175 Realm realm = realmResolver.getRealm( details.get("realm"), _destination, pathSpec ); // TODO work our realm correctly
183 _destination.addAuthorization("/",new DigestAuthentication(realm,details));
188 _destination.addAuthorization(pathSpec,new BasicAuthentication(realm));
213 _destination.resend(_exchange);
245 _destination.resend(_exchange);

Completed in 103 milliseconds