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

1 2 3 4

  /bionic/libc/include/net/
route.h 1 #include <linux/route.h>
  /development/ndk/platforms/android-3/include/net/
route.h 1 #include <linux/route.h>
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/net/
route.h 1 #include <linux/route.h>
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/net/
route.h 1 #include <linux/route.h>
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/net/
route.h 1 #include <linux/route.h>
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/net/
route.h 1 #include <linux/route.h>
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/net/
route.h 1 #include <linux/route.h>
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/net/
route.h 1 #include <linux/route.h>
  /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;
  /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...]
  /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...]
ConnPerRoute.java 37 * allowed for for a given route. This class can be used by pooling
39 * a fine-grained control of connections on a per route basis.
49 int getMaxForRoute(HttpRoute route);
ConnPerRouteBean.java 42 * a fine-grained control of connections on a per route basis.
81 public void setMaxForRoute(final HttpRoute route, int max) {
82 if (route == null) {
84 ("HTTP route may not be null.");
90 this.maxPerHostMap.put(route, Integer.valueOf(max));
93 public int getMaxForRoute(final HttpRoute route) {
94 if (route == null) {
96 ("HTTP route may not be null.");
98 Integer max = this.maxPerHostMap.get(route);
  /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;
BasicPoolEntry.java 59 * @param route the planned route for the connection
64 HttpRoute route,
66 super(op, route);
67 if (route == null) {
68 throw new IllegalArgumentException("HTTP route may not be null");
78 return super.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...]
ConnPoolByRoute.java 53 * A connection pool that maintains connections by route.
58 * <li>connections are re-used only for the exact same route</li>
59 * <li>connection limits are enforced per route rather than per host</li>
83 * A map of route-specific pools.
94 * Creates a new connection pool, managed by route.
145 * Creates a new route-specific pool.
148 * @param route the route
152 protected RouteSpecificPool newRouteSpecificPool(HttpRoute route) {
153 return new RouteSpecificPool(route, connPerRoute.getMaxForRoute(route))
    [all...]
  /external/ipsec-tools/src/racoon/samples/roadwarrior/client/
phase1-down.sh 36 route delete default
37 route delete ${REMOTE_ADDR}
38 route add default ${DEFAULT_GW} -ifa ${LOCAL_ADDR}
42 route delete default
43 route delete ${REMOTE_ADDR}
45 route add default gw ${DEFAULT_GW}
phase1-up.sh 37 route delete default
38 route add default ${DEFAULT_GW} -ifa ${INTERNAL_ADDR4}
39 route add ${REMOTE_ADDR} ${DEFAULT_GW}
44 route delete default
45 route add ${REMOTE_ADDR} gw ${DEFAULT_GW} dev ${if}
46 route add default gw ${DEFAULT_GW} dev ${if}:1
  /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...]
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/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) {
  /device/samsung/crespo/alsa-lib/src/conf/pcm/
dpl.conf 6 type route
28 type route
  /device/samsung/crespo/alsa-lib/src/pcm/
pcm_route.c 4 * \brief PCM Route & Volume Plugin Interface
9 * PCM - Route & Volume Plugin
510 snd_pcm_route_t *route = pcm->private_data; local
511 snd_pcm_route_params_t *params = &route->params;
548 snd_pcm_route_t *route = pcm->private_data; local
553 if (route->sformat != SND_PCM_FORMAT_UNKNOWN) {
554 _snd_pcm_hw_params_set_format(sparams, route->sformat);
557 if (route->schannels >= 0) {
559 (unsigned int) route->schannels, 0);
567 snd_pcm_route_t *route = pcm->private_data local
591 snd_pcm_route_t *route = pcm->private_data; local
624 snd_pcm_route_t *route = pcm->private_data; local
671 snd_pcm_route_t *route = pcm->private_data; local
693 snd_pcm_route_t *route = pcm->private_data; local
708 snd_pcm_route_t *route = pcm->private_data; local
859 snd_pcm_route_t *route; local
    [all...]

Completed in 444 milliseconds

1 2 3 4