/external/chromium_org/third_party/WebKit/Tools/TestResultServer/ |
main.py | 35 routes = [ variable 45 app = webapp2.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...] |
/external/chromium_org/chrome/browser/sync/test/integration/ |
two_client_passwords_sync_test.cc | 248 syncer::ModelSafeRoutingInfo routes; local 249 GetClient(0)->service()->GetModelSafeRoutingInfo(&routes); 250 ASSERT_EQ(syncer::GROUP_PASSWORD, routes[syncer::PASSWORDS]); 251 routes.clear(); 252 GetClient(1)->service()->GetModelSafeRoutingInfo(&routes); 253 ASSERT_EQ(syncer::GROUP_PASSWORD, routes[syncer::PASSWORDS]);
|
/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/chromium_org/third_party/WebKit/Tools/RebaselineLogServer/ |
main.py | 137 routes = [ variable 143 app = webapp2.WSGIApplication(routes, debug=True)
|
/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 */
|
/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...] |
/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 | 67 public List<RouteInfo> routes = new ArrayList<RouteInfo>(); field in class:VpnConfig 78 String[] routes = routesStr.trim().split(" "); local 79 for (String route : routes) { 84 this.routes.add(info); 114 out.writeTypedList(routes); 132 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);
|
/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); 373 const char *routes = NULL; local 381 routes = jRoutes ? env->GetStringUTFChars(jRoutes, NULL) : NULL; 382 if (!routes) { 383 jniThrowNullPointerException(env, "routes"); 386 count = set_routes(name, routes); [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 | 458 std::vector<std::string> routes; local 461 if (reader.PopArrayOfStrings(&routes)) { 462 callback.Run(true, routes); 465 callback.Run(false, routes); 468 callback.Run(false, routes);
|
/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 enabled 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/chromium_org/sync/engine/ |
sync_scheduler_unittest.cc | 89 ModelSafeRoutingInfo routes; local 91 routes[iter.Get()] = GROUP_PASSIVE; 93 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/base/core/java/android/net/ |
LinkProperties.java | 256 * Returns all the routes on this link. 263 * Returns all the routes on this link and all the links stacked above it. 266 Collection<RouteInfo> routes = new ArrayList(); local 267 routes.addAll(mRoutes); 269 routes.addAll(stacked.getAllRoutes()); 271 return routes; 362 String routes = " Routes: ["; local 363 for (RouteInfo route : mRoutes) routes += route.toString() + ","; 364 routes += "] " [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.
|