/frameworks/support/v7/mediarouter/src/android/support/v7/app/ |
MediaRouteDialogFactory.java | 20 * The media route dialog factory is responsible for creating the media route 32 * Creates a default media route dialog factory. 40 * @return The default media route dialog factory, never null. 52 * @return The media route chooser dialog fragment, must not be null. 64 * @return The media route controller dialog fragment, must not be null.
|
MediaRouteButton.java | 43 * The media route button allows the user to select routes and to control the 44 * currently selected route. 50 * When the default route is selected or when the currently selected route does not 53 * route of the kind that it wants to use. Clicking on the button opens 54 * a {@link MediaRouteChooserDialog} to allow the user to select a route. 59 * When a non-default route is selected that matches the selector, the button will 61 * to a route of the kind that it wants to use. The button may also appear 62 * in an intermediary connecting state if the route is in the process of connecting 65 * to control or disconnect from the current route 228 MediaRouter.RouteInfo route = mRouter.getSelectedRoute(); local 486 final MediaRouter.RouteInfo route = mRouter.getSelectedRoute(); local [all...] |
/frameworks/support/v7/mediarouter/src/android/support/v7/media/ |
MediaRouteProviderDescriptor.java | 28 * Describes the state of a media route provider and the routes that it publishes. 69 * Returns true if the route provider descriptor and all of the routes that 80 MediaRouteDescriptor route = mRoutes.get(i); local 81 if (route == null || !route.isValid()) { 119 * Builder for {@link MediaRouteProviderDescriptor media route provider descriptors}. 126 * Creates an empty media route provider descriptor builder. 133 * Creates a media route provider descriptor builder whose initial contents are 150 * Adds a route. 152 public Builder addRoute(MediaRouteDescriptor route) { [all...] |
/external/apache-http/src/org/apache/http/conn/routing/ |
HttpRoute.java | 39 * The route for a request. 65 /** Whether the the route is tunnelled through the proxy. */ 68 /** Whether the route is layered. */ 71 /** Whether the route is (supposed to be) secure. */ 83 * @param local the local address to route from, or 85 * @param target the host to which to route 87 * <code>null</code> for a direct route 88 * @param secure <code>true</code> if the route is (to be) secure, 90 * @param tunnelled the tunnel type of this route, or 92 * @param layered the layering type of this route, o [all...] |
RouteInfo.java | 40 * Read-only interface for route information. 53 * The tunnelling type of a route. 63 * The layering type of a route. 99 * Obtains the number of hops in this route. 100 * A direct route has one hop. A route through a proxy has two hops. 101 * A route through a chain of <i>n</i> proxies has <i>n+1</i> hops. 103 * @return the number of hops in this route 110 * Obtains the target of a hop in this route. 113 * For a route through exactly one proxy, target of hop 0 is the prox [all...] |
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/chromium_org/native_client_sdk/src/gonacl_appengine/ |
gonacl.py | 7 webapp2.Route('/', webapp2.RedirectHandler, defaults={
|
/external/okhttp/src/main/java/com/squareup/okhttp/ |
Connection.java | 80 private final Route route; field in class:Connection 90 public Connection(Route route) { 91 this.route = route; 100 socket = (route.proxy.type() != Proxy.Type.HTTP) ? new Socket(route.proxy) : new Socket(); 101 Platform.get().connectSocket(socket, route.inetSocketAddress, connectTimeout); 106 if (route.address.sslSocketFactory != null) [all...] |
/external/okhttp/src/main/java/com/squareup/okhttp/internal/http/ |
RouteSelector.java | 21 import com.squareup.okhttp.Route; 59 /* The most recently attempted route. */ 77 private final List<Route> postponedRoutes; 87 this.postponedRoutes = new LinkedList<Route>(); 93 * Returns true if there's another route to attempt. Every address has at 94 * least one route. 101 * Returns the next route address to attempt. 112 // Compute the next route to attempt. 129 Route route = new Route(address, lastProxy, lastInetSocketAddress, modernTls) local [all...] |
/development/samples/Support7Demos/src/com/example/android/supportv7/media/ |
Player.java | 36 public abstract void connect(RouteInfo route); 64 public static Player create(Context context, RouteInfo route) { 66 if (route != null && route.supportsControlCategory( 69 } else if (route != null) { 74 player.connect(route);
|
_index.html | 11 <dt><a href="SampleMediaRouteProvider.html">Media Route Provider</a></dt> 15 <dt><a href="SampleMediaRouteProviderService.html">Media Route Provider Service</a></dt>
|
/external/apache-http/src/org/apache/http/impl/conn/ |
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/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/tsccm/ |
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...] |
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;
|
/external/apache-http/src/org/apache/http/conn/params/ |
ConnRoutePNames.java | 51 public static final String DEFAULT_PROXY = "http.route.default-proxy"; 66 public static final String LOCAL_ADDRESS = "http.route.local-address"; 70 * Parameter for an forced route. 71 * The forced route will be interpreted by the standard 74 * Instead of computing a route, the given forced route will be 81 public static final String FORCED_ROUTE = "http.route.forced-route";
|
/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;
|
/external/chromium_org/content/browser/loader/ |
global_routing_id.h | 10 // Uniquely identifies the route from which a net::URLRequest comes. 23 // The route ID (unique for each URLRequest source).
|
offline_policy.h | 24 // one policy would be that if requests for a particular route (e.g. "tab") 25 // is unable to reach the server, other requests made with the same route 36 // this route with the given |resource_type|. |reset_state| indicates
|
/frameworks/base/core/java/android/net/ |
RouteInfo.java | 30 * A simple container for route information. 32 * In order to be used, a route must have a destination prefix and: 47 * The IP destination address for this route. 52 * The gateway address for this route. 57 * The interface for this route. 69 * constructed route is either the IPv4 default route <code>0.0.0.0</code> 71 * route <code>::/0</code> if gateway is an instance of 77 * @param gateway the IP address to route packets through 286 // match the route destination and destination with prefix lengt [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...] |
/frameworks/support/v7/mediarouter/res/values/ |
strings.xml | 18 <!-- Name for the default system route prior to Jellybean. [CHAR LIMIT=30] --> 21 <!-- Name for the user route category created when publishing routes to the system in Jellybean and above. [CHAR LIMIT=30] --> 27 <!-- Title of the media route chooser dialog. [CHAR LIMIT=30] --> 33 <!-- Button to disconnect from a media route. [CHAR LIMIT=30] -->
|
/external/iproute2/doc/ |
rtstat.sgml | 10 Here is some code for monitoring the route cache. For systems handling high 11 network load, servers, routers, firewalls etc the route cache and its garbage 16 from route cache process into
|
/external/libnl-headers/netlink/route/ |
class.h | 2 * netlink/route/class.h Classes 16 #include <netlink/route/tc.h> 17 #include <netlink/route/qdisc.h>
|