/frameworks/support/v7/mediarouter/tests/src/android/support/v7/media/ |
MediaRouteProviderTest.java | 60 List<MediaRouteDescriptor> routes = descriptor.getRoutes(); local 61 assertEquals(2, routes.size()); 62 assertEquals(FAKE_MEDIA_ROUTE_ID_1, routes.get(0).getId()); 63 assertEquals(FAKE_MEDIA_ROUTE_NAME_1, routes.get(0).getName()); 64 assertEquals(FAKE_MEDIA_ROUTE_ID_2, routes.get(1).getId()); 65 assertEquals(FAKE_MEDIA_ROUTE_NAME_2, routes.get(1).getName()); 75 routes = descriptor.getRoutes(); 76 assertEquals(4, routes.size()); 77 assertEquals(FAKE_MEDIA_ROUTE_ID_1, routes.get(0).getId()); 78 assertEquals(FAKE_MEDIA_ROUTE_NAME_1, routes.get(0).getName()) 135 List<MediaRouteDescriptor> routes = resultDescriptor.getRoutes(); local [all...] |
/external/iproute2/man/man8/ |
routel.8 | 4 routel \- list routes with pretty output format 6 routef \- flush routes 16 The routel script will list routes in a format that some might consider easier to interpret then the ip route list equivalent. 18 The routef script does not take any arguments and will simply flush the routing table down the drain. Beware! This means deleting all routes which will make your network unusable!
|
ip-route.8.in | 280 Linux-2.x can pack routes into several routing tables identified 283 By default all normal routes are inserted into the 285 table (ID 254) and the kernel only uses this table when calculating routes. 293 consists of routes for local and broadcast addresses. The kernel maintains 367 routes, which are put into the 381 routes it is either the true next hop router or, if it is a direct 383 of the interface. For NAT routes it is the first address of the block 541 routes, scope 545 routes and scope 547 routes [all...] |
ifcfg.8 | 22 the interface, adds some control routes and restarts Router Discovery
|
/frameworks/support/v7/mediarouter/src/android/support/v7/media/ |
MediaRouteProviderDescriptor.java | 27 * Describes the state of a media route provider and the routes that it publishes. 33 private static final String KEY_ROUTES = "routes"; 38 private MediaRouteProviderDescriptor(Bundle bundle, List<MediaRouteDescriptor> routes) { 40 mRoutes = routes; 44 * Gets the list of all routes that this provider has published. 67 * Returns true if the route provider descriptor and all of the routes that 71 * valid then it is not necessary to call {@link #isValid} on each of its routes. 90 result.append("routes=").append( 165 * Adds a list of routes. 167 public Builder addRoutes(Collection<MediaRouteDescriptor> routes) { [all...] |
/external/tcpdump/tests/ |
ripv1v2.out | 3 RIPv1, Request, length: 24, routes: 1 7 RIPv1, Response, length: 24, routes: 1 11 RIPv2, Request, length: 24, routes: 1 or less 15 RIPv2, Response, length: 24, routes: 1 or less
|
bgp-large-community.out | 9 Updated routes: 17 Updated routes: 25 Updated routes: 33 Updated routes: 41 Updated routes:
|
ripv2_auth.out | 3 RIPv2, Request, length: 44, routes: 2 or less 8 RIPv2, Response, length: 44, routes: 2 or less 13 RIPv2, Request, length: 64, routes: 3 or less 20 RIPv2, Response, length: 64, routes: 3 or less 27 RIPv2, Request, length: 68, routes: 3 or less 35 RIPv2, Response, length: 68, routes: 3 or less 43 RIPv2, Request, length: 80, routes: 4 or less 51 RIPv2, Response, length: 80, routes: 4 or less 59 RIPv2, Request, length: 96, routes: 4 or less 68 RIPv2, Response, length: 96, routes: 4 or les [all...] |
/external/autotest/client/site_tests/platform_DebugDaemonGetRoutes/ |
platform_DebugDaemonGetRoutes.py | 20 logging.debug('IP4 Routes: %s', ip4_routes) 22 logging.debug('IP6 Routes: %s', ip6_routes)
|
/frameworks/av/services/audiopolicy/config/ |
primary_audio_policy_configuration.xml | 26 <routes> 31 </routes>
|
a2dp_audio_policy_configuration.xml | 34 <routes> 43 </routes>
|
stub_audio_policy_configuration.xml | 41 <routes> 45 </routes>
|
/frameworks/support/v7/mediarouter/src/android/support/v7/app/ |
MediaRouteChooserDialog.java | 106 * Gets the media route selector for filtering the routes that the user can select. 116 * Sets the media route selector for filtering the routes that the user can select. 139 * Called to filter the set of routes that should be included in the list. 141 * The default implementation iterates over all routes in the provided list and 145 * @param routes The list of routes to filter in-place, never null. 147 public void onFilterRoutes(@NonNull List<MediaRouter.RouteInfo> routes) { 148 for (int i = routes.size(); i-- > 0; ) { 149 if (!onFilterRoute(routes.get(i))) { 150 routes.remove(i) 229 ArrayList<MediaRouter.RouteInfo> routes = new ArrayList<>(mRouter.getRoutes()); local [all...] |
/frameworks/base/media/java/android/media/ |
MediaRouterClientState.java | 26 * a particular client and the routes that are available to it. 33 * A list of all known routes. 35 public final ArrayList<RouteInfo> routes; field in class:MediaRouterClientState 38 routes = new ArrayList<RouteInfo>(); 42 routes = src.createTypedArrayList(RouteInfo.CREATOR); 46 final int count = routes.size(); 48 final RouteInfo route = routes.get(i); 63 dest.writeTypedList(routes); 68 return "MediaRouterClientState{ routes=" + routes.toString() + " }" [all...] |
/cts/hostsidetests/net/app/src/com/android/cts/net/hostside/ |
MyVpnService.java | 70 String routes = intent.getStringExtra(packageName + ".routes"); local 71 if (routes != null) { 72 String[] routeArray = routes.split(","); 122 + " routes=" + routes
|
/hardware/libhardware/modules/audio_remote_submix/ |
audio_hw.cpp | 171 route_config_t routes[MAX_ROUTES]; member in struct:android::submix_audio_device 376 rsxadev->routes[route_idx].input = in; 377 rsxadev->routes[route_idx].config.input_channel_mask = config->channel_mask; 379 rsxadev->routes[route_idx].config.input_sample_rate = config->sample_rate; 383 if (!rsxadev->routes[route_idx].output) { 384 rsxadev->routes[route_idx].config.output_sample_rate = 48000; 385 rsxadev->routes[route_idx].config.output_channel_mask = AUDIO_CHANNEL_OUT_STEREO; 391 rsxadev->routes[route_idx].output = out; 392 rsxadev->routes[route_idx].config.output_channel_mask = config->channel_mask; 394 rsxadev->routes[route_idx].config.output_sample_rate = config->sample_rate [all...] |
/device/asus/fugu/ |
audio_policy_configuration.xml | 43 <routes> 48 </routes> 66 <routes> 68 </routes>
|
/frameworks/av/services/audiopolicy/common/managerdefinitions/include/ |
SessionRoute.h | 31 // For Input (Source) routes, use STREAM_TYPE_NA ("NA" = "not applicable)for the 35 // For Output (Sink) routes, use SOURCE_TYPE_NA ("NA" = "not applicable") for the 78 // These constants identify the SessionRoutMap as holding EITHER input routes, 79 // or output routes. An error will occur if an attempt is made to add a SessionRoute
|
/frameworks/base/tests/RemoteDisplayProvider/ |
README | 8 remote display routes. Behavior can be controlled by modifying the
|
/external/libchrome/base/allocator/ |
allocator_shim_default_dispatch_to_linker_wrapped_symbols.cc | 8 // routes allocations to the original libc functions when using the link-time 14 // which routes the __wrap_X functions into the shim.
|
/packages/apps/Nfc/nci/jni/ |
RouteDataSet.h | 53 ** Description: Data for protocol routes. 76 ** Description: Data for technology routes. 219 ** routesXml: XML that represents routes. 263 Database mSecElemRouteDatabase; //routes when NFC service selects sec elem 264 Database mDefaultRouteDatabase; //routes when NFC service deselects sec elem 273 ** Description: Delete all routes stored in all databases. 285 ** Description: Parse data for protocol routes. 299 ** Description: Parse data for technology routes.
|
/system/media/audio_route/include/audio_route/ |
audio_route.h | 24 /* Initialize and free the audio routes */ 40 /* Reset the audio routes back to the initial state */
|
/external/libnl/lib/route/ |
route.c | 2 * lib/route/route.c Routes 63 * Build a route cache holding all routes currently configured in the kernel 65 * @arg family Address family of routes to cover or AF_UNSPEC 70 * contain all routes currently configured in the kernel. 74 * instead of actual routes.
|
/frameworks/base/core/java/android/net/ |
StaticIpConfiguration.java | 37 * expressive. For example, it supports multiple IP addresses, multiple routes, 77 * Returns the network routes specified by this object. Will typically include a 84 List<RouteInfo> routes = new ArrayList<RouteInfo>(3); local 87 routes.add(connectedRoute); 89 routes.add(RouteInfo.makeHostRoute(gateway, iface)); 93 routes.add(new RouteInfo((IpPrefix) null, gateway, iface)); 95 return routes;
|
/tools/test/connectivity/acts/framework/acts/controllers/utils_lib/commands/ |
route.py | 72 """Get the routes in the ip routing table. 75 net_interface: string, If given, only retrive routes that have 181 """Clears all routes. 184 net_interface: The network interface to clear routes on. 185 If not given then all routes will be removed on all network 188 routes = self.get_routes(net_interface) 190 for a, d in routes:
|