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

  /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/ppp/android/
ip-up-vpn.c 26 #include <linux/route.h>
38 struct rtentry route = { local
48 if (argc > 5 && inet_aton(argv[5], in_addr(&route.rt_gateway)) &&
49 (f = fopen("/proc/net/route", "r")) != NULL &&
51 uint32_t *address = &in_addr(&route.rt_dst)->s_addr;
52 uint32_t *netmask = &in_addr(&route.rt_genmask)->s_addr;
63 if (ioctl(s, SIOCADDRT, &route) == -1 && errno != EEXIST) {
67 if (ioctl(s, SIOCADDRT, &route) == -1 && errno != EEXIST) {
  /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 116 /** The route planner. */
192 ("Route planner may not be null.");
258 final HttpRoute route) throws ProtocolException {
262 if (route.getProxyHost() != null && !route.isTunnelled()) {
265 HttpHost target = route.getTargetHost();
306 // followup request and route. The request and route passed
311 HttpRoute route = roureq.getRoute(); local
319 route, userToken)
878 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 76 * Creates a new proxy selector route planner.
127 // If we have a forced route, we can do without a target.
128 HttpRoute route = local
130 if (route != null)
131 return route;
133 // If we get here, there is no forced route.
134 // So we need a target to compute a route.
152 route = new HttpRoute(target, local, secure);
154 route = new HttpRoute(target, local, proxy, secure);
156 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/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 151 DomainList route = null; local
154 route = buildRoute((ASTroute)n);
163 return buildAddrSpec(route, (ASTaddr_spec)n);
184 private Mailbox buildAddrSpec(DomainList route, ASTaddr_spec node) {
188 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/iproute2/doc/
ip-cref.tex 115 \item \verb|route| --- routing table entry
    [all...]
  /external/wpa_supplicant/
driver_bsd.c 34 int route; /* routing socket for events */ member in struct:wpa_driver_bsd_data
453 #include <net/route.h>
706 drv->route = socket(PF_ROUTE, SOCK_RAW, 0);
707 if (drv->route < 0)
709 eloop_register_read_sock(drv->route,
757 eloop_unregister_read_sock(drv->route);
768 (void) close(drv->route); /* ioctl socket */
  /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 672 struct rt *route = NULL; local
691 if (route) {
692 route->next = xmalloc(sizeof(*route));
693 route = route->next;
695 routes = route = xmalloc(sizeof(*routes));
696 route->next = NULL;
697 memcpy(&route->dest.s_addr, p, 4);
699 memcpy(&route->gate.s_addr, p, 4)
    [all...]
  /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 */
  /external/ping/
ping.c 927 #define NROUTES 9 /* number of record route slots */
933 static __u32 route[10]; variable
    [all...]
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 
  /external/opencore/protocols/systems/3g-324m_pvterminal/h245/cmn/include/
h245def.h 2873 PS_OCTETSTRING route; member in struct:_IPSourceRouteAddress
    [all...]
  /prebuilt/common/netbeans-visual/
org-netbeans-api-visual.jar 

Completed in 960 milliseconds