Home | History | Annotate | Download | only in conn

Lines Matching defs:this

10  *  this work for additional information regarding copyright ownership.
11 * The ASF licenses this file to You under the Apache License, Version 2.0
12 * (the "License"); you may not use this file except in compliance with
24 * This software consists of voluntary contributions made by many
77 /** The route for which this entry gets allocated. */
93 * @param connOperator the Connection Operator for this entry
103 this.connOperator = connOperator;
104 this.connection = connOperator.createConnection();
105 this.route = route;
106 this.tracker = null;
110 * Returns the state object associated with this pool entry.
119 * Assigns a state object to this pool entry.
124 this.state = state;
149 if ((this.tracker != null) && this.tracker.isConnected()) {
156 // In this order, we can be sure that only a successful
161 this.tracker = new RouteTracker(route);
165 (this.connection,
172 // If this tracker was reset while connecting,
179 localTracker.connectTarget(this.connection.isSecure());
181 localTracker.connectProxy(proxy, this.connection.isSecure());
207 if ((this.tracker == null) || !this.tracker.isConnected()) {
210 if (this.tracker.isTunnelled()) {
217 this.connection.update(null, tracker.getTargetHost(),
219 this.tracker.tunnelTarget(secure);
252 if ((this.tracker == null) || !this.tracker.isConnected()) {
258 this.connection.update(null, next, secure, params);
259 this.tracker.tunnelProxy(next, secure);
281 if ((this.tracker == null) || !this.tracker.isConnected()) {
284 if (!this.tracker.isTunnelled()) {
285 //@@@ allow this?
289 if (this.tracker.isLayered()) {
297 // In this order, we can be sure that only a successful
302 connOperator.updateSecureConnection(this.connection, target,
305 this.tracker.layerProtocol(this.connection.isSecure());
314 * this will cause that open to possibly throw an {@link IOException}.