Home
last modified time | relevance | path

Searched refs:routes (Results 1 – 25 of 52) sorted by relevance

123

/external/chromium/chrome/browser/sync/engine/
Dmock_model_safe_workers.cc20 ModelSafeRoutingInfo routes; in PassiveBookmarks() local
21 routes[syncable::BOOKMARKS] = GROUP_PASSIVE; in PassiveBookmarks()
22 MockModelSafeWorkerRegistrar* m = new MockModelSafeWorkerRegistrar(routes); in PassiveBookmarks()
29 ModelSafeRoutingInfo routes; in PassiveForTypes() local
33 routes[type] = GROUP_PASSIVE; in PassiveForTypes()
36 MockModelSafeWorkerRegistrar* m = new MockModelSafeWorkerRegistrar(routes); in PassiveForTypes()
54 const ModelSafeRoutingInfo& routes) { in MockModelSafeWorkerRegistrar() argument
55 routes_ = routes; in MockModelSafeWorkerRegistrar()
Dget_commit_ids_command.cc52 const ModelSafeRoutingInfo& routes) { in AddUncommittedParentsAndTheirPredecessors() argument
54 OrderedCommitSet item_dependencies(routes); in AddUncommittedParentsAndTheirPredecessors()
115 const ModelSafeRoutingInfo& routes) { in AddPredecessorsThenItem() argument
116 OrderedCommitSet item_dependencies(routes); in AddPredecessorsThenItem()
130 const ModelSafeRoutingInfo& routes) { in AddCreatesAndMoves() argument
143 entry.Get(syncable::PARENT_ID), routes); in AddCreatesAndMoves()
145 syncable::IS_UNSYNCED, routes); in AddCreatesAndMoves()
240 const ModelSafeRoutingInfo& routes) { in BuildCommitIds() argument
241 ordered_commit_set_.reset(new OrderedCommitSet(routes)); in BuildCommitIds()
252 AddCreatesAndMoves(unsynced_handles, write_transaction, routes); in BuildCommitIds()
Dmodel_safe_worker.cc10 const ModelSafeRoutingInfo& routes) { in GetGroupForModelType() argument
11 ModelSafeRoutingInfo::const_iterator it = routes.find(type); in GetGroupForModelType()
12 if (it == routes.end()) { in GetGroupForModelType()
Dget_commit_ids_command.h35 const ModelSafeRoutingInfo& routes);
113 const ModelSafeRoutingInfo& routes);
126 const ModelSafeRoutingInfo& routes);
132 const ModelSafeRoutingInfo& routes);
Dbuild_and_process_conflict_sets_command.h47 const ModelSafeRoutingInfo& routes);
53 const ModelSafeRoutingInfo& routes,
Dupdate_applicator.cc23 const ModelSafeRoutingInfo& routes, in UpdateApplicator() argument
32 routing_info_(routes) { in UpdateApplicator()
Dverify_updates_command.cc79 const ModelSafeRoutingInfo& routes) { in VerifyUpdate() argument
104 result.placement = GetGroupForModelType(placement_type, routes); in VerifyUpdate()
Dsyncer_thread.cc408 ModelSafeWorkerRegistrar* registrar, ModelSafeRoutingInfo* routes, in GetModelSafeParamsForTypes() argument
423 (*routes)[t] = r_tmp[t]; in GetModelSafeParamsForTypes()
457 ModelSafeRoutingInfo routes; in ScheduleConfig() local
460 &routes, &workers); in ScheduleConfig()
463 this, &SyncerThread::ScheduleConfigImpl, routes, workers, in ScheduleConfig()
795 ModelSafeRoutingInfo routes; in CreateSyncSession() local
797 session_context_->registrar()->GetModelSafeRoutingInfo(&routes); in CreateSyncSession()
802 routes, workers)); in CreateSyncSession()
Dverify_updates_command.h39 const ModelSafeRoutingInfo& routes);
Dbuild_and_process_conflict_sets_command.cc63 const ModelSafeRoutingInfo& routes) { in ProcessSingleDirectionConflictSets() argument
85 cryptographer, routes, status)) { in ProcessSingleDirectionConflictSets()
152 const ModelSafeRoutingInfo& routes, in ApplyUpdatesTransactionally() argument
200 routes, status->group_restriction()); in ApplyUpdatesTransactionally()
Dmock_model_safe_workers.h39 explicit MockModelSafeWorkerRegistrar(const ModelSafeRoutingInfo& routes);
/external/nist-sip/java/gov/nist/javax/sip/stack/
DDefaultRouter.java173 RouteList routes = sipRequest.getRouteHeaders(); in getNextHop() local
192 if (routes != null) { in getNextHop()
196 Route route = (Route) routes.getFirst(); in getNextHop()
264 RouteList routes = req.getRouteHeaders(); in fixStrictRouting() local
265 Route first = (Route) routes.getFirst(); in fixStrictRouting()
267 routes.removeFirst(); in fixStrictRouting()
274 routes.add(route); // as last one in fixStrictRouting()
/external/libppp/src/
Darp.c102 int routes; in arp_ProxySub() local
115 routes = ID0socket(PF_ROUTE, SOCK_RAW, AF_INET); in arp_ProxySub()
116 if (routes < 0) { in arp_ProxySub()
136 if (ID0write(routes, &arpmsg, arpmsg.hdr.rtm_msglen) < 0 && in arp_ProxySub()
140 close(routes); in arp_ProxySub()
143 close(routes); in arp_ProxySub()
/external/chromium/chrome/browser/sync/syncable/
Dmodel_type_payload_map.cc25 const browser_sync::ModelSafeRoutingInfo& routes, in ModelTypePayloadMapFromRoutingInfo() argument
28 for (browser_sync::ModelSafeRoutingInfo::const_iterator i = routes.begin(); in ModelTypePayloadMapFromRoutingInfo()
29 i != routes.end(); ++i) { in ModelTypePayloadMapFromRoutingInfo()
Dmodel_type_payload_map.h36 const browser_sync::ModelSafeRoutingInfo& routes,
/external/webkit/Tools/TestResultServer/
Dmain.py40 routes = [ variable
51 application = webapp.WSGIApplication(routes, debug=True)
/external/webkit/Tools/QueueStatusServer/
Dmain.py55 routes = [ variable
74 application = webapp.WSGIApplication(routes, debug=True)
/external/dhcpcd/
Dconfigure.c65 static struct rt *routes; variable
466 f = find_route(routes, rt, &l, NULL); in route_deleted()
473 routes = f->next; in route_deleted()
583 if (iface->state->options->routes != NULL) { in get_routes()
584 for (rt = iface->state->options->routes; in get_routes()
713 if ((or = find_route(routes, rt, &rtl, NULL))) { in build_routes()
725 routes = or->next; in build_routes()
743 for (rt = routes; rt; rt = rt->next) { in build_routes()
748 free_routes(routes); in build_routes()
749 routes = nrs; in build_routes()
[all …]
Ddhcp.c559 struct rt *routes = NULL; in decode_rfc3442_rt() local
570 free_routes(routes); in decode_rfc3442_rt()
579 routes = rt = xzalloc(sizeof(*routes)); in decode_rfc3442_rt()
595 return routes; in decode_rfc3442_rt()
783 struct rt *routes = NULL; in get_option_routes() local
793 routes = decode_rfc3442_rt(len, p); in get_option_routes()
794 if (routes) { in get_option_routes()
801 return routes; in get_option_routes()
814 routes = route = xmalloc(sizeof(*routes)); in get_option_routes()
833 routes = route = xzalloc(sizeof(*route)); in get_option_routes()
[all …]
Dif-options.c656 if (ifo->routes == NULL) { in parse_option()
657 rt = ifo->routes = xmalloc(sizeof(*rt)); in parse_option()
659 rt = ifo->routes; in parse_option()
670 if (ifo->routes == NULL) { in parse_option()
671 rt = ifo->routes = xzalloc(sizeof(*rt)); in parse_option()
673 rt = ifo->routes; in parse_option()
925 free_routes(ifo->routes); in free_options()
Dnet.c597 free_routes(struct rt *routes) in free_routes() argument
601 while (routes) { in free_routes()
602 r = routes->next; in free_routes()
603 free(routes); in free_routes()
604 routes = r; in free_routes()
/external/chromium/chrome/browser/sync/sessions/
Dordered_commit_set.cc15 const browser_sync::ModelSafeRoutingInfo& routes) in OrderedCommitSet() argument
16 : routes_(routes) { in OrderedCommitSet()
Dstatus_controller.cc16 StatusController::StatusController(const ModelSafeRoutingInfo& routes) in StatusController() argument
22 routing_info_(routes) { in StatusController()
/external/iproute2/doc/
Dip-cref.tex1087 If several routes match the packet, the following pruning rules
1094 of the packet, the routes with different TOS are dropped.
1096 If no exact TOS match was found and routes with TOS=0 exist,
1097 the rest of routes are pruned.
1101 \item If several routes remain after the previous steps, then
1102 the routes with the best preference values are selected.
1104 \item If we still have several routes, then the {\em first\/} of them
1111 impossible to maintain a bundle of such routes in this order.
1115 is impossible and routes are uniquely identified by the triplet
1117 non-unique routes with \verb|ip| commands described in this section.
[all …]
/external/chromium/chrome/browser/sync/
Dsync_ui_util.cc409 browser_sync::ModelSafeRoutingInfo routes; in ConstructAboutInformation() local
410 service->GetModelSafeRoutingInfo(&routes); in ConstructAboutInformation()
413 browser_sync::ModelSafeRoutingInfo::const_iterator it = routes.begin(); in ConstructAboutInformation()
414 for (; it != routes.end(); ++it) { in ConstructAboutInformation()

123