HomeSort by relevance Sort by last modified time
    Searched full:route (Results 126 - 150 of 1258) sorted by null

1 2 3 4 56 7 8 91011>>

  /frameworks/base/core/java/com/android/internal/app/
MediaRouteControllerDialogFragment.java 25 * Media route controller dialog fragment.
28 * this dialog fragment to customize the media route controller dialog.
35 * Creates a media route controller dialog fragment.
MediaRouteControllerDialog.java 39 * This class implements the route controller dialog for {@link MediaRouter}.
41 * This dialog allows the user to control or disconnect from the currently selected route.
51 // to allow the route provider time to propagate the change and publish a new
52 // route descriptor.
82 * Gets the route that this dialog is controlling.
111 * when the route supports it.
127 * when the route supports it.
165 // Defer resetting mVolumeSliderTouched to allow the media route provider
296 public void onRouteChanged(MediaRouter router, MediaRouter.RouteInfo route) {
301 public void onRouteVolumeChanged(MediaRouter router, MediaRouter.RouteInfo route) {
    [all...]
  /frameworks/support/v7/mediarouter/src/android/support/v7/app/
MediaRouteControllerDialog.java 35 * This class implements the route controller dialog for {@link MediaRouter}.
37 * This dialog allows the user to control or disconnect from the currently selected route.
47 // to allow the route provider time to propagate the change and publish a new
48 // route descriptor.
83 * Gets the route that this dialog is controlling.
112 * when the route supports it.
128 * when the route supports it.
166 // Defer resetting mVolumeSliderTouched to allow the media route provider
299 public void onRouteUnselected(MediaRouter router, MediaRouter.RouteInfo route) {
304 public void onRouteChanged(MediaRouter router, MediaRouter.RouteInfo route) {
    [all...]
MediaRouteDiscoveryFragment.java 25 * Media route discovery fragment.
27 * This fragment takes care of registering a callback for media route discovery
31 * The application must supply a route selector to specify the kinds of routes
61 * Gets the media route selector for filtering the routes to be discovered.
71 * Sets the media route selector for filtering the routes to be discovered.
  /external/apache-http/src/org/apache/http/conn/params/
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/conn/routing/
BasicRouteDirector.java 56 * @param plan the planned route
57 * @param fact the currently established route, or
67 ("Planned route may not be null.");
85 * Determines the first step to establish a route.
87 * @param plan the planned route
101 * @param plan the planned route
102 * @param fact the currently established route
136 * @param plan the planned route
137 * @param fact the currently established route
  /external/chromium_org/third_party/libjingle/source/talk/base/
natserver.cc 117 SocketAddressPair route(addr, dest_addr);
118 InternalMap::iterator iter = int_map_->find(route);
120 Translate(route);
121 iter = int_map_->find(route);
159 iter->second->route.source(), DSCP_NO_CHANGE);
162 void NATServer::Translate(const SocketAddressPair& route) {
170 TransEntry* entry = new TransEntry(route, socket, nat_);
171 (*int_map_)[route] = entry;
183 : route(r), socket(s) {
  /external/llvm/test/CodeGen/ARM/
fast-tail-call.ll 4 ; which led (via a convoluted route) to DAG nodes after a TC_RETURN that
  /external/nist-sip/java/gov/nist/javax/sip/header/
Route.java 36 * Route SIPHeader Object
44 public class Route
55 public Route() {
65 public Route(AddressImpl address) {
  /external/tcpdump/
aodv.h 87 u_int32_t rrep_life; /* lifetime of this route */
98 u_int32_t rrep_life; /* lifetime of this route */
108 u_int32_t rrep_life; /* lifetime of this route */
167 #define AODV_RREQ 1 /* route request */
168 #define AODV_RREP 2 /* route response */
170 #define AODV_RREP_ACK 4 /* route response acknowledgement */
172 #define AODV_V6_DRAFT_01_RREQ 16 /* IPv6 route request */
173 #define AODV_V6_DRAFT_01_RREP 17 /* IPv6 route response */
175 #define AODV_V6_DRAFT_01_RREP_ACK 19 /* IPV6 route response acknowledgment */
  /development/samples/SampleSyncAdapter/samplesyncadapter_server/
app.yaml 29 # Route all "web services" requests to the main.py file
41 # Route all page requests to the dashboard.py file
  /development/samples/Support7Demos/res/values/
strings.xml 26 use MediaRouter from the support library. Select a route from the action bar.</string>
31 <string name="info_tab_text">Route Info</string>
33 <string name="sample_media_route_provider_service">Media Route Provider Service Support Library Sample</string>
34 <string name="fixed_volume_route_name">Fixed Volume Remote Playback Route</string>
35 <string name="variable_volume_basic_route_name">Variable Volume (Basic) Remote Playback Route</string>
36 <string name="variable_volume_queuing_route_name">Variable Volume (Queuing) Remote Playback Route</string>
37 <string name="variable_volume_session_route_name">Variable Volume (Session) Remote Playback Route</string>
38 <string name="sample_route_description">Sample route from Support7Demos</string>
  /development/samples/Support7Demos/src/com/example/android/supportv7/media/
SampleMediaRouterActivity.java 112 // Return a custom callback that will simply log all of the route events
115 public void onRouteAdded(MediaRouter router, RouteInfo route) {
116 Log.d(TAG, "onRouteAdded: route=" + route);
120 public void onRouteChanged(MediaRouter router, RouteInfo route) {
121 Log.d(TAG, "onRouteChanged: route=" + route);
125 public void onRouteRemoved(MediaRouter router, RouteInfo route) {
126 Log.d(TAG, "onRouteRemoved: route=" + route);
581 RouteInfo route = mMediaRouter.getSelectedRoute(); local
589 MediaRouter.RouteInfo route = mMediaRouter.getSelectedRoute(); local
    [all...]
  /external/chromium_org/remoting/host/
host_status_observer.h 41 // Called on notification of a route change event, when a channel is
45 const protocol::TransportRoute& route) {}
host_event_logger_posix.cc 39 const protocol::TransportRoute& route) OVERRIDE;
84 const protocol::TransportRoute& route) {
88 jid.c_str(), route.remote_address.ToString().c_str(),
89 route.local_address.ToString().c_str(), channel_name.c_str(),
90 protocol::TransportRoute::GetTypeString(route.type).c_str()));
  /external/iptables/extensions/
libip6t_REJECT.man 16 \fBicmp6\-no\-route\fP,
17 \fBno\-route\fP,
  /external/libnl-headers/netlink/route/
classifier.h 2 * netlink/route/classifier.h Classifiers
17 #include <netlink/route/tc.h>
qdisc.h 2 * netlink/route/qdisc.h Queueing Disciplines
17 #include <netlink/route/tc.h>
  /external/libnl-headers/netlink/route/cls/
ematch.h 2 * netlink/route/cls/ematch.h Extended Matches
16 #include <netlink/route/classifier.h>
  /external/nist-sip/java/gov/nist/javax/sip/header/ims/
ServiceRouteHeader.java 37 * SERVICE-ROUTE header SIP param: RFC 3608.
48 public final static String NAME = "Service-Route";
  /frameworks/base/media/lib/
README.txt 22 This library will eventually be replaced when the media route provider
27 route provider protocol.
  /system/media/audio_route/include/audio_route/
audio_route.h 28 /* Apply an audio route path by name */
31 /* Reset an audio route path by name */
  /external/android-clat/
setroute.c 16 * setroute.c - network route configuration
34 * create/replace/delete a route
39 * gateway - pointer to a struct in_addr or in6_addr for the gateway to use or NULL for an interface route
40 * metric - route metric (lower is better)
41 * mtu - route-specific mtu or 0 for the interface mtu
  /frameworks/support/v7/mediarouter/src/android/support/v7/media/
MediaRouteProviderService.java 38 * Base class for media route provider services.
40 * To implement your own media route provider service, extend this class and
44 * Declare your media route provider service in your application manifest
82 * Creates a media route provider service.
92 * Called by the system when it is time to create the media route provider.
94 * @return The media route provider offered by this service, or null if
95 * this service has decided not to offer a media route provider.
100 * Gets the media route provider offered by this service.
102 * @return The media route provider offered by this service, or null if
121 + "name of the service. A media route provider service can
    [all...]
  /external/iproute2/doc/
ip-cref.tex 115 \item \verb|route| --- routing table entry
    [all...]

Completed in 253 milliseconds

1 2 3 4 56 7 8 91011>>