HomeSort by relevance Sort by last modified time
    Searched full:routes (Results 76 - 100 of 497) sorted by null

1 2 34 5 6 7 8 91011>>

  /frameworks/base/tests/RemoteDisplayProvider/src/com/android/media/remotedisplay/test/
RemoteDisplayProviderService.java 29 * Remote display provider implementation that publishes working routes.
72 // When discovery begins, go find all of the routes.
140 // When discovery ends, go hide some of the routes we can't actually use.
142 // The routes will usually stay published.
  /hardware/libhardware/modules/camera/3_4/metadata/
v4l2_control_delegate.h 26 // A V4L2ControlDelegate routes getting and setting through V4L2
  /external/libnl/src/
nl-route-delete.c 2 * src/nl-route-delete.c Delete Routes
157 fprintf(stderr, "You attempted to delete all routes in "
165 printf("Deleted %d routes\n", deleted);
  /frameworks/base/telecomm/java/android/telecom/
CallAudioState.java 48 * Bit mask of all possible audio routes.
69 * @param supportedRouteMask Bit mask of all routes supported by this call. This should be a
134 * @return Bit mask of all routes supported by this call.
PhoneAccount.java 537 * Sets the audio routes supported by this {@link PhoneAccount}.
539 * @param routes bit mask of available routes.
543 public Builder setSupportedAudioRoutes(int routes) {
544 mSupportedAudioRoutes = routes;
674 * Determines if this {@code PhoneAccount} has routes specified by the passed in bit mask.
676 * @param route The routes to check.
677 * @return {@code true} if the phone account has the routes.
680 public boolean hasAudioRoutes(int routes) {
681 return (mSupportedAudioRoutes & routes) == routes
    [all...]
  /frameworks/support/v7/mediarouter/src/android/support/v7/media/
SystemMediaRouteProvider.java 36 * Provides routes for built-in system destinations such as the local display
38 * MediaRouter for framework-provided routes and registers non-framework-provided
39 * routes as user routes.
247 // Maintains an association from framework routes to support library routes.
249 // have published its own user routes to the framework media router and already
254 // Maintains an association from support library routes to framework routes.
587 // Routes should not have null names but it may happen for badly configure
    [all...]
  /external/dhcpcd-6.8.2/
ipv4.c 56 /* Linux has had loopback routes in the local table since 2.2 */
318 ipv4_freerts(struct rt_head *routes)
322 while ((rt = TAILQ_FIRST(routes))) {
323 TAILQ_REMOVE(routes, rt, next);
371 /* Don't set default routes if not asked to */
506 if (ifp->options->routes && TAILQ_FIRST(ifp->options->routes)) {
509 TAILQ_FOREACH(rt, ifp->options->routes, next) {
527 /* Some DHCP servers add set host routes by setting the gateway
656 * our routes are managed correctly. *
    [all...]
  /external/tcpdump/tests/
eigrp3-v.out 61 IP Internal routes TLV (0x0102), length: 28
72 IP Internal routes TLV (0x0102), length: 28
83 IP Internal routes TLV (0x0102), length: 28
94 IP Internal routes TLV (0x0102), length: 28
105 IP Internal routes TLV (0x0102), length: 28
eigrp4-v.out 29 IP Internal routes TLV (0x0102), length: 28
36 IP Internal routes TLV (0x0102), length: 28
59 IP Internal routes TLV (0x0102), length: 28
  /frameworks/av/services/audiopolicy/config/
audio_policy_configuration.xml 34 ?routes?: list of possible connections between input and output devices or between stream and
157 <routes>
174 </routes>
191 <routes>
194 </routes>
  /prebuilts/go/darwin-x86/src/net/
interface_test.go 180 ipv4, ipv6 int // # of active connected unicast, anycast or multicast routes
189 // interface address prefixes and connected routes.
264 // Test the existence of connected unicast routes for IPv4.
266 return fmt.Errorf("num IPv4 unicast routes = 0; want >0; summary: %+v, %+v", ifStats, uniStats)
268 // Test the existence of connected unicast routes for IPv6.
272 return fmt.Errorf("num IPv6 unicast routes = 0; want >0; summary: %+v, %+v", ifStats, uniStats)
292 // routes, ::1/128 and other, are installed.
  /prebuilts/go/linux-x86/src/net/
interface_test.go 180 ipv4, ipv6 int // # of active connected unicast, anycast or multicast routes
189 // interface address prefixes and connected routes.
264 // Test the existence of connected unicast routes for IPv4.
266 return fmt.Errorf("num IPv4 unicast routes = 0; want >0; summary: %+v, %+v", ifStats, uniStats)
268 // Test the existence of connected unicast routes for IPv6.
272 return fmt.Errorf("num IPv6 unicast routes = 0; want >0; summary: %+v, %+v", ifStats, uniStats)
292 // routes, ::1/128 and other, are installed.
  /external/iproute2/doc/
ip-cref.tex     [all...]
  /frameworks/base/core/tests/coretests/src/android/net/
LinkPropertiesTest.java 282 // Change the interface name. All the routes should change their interface name too.
299 // Routes with null interfaces are converted to wlan0.
509 assertFalse("dualstack:missing-routes", lp46.isProvisioned());
604 // the routes to compute likely reachability.
696 // Since no routes is added explicitly, getAllRoutes() should return empty.
702 // IPv4 case: both direct and default routes added initially
713 // Check added routes
715 // ensureDirectlyConnectedRoutes() shouldn't change the routes since direct connected
720 // IPv6 case: only default routes added initially
753 // Duplicated entries in actual routes are considered failure
    [all...]
  /external/tcpdump/
print-eigrp.c 95 { EIGRP_TLV_IP_INT, "IP Internal routes"},
96 { EIGRP_TLV_IP_EXT, "IP External routes"},
97 { EIGRP_TLV_AT_INT, "AppleTalk Internal routes"},
98 { EIGRP_TLV_AT_EXT, "AppleTalk External routes"},
100 { EIGRP_TLV_IPX_INT, "IPX Internal routes"},
101 { EIGRP_TLV_IPX_EXT, "IPX External routes"},
  /frameworks/base/services/net/java/android/net/ip/
IpReachabilityMonitor.java 256 private static boolean isOnLink(List<RouteInfo> routes, InetAddress ip) {
257 for (RouteInfo route : routes) {
284 final List<RouteInfo> routes = mLinkProperties.getRoutes(); local
285 for (RouteInfo route : routes) {
288 if (isOnLink(routes, gw)) {
295 if (isOnLink(routes, nameserver)) {
  /frameworks/support/v7/mediarouter/src/android/support/v7/app/
MediaRouteButton.java 43 * The media route button allows the user to select routes and to control the
46 * The application must specify the kinds of routes that the user should be allowed
55 * If no non-default routes match the selector and it is not possible for an active
56 * scan to discover any matching routes, then the button is disabled and cannot
158 * Gets the media route selector for filtering the routes that the user can
169 * Sets the media route selector for filtering the routes that the user can
  /packages/apps/Nfc/nci/jni/
RouteDataSet.cpp 134 ** Description: Delete all routes stored in all databases.
192 while (node1) //loop through all elements in <Routes ...
227 } //loop through all elements in <Routes ...
243 ** routesXml: XML that represents routes.
325 ** Description: Parse data for protocol routes.
396 ** Description: Parse data for technology routes.
  /external/autotest/client/cros/
backchannel.py 54 @param create_ssh_routes: If True set up routes so that all existing
80 # routes afterward.
91 # ssh routes in one shot. This is necessary since we'll lose
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
RouteSelector.java 34 * Selects routes to connect to an origin server. Each connection requires a
54 /* State for negotiating failed routes */
90 // We will only recurse in order to skip previously failed routes. They will be tried last.
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/Udp4/
Udp4.h 203 EFI_UDP4_ROUTES Routes;
  /external/dnsmasq/contrib/openvpn/
README 16 > routes, and queries to the domain in the server=3D line work just fine.
  /external/iptables/extensions/
libxt_TCPMSS.man 34 This may not function as desired where asymmetric routes with differing
  /external/mesa3d/src/egl/main/
README.txt 8 1. An EGL API dispatcher. This directly routes all the eglFooBar() API
  /external/webrtc/webrtc/video/
payload_router.h 30 // PayloadRouter routes outgoing data to the correct sending RTP module, based

Completed in 1411 milliseconds

1 2 34 5 6 7 8 91011>>