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

1 2

  /external/webkit/Tools/TestResultServer/
main.py 40 routes = [ variable
51 application = webapp.WSGIApplication(routes, debug=True)
  /external/chromium/chrome/browser/sync/engine/
mock_model_safe_workers.cc 20 ModelSafeRoutingInfo routes; local
21 routes[syncable::BOOKMARKS] = GROUP_PASSIVE;
22 MockModelSafeWorkerRegistrar* m = new MockModelSafeWorkerRegistrar(routes);
29 ModelSafeRoutingInfo routes; local
33 routes[type] = GROUP_PASSIVE;
36 MockModelSafeWorkerRegistrar* m = new MockModelSafeWorkerRegistrar(routes);
54 const ModelSafeRoutingInfo& routes) {
55 routes_ = routes;
syncapi_unittest.cc 681 ModelSafeRoutingInfo routes; local
682 GetModelSafeRoutingInfo(&routes);
683 for (ModelSafeRoutingInfo::iterator i = routes.begin(); i != routes.end();
756 ModelSafeRoutingInfo routes; local
757 GetModelSafeRoutingInfo(&routes);
759 for (ModelSafeRoutingInfo::const_iterator it = routes.begin();
760 it != routes.end(); ++it) {
    [all...]
syncer_thread.cc 408 ModelSafeWorkerRegistrar* registrar, ModelSafeRoutingInfo* routes,
423 (*routes)[t] = r_tmp[t];
457 ModelSafeRoutingInfo routes; local
460 &routes, &workers);
463 this, &SyncerThread::ScheduleConfigImpl, routes, workers,
795 ModelSafeRoutingInfo routes; local
797 session_context_->registrar()->GetModelSafeRoutingInfo(&routes);
802 routes, workers));
    [all...]
syncer_unittest.cc 352 ModelSafeRoutingInfo routes; local
353 GetModelSafeRoutingInfo(&routes);
356 session_->write_transaction(), routes);
    [all...]
syncapi.cc 1916 ModelSafeRoutingInfo routes; local
2100 ModelSafeRoutingInfo routes; local
    [all...]
  /frameworks/native/cmds/ip-up-vpn/
ip-up-vpn.c 49 * are interface, addresses, routes, DNS servers, and search domains. Each
63 * does this, but others might not. Routes, DNS servers, and search domains
85 const char *routes = env("SPLIT_INCLUDE_CIDR"); local
139 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
  /external/libppp/src/
arp.c 102 int routes; local
115 routes = ID0socket(PF_ROUTE, SOCK_RAW, AF_INET);
116 if (routes < 0) {
136 if (ID0write(routes, &arpmsg, arpmsg.hdr.rtm_msglen) < 0 &&
140 close(routes);
143 close(routes);
radius.h 55 struct sticky_route *routes; /* FRAMED Routes */ member in struct:radius
61 struct sticky_route *ipv6routes; /* FRAMED IPv6 Routes */
  /external/webkit/Tools/QueueStatusServer/
main.py 55 routes = [ variable
74 application = webapp.WSGIApplication(routes, debug=True)
  /external/chromium/chrome/browser/sync/
sync_ui_util.cc 409 browser_sync::ModelSafeRoutingInfo routes; local
410 service->GetModelSafeRoutingInfo(&routes);
413 browser_sync::ModelSafeRoutingInfo::const_iterator it = routes.begin();
414 for (; it != routes.end(); ++it) {
  /frameworks/base/core/java/com/android/internal/net/
VpnConfig.java 65 public String routes; field in class:VpnConfig
84 out.writeString(routes);
102 config.routes = in.readString();
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/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...]
  /frameworks/base/services/jni/
com_android_server_connectivity_Vpn.cpp 190 static int set_routes(const char *name, const char *routes)
214 while (sscanf(routes, " %64[^/]/%d %n", address, &prefix, &chars) == 2) {
215 routes += chars;
272 } else if (*routes) {
273 ALOGE("Invalid route: %s", routes);
382 const char *routes = NULL; local
390 routes = jRoutes ? env->GetStringUTFChars(jRoutes, NULL) : NULL;
391 if (!routes) {
392 jniThrowNullPointerException(env, "routes");
395 count = set_routes(name, routes);
    [all...]
  /frameworks/support/v7/mediarouter/src/android/support/v7/app/
MediaRouteChooserDialog.java 69 * Gets the media route selector for filtering the routes that the user can select.
78 * Sets the media route selector for filtering the routes that the user can select.
103 * The default implementation returns true for non-default routes that
104 * match the selector. Subclasses can override this method to filter routes
154 * Refreshes the list of routes that are shown in the chooser dialog.
173 final List<MediaRouter.RouteInfo> routes = mRouter.getRoutes(); local
174 final int count = routes.size();
176 MediaRouter.RouteInfo route = routes.get(i);
  /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/base/core/java/android/net/
LinkProperties.java 183 * Returns all the routes on this link.
190 * Returns all the routes on this link and all the links stacked above it.
193 Collection<RouteInfo> routes = new ArrayList(); local
194 routes.addAll(mRoutes);
196 routes.addAll(stacked.getAllRoutes());
198 return routes;
280 String routes = " Routes: ["; local
281 for (RouteInfo route : mRoutes) routes += route.toString() + ",";
282 routes += "] "
    [all...]
  /frameworks/base/core/java/com/android/internal/app/
MediaRouteChooserDialogFragment.java 247 List<RouteInfo> routes; local
251 routes = cat.getRoutes(mCatRouteList);
258 addGroupEditingCategoryRoutes(routes);
260 addSelectableRoutes(selectedRoute, routes);
263 routes.clear();
  /frameworks/support/v7/mediarouter/src/android/support/v7/media/
RegisteredMediaRouteProvider.java 67 List<MediaRouteDescriptor> routes = descriptor.getRoutes(); local
68 final int count = routes.size();
70 final MediaRouteDescriptor route = routes.get(i);
143 // This means that one of this provider's routes is selected.
  /external/ppp/pppd/
sys-solaris.c 2646 mib2_ipRouteEntry_t routes[8]; local
    [all...]
  /frameworks/base/services/java/com/android/server/
NetworkManagementService.java 692 ArrayList<RouteInfo> routes = new ArrayList<RouteInfo>(); local
694 // v4 routes listed as:
721 routes.add(route);
730 // v6 routes listed as:
753 routes.add(route);
761 return routes.toArray(new RouteInfo[routes.size()]);
    [all...]

Completed in 1000 milliseconds

1 2