HomeSort by relevance Sort by last modified time
    Searched refs:routes (Results 1 - 25 of 62) 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) {
  /frameworks/support/v7/mediarouter/src/android/support/v7/media/
MediaRouteProviderDescriptor.java 28 * Describes the state of a media route provider and the routes that it publishes.
34 private static final String KEY_ROUTES = "routes";
40 List<MediaRouteDescriptor> routes) {
42 mRoutes = routes;
46 * Gets the list of all routes that this provider has published.
69 * Returns true if the route provider descriptor and all of the routes that
73 * valid then it is not necessary to call {@link #isValid} on each of its routes.
92 result.append("routes=").append(
167 * Adds a list of routes.
169 public Builder addRoutes(Collection<MediaRouteDescriptor> routes) {
    [all...]
  /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/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);
  /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");
  /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...]
  /external/webkit/Tools/QueueStatusServer/
main.py 55 routes = [ variable
74 application = webapp.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);
  /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);
  /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...]

Completed in 657 milliseconds

1 2 3