HomeSort by relevance Sort by last modified time
    Searched defs:route (Results 1 - 25 of 43) sorted by null

1 2

  /external/apache-http/src/org/apache/http/impl/conn/tsccm/
BasicPoolEntryRef.java 43 * This reference explicitly keeps the planned route, so the connection
48 /** The planned route of the entry. */
49 private final HttpRoute route; field in class:BasicPoolEntryRef
65 route = entry.getPlannedRoute();
70 * Obtain the planned route for the referenced entry.
71 * The planned route is still available, even if the entry is gone.
73 * @return the planned route
76 return this.route;
RouteSpecificPool.java 46 * A connection sub-pool for a specific route, used by {@link ConnPoolByRoute}.
54 /** The route this pool is for. */
55 protected final HttpRoute route; field in class:RouteSpecificPool
75 * Creates a new route-specific pool.
77 * @param route the route for which to pool
80 public RouteSpecificPool(HttpRoute route, int maxEntries) {
81 this.route = route;
90 * Obtains the route for which this pool is specific
    [all...]
AbstractConnPool.java 147 * @param route the route for which to get the connection
152 * @return pool entry holding a connection for the route
161 HttpRoute route,
166 return requestPoolEntry(route, state).getPoolEntry(timeout, tunit);
173 public abstract PoolEntryRequest requestPoolEntry(HttpRoute route, Object state);
206 final HttpRoute route = local
209 log.debug("Connection garbage collected. " + route);
211 handleLostEntry(route);
222 * Handles cleaning up for a lost pool entry with the given route
    [all...]
  /external/apache-http/src/org/apache/http/impl/client/
RoutedRequest.java 38 * A request with the route along which it should be sent.
51 protected final HttpRoute route; field in class:RoutedRequest
57 * @param route the route
59 public RoutedRequest(final RequestWrapper req, final HttpRoute route) {
62 this.route = route;
70 return route;
DefaultRequestDirector.java 117 /** The route planner. */
193 ("Route planner may not be null.");
259 final HttpRoute route) throws ProtocolException {
263 if (route.getProxyHost() != null && !route.isTunnelled()) {
266 HttpHost target = route.getTargetHost();
307 // followup request and route. The request and route passed
312 HttpRoute route = roureq.getRoute(); local
320 route, userToken)
909 HttpRoute route = roureq.getRoute(); local
    [all...]
  /external/apache-http/src/org/apache/http/impl/conn/
DefaultHttpRoutePlanner.java 64 * Creates a new default route planner.
88 // If we have a forced route, we can do without a target.
89 HttpRoute route = local
91 if (route != null)
92 return route;
94 // If we get here, there is no forced route.
95 // So we need a target to compute a route.
113 route = new HttpRoute(target, local, secure);
115 route = new HttpRoute(target, local, proxy, secure);
117 return route;
    [all...]
ProxySelectorRoutePlanner.java 77 * Creates a new proxy selector route planner.
128 // If we have a forced route, we can do without a target.
129 HttpRoute route = local
131 if (route != null)
132 return route;
134 // If we get here, there is no forced route.
135 // So we need a target to compute a route.
164 route = new HttpRoute(target, local, secure);
166 route = new HttpRoute(target, local, proxy, secure);
168 return route;
    [all...]
AbstractPoolEntry.java 52 * {@link HttpRoute route} established.
53 * The adapter delegates methods for establishing the route to
58 * underlying connection and the established route.
77 /** The route for which this entry gets allocated. */
81 protected volatile HttpRoute route; field in class:AbstractPoolEntry
86 /** The tracked route, or <code>null</code> before tracking starts. */
94 * @param route the planned route for the connection,
98 HttpRoute route) {
105 this.route = route
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
RouteList.java 35 * A list of Route Headers.
44 public class RouteList extends SIPHeaderList<Route> {
52 super(Route.class, RouteHeader.NAME);
69 * Order is important when comparing route lists.
77 ListIterator<Route> it = this.listIterator();
78 ListIterator<Route> it1 = that.listIterator();
80 Route route = (Route) it.next(); local
81 Route route1 = (Route) it1.next()
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
RouteParser.java 31 * Parser for a list of route headers.
45 * @param route message to parse to set
47 public RouteParser(String route) {
48 super(route);
55 /** parse the String message and generate the Route List Object
56 * @return SIPHeader the Route List object
65 this.lexer.match(TokenTypes.ROUTE);
70 Route route = new Route(); local
    [all...]
  /external/apache-http/src/org/apache/http/conn/params/
ConnRouteParams.java 43 * An adaptor for accessing route related parameters in {@link HttpParams}.
64 * A special value indicating "no route".
65 * This is a route with {@link #NO_HOST} as the target.
128 * @return the forced route set in the argument parameters, or
135 HttpRoute route = (HttpRoute) local
137 if ((route != null) && NO_ROUTE.equals(route)) {
139 route = null;
141 return route;
150 * @param route the value to set, may be <code>null</code>
    [all...]
  /packages/apps/Email/src/org/apache/james/mime4j/field/address/
Mailbox.java 30 private DomainList route; field in class:Mailbox
35 * Creates a mailbox without a route. Routes are obsolete.
44 * Creates a mailbox with a route. Routes are obsolete.
45 * @param route The zero or more domains that make up the route. Can be null.
49 public Mailbox(DomainList route, String localPart, String domain) {
50 this.route = route;
56 * Returns the route list.
59 return route;
    [all...]
Builder.java 150 DomainList route = null; local
153 route = buildRoute((ASTroute)n);
162 return buildAddrSpec(route, (ASTaddr_spec)n);
183 private Mailbox buildAddrSpec(DomainList route, ASTaddr_spec node) {
187 return new Mailbox(route, localPart, domain);
  /external/apache-http/src/org/apache/http/conn/routing/
RouteTracker.java 40 * Helps tracking the steps in establishing a route.
62 // now follow attributes that indicate the established route
64 /** Whether the first hop of the route is established. */
70 /** Whether the the route is tunnelled end-to-end through proxies. */
73 /** Whether the route is layered over a tunnel. */
76 /** Whether the route is secure. */
81 * Creates a new route tracker.
84 * @param target the host to which to route
85 * @param local the local address to route from, or
100 * Creates a new tracker for the given route
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
DefaultRouter.java 51 * URI Jiang He - use address in route header. Significant changes to conform to
53 * strict route post processing code.
69 * <li> If the request contains one or more Route headers, use the URI of the
70 * topmost Route header as next hop, possibly modifying the request in the
71 * process if the topmost Route header contains no lr parameter(*)
80 * (*)Note that in case the topmost Route header contains no 'lr' parameter
82 * perform 'Route Information Postprocessing' as described in RFC3261 section
83 * 16.6 step 6 (also known as "Route header popping"). That is, the following
86 * <li>The implementation places the Request-URI into the Route header field as
88 * <li>The implementation then places the first Route header field value int
196 Route route = (Route) routes.getFirst(); local
272 Route route = new Route(addr); local
    [all...]
SIPClientTransaction.java 36 import gov.nist.javax.sip.header.Route;
529 * add the route before you process the response. dialog.setLastResponse(this,
1166 Route route = new Route(); local
1181 Route route = null; local
    [all...]
  /frameworks/base/nfc-extras/java/com/android/nfc_extras/
NfcAdapterExtras.java 122 * Immutable data class that describes a card emulation route.
138 * A route such as {@link #ROUTE_OFF} or {@link #ROUTE_ON_WHEN_SCREEN_ON}.
140 public final int route; field in class:NfcAdapterExtras.CardEmulationRoute
144 * <p>null if {@link #route} is {@link #ROUTE_OFF}, otherwise not null.
148 public CardEmulationRoute(int route, NfcExecutionEnvironment nfcEe) {
149 if (route == ROUTE_OFF && nfcEe != null) {
151 } else if (route != ROUTE_OFF && nfcEe == null) {
152 throw new IllegalArgumentException("must specifiy a NFC-EE for this route");
154 this.route = route;
180 int route = sService.getCardEmulationRoute(mPackageName); local
    [all...]
  /external/iproute2/doc/
ip-cref.tex 115 \item \verb|route| --- routing table entry
    [all...]
  /external/kernel-headers/original/linux/
netfilter.h 260 int (*route)(struct dst_entry **dst, struct flowi *fl); member in struct:nf_afinfo
  /external/wpa_supplicant_6/wpa_supplicant/src/drivers/
driver_bsd.c 38 int route; /* routing socket for events */ member in struct:wpa_driver_bsd_data
451 #include <net/route.h>
709 drv->route = socket(PF_ROUTE, SOCK_RAW, 0);
710 if (drv->route < 0)
712 eloop_register_read_sock(drv->route,
760 eloop_unregister_read_sock(drv->route);
771 (void) close(drv->route); /* ioctl socket */
  /external/dhcpcd/
dhcp.c 714 struct rt *route = NULL; local
738 if (route) {
739 route->next = xmalloc(sizeof(*route));
740 route = route->next;
742 routes = route = xmalloc(sizeof(*routes));
743 route->next = NULL;
744 memcpy(&route->dest.s_addr, p, 4);
746 memcpy(&route->gate.s_addr, p, 4)
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/
DialogFilter.java 37 import gov.nist.javax.sip.header.Route;
299 * assigned to the dialog. Forgive the sins of B2BUA's that like to record route ACK's
360 * RFC 3261 Section 16.4 If the first value in the Route header field indicates this
366 // Route header. If the request is being processed by an
367 // endpoint, then the stack strips off the route header.
368 if (sipRequest.getHeader(Route.NAME) != null && transaction.getDialog() != null) {
370 Route route = (Route) routes.getFirst(); local
371 SipUri uri = (SipUri) route.getAddress().getURI()
    [all...]
  /frameworks/base/core/java/android/app/
MediaRouteButton.java 118 final RouteInfo route = mRouter.getRouteAt(i); local
119 if ((route.getSupportedTypes() & mRouteTypes) != 0 &&
120 route != mRouter.getSystemAudioRoute()) {
121 mRouter.selectRouteInt(mRouteTypes, route);
172 final RouteInfo route = mRouter.getRouteAt(i); local
173 if ((route.getSupportedTypes() & mRouteTypes) != 0) {
174 if (route instanceof RouteGroup) {
175 count += ((RouteGroup) route).getRouteCount();
317 * Asynchronously show the route chooser dialog.
  /packages/apps/Email/src/org/apache/james/mime4j/field/address/parser/
AddressListParser.java 342 route(); method
372 final public void route() throws ParseException { method in class:AddressListParser
373 /*@bgen(jjtree) route */
  /frameworks/base/media/java/android/media/
MediaRouter.java 143 Log.e(TAG, "Error selecting Bluetooth A2DP route", e);
160 * Route type flag for live audio.
172 * Route type flag for application-specific usage.
174 * <p>Unlike other media route types, user routes are managed by the application.
221 * Return the currently selected route for the given types
223 * @param type route types
224 * @return the selected route
233 * additional route types specified.
267 * Select the specified route to use for output of the given media types.
269 * @param types type flags indicating which types this route should be used for
313 dispatchRouteSelected(types & route.getSupportedTypes(), route); local
1208 RouteInfo route = mRoutes.remove(index); local
1263 final RouteInfo route = getRouteAt(i); local
1283 final RouteInfo route = getRouteAt(i); local
1339 final RouteInfo route = mRoutes.get(i); local
1450 final RouteInfo route = getRouteAtStatic(i); local
1625 public final RouteInfo route; field in class:MediaRouter.VolumeCallbackInfo
    [all...]

Completed in 654 milliseconds

1 2