Searched refs:HttpDestination (Results 1 – 13 of 13) sorted by relevance
/external/jetty/src/java/org/eclipse/jetty/client/ |
D | HttpClient.java | 84 …private ConcurrentMap<Address, HttpDestination> _destinations = new ConcurrentHashMap<Address, Htt… 163 HttpDestination destination = getDestination(exchange.getAddress(), ssl); in send() 238 public HttpDestination getDestination(Address remote, boolean ssl) throws IOException in getDestination() 244 …public HttpDestination getDestination(Address remote, boolean ssl, SslContextFactory sslContextFac… in getDestination() 249 HttpDestination destination = _destinations.get(remote); in getDestination() 252 destination = new HttpDestination(this, remote, ssl, sslContextFactory); in getDestination() 259 HttpDestination other =_destinations.putIfAbsent(remote, destination); in getDestination() 459 for (HttpDestination destination : _destinations.values()) in doStop() 479 public void startConnection(HttpDestination destination) throws IOException; in startConnection()
|
D | SelectConnector.java | 67 public void startConnection( HttpDestination destination ) in startConnection() 150 HttpDestination dest=(HttpDestination)key.attachment(); in newEndPoint() 205 if (attachment instanceof HttpDestination) in connectionFailed() 206 ((HttpDestination)attachment).onConnectionFailed(ex); in connectionFailed() 215 private final HttpDestination destination; 217 public ConnectTimeout(SocketChannel channel, HttpDestination destination) in ConnectTimeout()
|
D | RedirectListener.java | 36 private HttpDestination _destination; 43 public RedirectListener(HttpDestination destination, HttpExchange ex) in RedirectListener() 128 …HttpDestination destination=_destination.getHttpClient().getDestination(_exchange.getAddress(),isH… in checkExchangeComplete()
|
D | HttpDestination.java | 52 public class HttpDestination implements Dumpable class 54 private static final Logger LOG = Log.getLogger(HttpDestination.class); 74 …HttpDestination(HttpClient client, Address address, boolean ssl, SslContextFactory sslContextFacto… in HttpDestination() method in HttpDestination 491 …Constructor constructor = listener.getDeclaredConstructor(HttpDestination.class, HttpExchange.clas… in send() 722 HttpDestination.this.onConnectionFailed(x); in onConnectionFailed() 729 synchronized (HttpDestination.this) in onException() 742 synchronized (HttpDestination.this) in onExpire()
|
D | AbstractHttpConnection.java | 57 protected HttpDestination _destination; 90 public HttpDestination getDestination() in getDestination() 95 public void setDestination(HttpDestination destination) in setDestination()
|
D | SocketConnector.java | 50 public void startConnection(final HttpDestination destination) throws IOException in startConnection()
|
D | HttpExchange.java | 126 protected void expire(HttpDestination destination) in expire() 1061 protected void scheduleTimeout(final HttpDestination destination) in scheduleTimeout()
|
/external/jetty/src/java/org/eclipse/jetty/client/security/ |
D | RealmResolver.java | 23 import org.eclipse.jetty.client.HttpDestination; 27 …public Realm getRealm( String realmName, HttpDestination destination, String path ) throws IOExcep… in getRealm()
|
D | SimpleRealmResolver.java | 23 import org.eclipse.jetty.client.HttpDestination; 40 …public Realm getRealm( String realmName, HttpDestination destination, String path ) throws IOExcep… in getRealm()
|
D | HashRealmResolver.java | 25 import org.eclipse.jetty.client.HttpDestination; 40 …public Realm getRealm( String realmName, HttpDestination destination, String path ) throws IOExcep… in getRealm()
|
D | SecurityListener.java | 26 import org.eclipse.jetty.client.HttpDestination; 47 private HttpDestination _destination; 55 public SecurityListener(HttpDestination destination, HttpExchange ex) in SecurityListener()
|
/external/jetty/src/java/org/eclipse/jetty/client/webdav/ |
D | WebdavListener.java | 24 import org.eclipse.jetty.client.HttpDestination; 46 private HttpDestination _destination; 53 public WebdavListener(HttpDestination destination, HttpExchange ex) in WebdavListener()
|
/external/jetty/ |
D | VERSION.txt | 1197 + 341171 Locking in HttpDestination blocks all requests to the same address 1552 + 296567 HttpClient RedirectListener handles new HttpDestination 2111 + JETTY-1017 HttpDestination has too coarse locking
|