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

1 2 3

  /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;
model_safe_worker.cc 10 const ModelSafeRoutingInfo& routes) {
11 ModelSafeRoutingInfo::const_iterator it = routes.find(type);
12 if (it == routes.end()) {
verify_updates_command.h 39 const ModelSafeRoutingInfo& routes);
get_commit_ids_command.cc 52 const ModelSafeRoutingInfo& routes) {
54 OrderedCommitSet item_dependencies(routes);
115 const ModelSafeRoutingInfo& routes) {
116 OrderedCommitSet item_dependencies(routes);
130 const ModelSafeRoutingInfo& routes) {
143 entry.Get(syncable::PARENT_ID), routes);
145 syncable::IS_UNSYNCED, routes);
240 const ModelSafeRoutingInfo& routes) {
241 ordered_commit_set_.reset(new OrderedCommitSet(routes));
252 AddCreatesAndMoves(unsynced_handles, write_transaction, routes);
    [all...]
get_commit_ids_command.h 35 const ModelSafeRoutingInfo& routes);
113 const ModelSafeRoutingInfo& routes);
126 const ModelSafeRoutingInfo& routes);
132 const ModelSafeRoutingInfo& routes);
mock_model_safe_workers.h 39 explicit MockModelSafeWorkerRegistrar(const ModelSafeRoutingInfo& routes);
build_and_process_conflict_sets_command.h 47 const ModelSafeRoutingInfo& routes);
53 const ModelSafeRoutingInfo& routes,
model_safe_worker.h 73 const ModelSafeRoutingInfo& routes);
update_applicator.h 41 const ModelSafeRoutingInfo& routes,
update_applicator.cc 23 const ModelSafeRoutingInfo& routes,
32 routing_info_(routes) {
verify_updates_command.cc 79 const ModelSafeRoutingInfo& routes) {
104 result.placement = GetGroupForModelType(placement_type, routes);
  /external/webkit/Tools/TestResultServer/
main.py 40 routes = [ variable
51 application = webapp.WSGIApplication(routes, debug=True)
  /external/chromium/chrome/browser/sync/syncable/
model_type_payload_map.h 36 const browser_sync::ModelSafeRoutingInfo& routes,
model_type_payload_map.cc 25 const browser_sync::ModelSafeRoutingInfo& routes,
28 for (browser_sync::ModelSafeRoutingInfo::const_iterator i = routes.begin();
29 i != routes.end(); ++i) {
  /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/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");
  /frameworks/base/core/java/com/android/internal/net/
VpnConfig.java 60 public String routes; field in class:VpnConfig
78 out.writeString(routes);
95 config.routes = in.readString();
  /packages/apps/Settings/src/com/android/settings/vpn2/
VpnProfile.java 47 String routes = ""; // 7 field in class:VpnProfile
86 profile.routes = values[7];
111 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 LOGE("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...]
  /external/webkit/Tools/QueueStatusServer/
main.py 55 routes = [ variable
74 application = webapp.WSGIApplication(routes, debug=True)
  /external/chromium/chrome/browser/sync/sessions/
ordered_commit_set.cc 15 const browser_sync::ModelSafeRoutingInfo& routes)
16 : routes_(routes) {
ordered_commit_set.h 33 explicit OrderedCommitSet(const browser_sync::ModelSafeRoutingInfo& routes);
  /external/dhcpcd/
if-options.h 96 struct rt *routes; member in struct:if_options
dhcp.c 72 * routes. For completeness, we also specify static routes,
557 struct rt *routes = NULL; local
568 free_routes(routes);
577 routes = rt = xzalloc(sizeof(*routes));
593 return routes;
675 /* This calculates the netmask that we should use for static routes.
706 * Otherwise we add static routes and then routers. */
713 struct rt *routes = NULL local
    [all...]
  /frameworks/base/core/java/android/net/
LinkProperties.java 165 String routes = "Routes: ["; local
166 for (RouteInfo route : mRoutes) routes += route.toString() + ",";
167 routes += "] ";
170 return ifaceName + linkAddresses + routes + dns + proxy;
209 * Compares this {@code LinkProperties} Routes against the target
322 * Return two lists, a list of routes that would be removed from
323 * mRoutes and a list of routes that would be added to
327 * @param target is a LinkProperties with the new list of routes
333 * routes which are common between mDnses and targe
    [all...]

Completed in 534 milliseconds

1 2 3