HomeSort by relevance Sort by last modified time
    Searched defs:route (Results 1 - 25 of 33) 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/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)
889 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/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 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/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 114 * Immutable data class that describes a card emulation route.
130 * A route such as {@link #ROUTE_OFF} or {@link #ROUTE_ON_WHEN_SCREEN_ON}.
132 public final int route; field in class:NfcAdapterExtras.CardEmulationRoute
136 * <p>null if {@link #route} is {@link #ROUTE_OFF}, otherwise not null.
140 public CardEmulationRoute(int route, NfcExecutionEnvironment nfcEe) {
141 if (route == ROUTE_OFF && nfcEe != null) {
143 } else if (route != ROUTE_OFF && nfcEe == null) {
144 throw new IllegalArgumentException("must specifiy a NFC-EE for this route");
146 this.route = route;
174 int route = sService.getCardEmulationRoute(); local
    [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...]
  /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...]
  /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 */
  /device/samsung/crespo/libaudio/
AudioHardware.cpp 571 LOGD("### route(%d) call volume(%f)", device, volume);
698 LOGD("### incall mode route (%d)", device);
702 LOGD("### incall mode earpiece route");
707 LOGD("### incall mode speaker route");
714 LOGD("### incall mode bluetooth route %s NR", mBluetoothNrec ? "" : "NO");
723 LOGD("### incall mode headphone route");
727 LOGD("### incall mode headset route");
731 LOGW("### incall mode Error!! route = [%d]", device);
1189 const char *route = mHardware->getOutputRouteFromDevice(mDevices); local
1582 const char *route = mHardware->getInputRouteFromDevice(mDevices); local
    [all...]

Completed in 829 milliseconds

1 2