/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/bits/ |
in.h | 69 #define IP_PMTUDISC_WANT 1 /* Use per route hints. */ 81 source route (this gets put into the header proper). */ 84 struct in_addr ip_dst; /* First hop; zero without source route. */ 159 #define IPV6_PMTUDISC_WANT 1 /* Use per route hints. */
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
ipx.h | 54 * OLD Route Definition for backward compatibility.
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/bits/ |
in.h | 69 #define IP_PMTUDISC_WANT 1 /* Use per route hints. */ 81 source route (this gets put into the header proper). */ 84 struct in_addr ip_dst; /* First hop; zero without source route. */ 159 #define IPV6_PMTUDISC_WANT 1 /* Use per route hints. */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
ipx.h | 54 * OLD Route Definition for backward compatibility.
|
/development/samples/Support7Demos/src/com/example/android/supportv7/media/ |
RemotePlayer.java | 39 * Handles playback of media items using a remote route. 42 * the remote route. When the remote route doesn't support queuing, media items 105 public void connect(RouteInfo route) { 106 mRoute = route; 107 mClient = new RemotePlaybackClient(mContext, route); 111 Log.d(TAG, "connected to: " + route
|
LocalPlayer.java | 93 public void connect(RouteInfo route) { 95 Log.d(TAG, "connecting to: " + route); 398 public void connect(RouteInfo route) { 399 super.connect(route); 400 mRoute = route; 425 // Get the current route and its presentation display. 430 Log.i(TAG, "Dismissing presentation because the current route no longer " 597 public void connect(RouteInfo route) { 598 super.connect(route);
|
/external/iproute2/examples/ |
dhcp-client-script | 177 LOG route add default gw $router 178 route add default gw $router 193 LOG route del default gw $router 194 route del default gw $router 210 # Check (and add route, if alive) default routers 223 route add default gw $router 246 route $op -net $1 netmask `ABCMask "$1"` gw $2
|
/external/chromium_org/tools/telemetry/telemetry/core/backends/ |
android_rndis.py | 69 # No default route. Install one via the host. This is needed because 71 self._adb.RunShellCommand('route add default gw %s dev %s' % 277 'or add the interface to a bridge in order to route to this network.' 324 routes = self._adb.RunShellCommand('cat /proc/net/route')[1:] 325 routes = [route.split() for route in routes] 326 default_routes = [route[0] for route in routes if route[1] == '00000000'] 341 return # If there is no route, then nobody cares about DNS [all...] |
/external/dhcpcd/ |
configure.c | 55 /* Some systems have route metrics */ 445 syslog(LOG_DEBUG, "%s: %s route to %s/%d", ifname, cmd, 449 syslog(LOG_DEBUG, "%s: %s host route to %s", ifname, cmd, 452 syslog(LOG_DEBUG, "%s: %s default route via %s", ifname, cmd, 455 syslog(LOG_DEBUG, "%s: %s route to %s/%d via %s", ifname, cmd, 459 /* If something other than dhcpcd removes a route, 491 /* Pretend we added the subnet route */ 514 /* We delete and add the route so that we can change metric. 607 * to the assinged IP address. This differs from our notion of a host route 638 * OR supply a host route. If not, warn and add a host route. * [all...] |
/frameworks/base/core/java/android/net/ |
LinkProperties.java | 115 for (RouteInfo route : mRoutes) { 116 newRoutes.add(routeWithInterface(route)); 236 private RouteInfo routeWithInterface(RouteInfo route) { 238 route.getDestination(), 239 route.getGateway(), 243 public void addRoute(RouteInfo route) { 244 if (route != null) { 245 String routeIface = route.getInterface(); 248 "Route added with non-matching interface: " + routeIface + 251 mRoutes.add(routeWithInterface(route)); [all...] |
/frameworks/base/services/java/com/android/server/ |
NetworkManagementService.java | 691 public void addRoute(String interfaceName, RouteInfo route) { 693 modifyRoute(interfaceName, ADD, route, DEFAULT); 697 public void removeRoute(String interfaceName, RouteInfo route) { 699 modifyRoute(interfaceName, REMOVE, route, DEFAULT); 703 public void addSecondaryRoute(String interfaceName, RouteInfo route) { 705 modifyRoute(interfaceName, ADD, route, SECONDARY); 709 public void removeSecondaryRoute(String interfaceName, RouteInfo route) { 711 modifyRoute(interfaceName, REMOVE, route, SECONDARY); 714 private void modifyRoute(String interfaceName, String action, RouteInfo route, String type) { 715 final Command cmd = new Command("interface", "route", action, interfaceName, type) 798 RouteInfo route = new RouteInfo(linkAddress, gatewayAddr); local 830 RouteInfo route = new RouteInfo(linkAddress, gateAddr); local [all...] |
/external/kernel-headers/original/linux/ |
rtnetlink.h | 132 Generic structure for encapsulation of optional route information. 181 RTN_UNICAST, /* Gateway or direct route */ 187 RTN_MULTICAST, /* Multicast route */ 203 #define RTPROT_REDIRECT 1 /* Route installed by ICMP redirects; 205 #define RTPROT_KERNEL 2 /* Route installed by kernel */ 206 #define RTPROT_BOOT 3 /* Route installed during boot */ 207 #define RTPROT_STATIC 4 /* Route installed by administrator */ 248 #define RTM_F_NOTIFY 0x100 /* Notify user of route change */ 249 #define RTM_F_CLONED 0x200 /* This route is cloned */
|
if_tr.h | 41 __be16 rcf; /* route control field */ 100 #define TR_RCF_LIMITED_BROADCAST 0xC000 /* single-route broadcast */
|
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
PresentationWithMediaRouterActivity.java | 110 // Update the presentation based on the currently selected route. 159 // Get the current route and its presentation display. 160 MediaRouter.RouteInfo route = mMediaRouter.getSelectedRoute( local 162 Display presentationDisplay = route != null ? route.getPresentationDisplay() : null; 166 Log.i(TAG, "Dismissing presentation because the current route no longer "
|
/frameworks/base/core/tests/coretests/src/android/net/ |
LinkPropertiesTest.java | 244 // Add a route with no interface to a LinkProperties with no interface. No errors. 251 // Add a route with an interface. Except an exception. 255 fail("Adding wlan0 route to LP with no interface, expect exception"); 262 // Now add a route with the wrong interface. This causes an exception too. 265 fail("Adding wlan0 route to rmnet0 LP, expect exception"); 268 // If the interface name matches, the route is added.
|
/external/apache-http/src/org/apache/http/conn/params/ |
ConnManagerPNames.java | 54 * Defines the maximum number of connections per route. 61 public static final String MAX_CONNECTIONS_PER_ROUTE = "http.conn-manager.max-per-route";
|
ConnRouteParamBean.java | 63 public void setForcedRoute (final HttpRoute route) { 64 params.setParameter(ConnRoutePNames.FORCED_ROUTE, route);
|
/external/chromium_org/base/message_loop/ |
message_pump_x11.h | 32 // dispatcher receives events. Otherwise, we route to messages to dispatchers 46 // Adds/Removes |dispatcher| for the |xid|. This will route all messages from
|
/external/chromium_org/chrome/renderer/extensions/ |
object_backed_native_handler.h | 37 // Installs a new 'route' from |name| to |handler_function|. This means that 54 // route to.
|
/external/chromium_org/content/public/browser/ |
resource_request_info.h | 55 // The IPC route identifier for this request (this identifies the RenderView 66 // The IPC route identifier of the RenderFrame.
|
/external/chromium_org/remoting/host/ |
host_mock_objects.h | 73 const protocol::TransportRoute& route)); 124 const protocol::TransportRoute& route));
|
log_to_server.cc | 86 const protocol::TransportRoute& route) { 90 connection_route_type_[jid] = route.type;
|
/external/chromium_org/remoting/protocol/ |
session.h | 61 // Called whenever route for the channel specified with 65 const TransportRoute& route) = 0;
|
/external/iptables/extensions/ |
libxt_TEE.c | 46 " --gateway IPADDR Route packet via the gateway given by address\n" 47 " --oif NAME Include oif in route calculation\n"
|
/external/wpa_supplicant_8/src/ap/ |
vlan_util.c | 16 #include <netlink/route/link.h> 17 #include <netlink/route/link/vlan.h>
|