HomeSort by relevance Sort by last modified time
    Searched defs:routes (Results 1 - 25 of 44) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Tools/TestResultServer/
main.py 35 routes = [ variable
45 app = webapp2.WSGIApplication(routes, debug=True)
  /frameworks/native/cmds/ip-up-vpn/
ip-up-vpn.c 49 * are interface, addresses, routes, DNS servers, and search domains and VPN
64 * does this, but others might not. Routes, DNS servers, and search domains
87 const char *routes = env("SPLIT_INCLUDE_CIDR"); local
120 fprintf(state, "%s\n", routes[0] ? routes : "0.0.0.0/0");
  /external/nist-sip/java/gov/nist/javax/sip/stack/
DefaultRouter.java 173 RouteList routes = sipRequest.getRouteHeaders(); local
192 if (routes != null) {
196 Route route = (Route) routes.getFirst();
264 RouteList routes = req.getRouteHeaders(); local
265 Route first = (Route) routes.getFirst();
267 routes.removeFirst();
274 routes.add(route); // as last one
  /frameworks/base/core/java/android/net/
StaticIpConfiguration.java 38 * expressive. For example, it supports multiple IP addresses, multiple routes,
78 * Returns the network routes specified by this object. Will typically include a
82 List<RouteInfo> routes = new ArrayList<RouteInfo>(2); local
84 routes.add(new RouteInfo(ipAddress, null, iface));
87 routes.add(new RouteInfo((LinkAddress) null, gateway, iface));
89 return routes;
LinkProperties.java 441 * Returns all the routes on this link and all the links stacked above it.
445 List<RouteInfo> routes = new ArrayList(); local
446 routes.addAll(mRoutes);
448 routes.addAll(stacked.getAllRoutes());
450 return routes;
570 String routes = " Routes: ["; local
571 for (RouteInfo route : mRoutes) routes += route.toString() + ",";
572 routes += "] ";
583 return "{" + ifaceName + linkAddresses + routes + dns + domainName + mt
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/RebaselineLogServer/
main.py 146 routes = [ variable
152 app = webapp2.WSGIApplication(routes, debug=True)
  /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
39 * Globally selected routes override any other route selections that applications
45 routes = new ArrayList<RouteInfo>();
49 routes = src.createTypedArrayList(RouteInfo.CREATOR);
54 final int count = routes.size();
56 final RouteInfo route = routes.get(i);
71 dest.writeTypedList(routes);
78 + globallySelectedRouteId + ", routes=" + routes.toString() + " }"
    [all...]
AudioService.java 478 // Monitoring of audio routes. Protected by mCurAudioRoutes.
4211 AudioRoutesInfo routes; local
5107 AudioRoutesInfo routes = new AudioRoutesInfo(mCurAudioRoutes); local
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/
DialogFilter.java 369 RouteList routes = sipRequest.getRouteHeaders(); local
370 Route route = (Route) routes.getFirst();
385 if (routes.size() == 1)
388 routes.removeFirst();
    [all...]
  /external/chromium_org/chromeos/dbus/
debug_daemon_client.cc 357 std::vector<std::string> routes; local
360 if (reader.PopArrayOfStrings(&routes)) {
361 callback.Run(true, routes);
364 callback.Run(false, routes);
367 callback.Run(false, routes);
  /frameworks/base/core/java/com/android/internal/net/
VpnConfig.java 90 public List<RouteInfo> routes = new ArrayList<RouteInfo>(); field in class:VpnConfig
115 String[] routes = routesStr.trim().split(" "); local
116 for (String route : routes) {
121 this.routes.add(info);
153 out.writeTypedList(routes);
177 in.readTypedList(config.routes, RouteInfo.CREATOR);
VpnProfile.java 57 public String routes = ""; // 7 field in class:VpnProfile
82 routes = in.readString();
103 out.writeString(routes);
137 profile.routes = values[7];
162 builder.append('\0').append(routes);
  /external/chromium_org/chrome/browser/sync/glue/
sync_backend_host_core.cc 690 syncer::ModelSafeRoutingInfo routes; local
691 registrar_->GetModelSafeRoutingInfo(&routes);
692 syncer::ModelTypeSet enabled_types = GetRoutingInfoTypes(routes);
  /external/chromium_org/sync/engine/
sync_scheduler_unittest.cc 90 ModelSafeRoutingInfo routes; local
92 routes[iter.Get()] = GROUP_PASSIVE;
94 return routes;
    [all...]
  /external/dhcpcd/
configure.c 65 static struct rt *routes; variable in typeref:struct:rt
466 f = find_route(routes, rt, &l, NULL);
473 routes = f->next;
481 /* Don't set default routes if not asked to */
507 /* Don't set default routes if not asked to */
583 if (iface->state->options->routes != NULL) {
584 for (rt = iface->state->options->routes;
606 /* Some DHCP servers add set host routes by setting the gateway
713 if ((or = find_route(routes, rt, &rtl, NULL))) {
725 routes = or->next
    [all...]
if-options.h 98 struct rt *routes; member in struct:if_options
dhcp.c 73 * routes. For completeness, we also specify static routes,
559 struct rt *routes = NULL; local
570 free_routes(routes);
579 routes = rt = xzalloc(sizeof(*routes));
595 return routes;
745 /* This calculates the netmask that we should use for static routes.
776 * Otherwise we add static routes and then routers. */
783 struct rt *routes = NULL local
    [all...]
  /frameworks/support/v7/mediarouter/src/android/support/v7/media/
RegisteredMediaRouteProvider.java 69 List<MediaRouteDescriptor> routes = descriptor.getRoutes(); local
70 final int count = routes.size();
72 final MediaRouteDescriptor route = routes.get(i);
145 // This means that one of this provider's routes is selected.
  /frameworks/base/services/core/java/com/android/server/
NetworkManagementService.java 1013 ArrayList<RouteInfo> routes = new ArrayList<RouteInfo>(); local
1183 List<RouteInfo> routes = new ArrayList<RouteInfo>(); local
    [all...]
  /external/ppp/pppd/
sys-solaris.c 2646 mib2_ipRouteEntry_t routes[8]; local
    [all...]
  /frameworks/base/services/core/java/com/android/server/connectivity/
Vpn.java 362 if (mConfig.routes != null) {
363 for (RouteInfo route : mConfig.routes) {
    [all...]
  /prebuilts/sdk/current/support/v7/mediarouter/libs/
android-support-v7-mediarouter.jar 
  /external/chromium_org/third_party/libaddressinput/src/java/
android.jar 
  /external/robolectric/lib/main/
android.jar 
  /prebuilts/sdk/10/
android.jar 

Completed in 645 milliseconds

1 2