Searched defs:routes (Results 1 - 23 of 23) sorted by relevance

/external/webkit/Tools/TestResultServer/
H A Dmain.py40 routes = [ variable
51 application = webapp.WSGIApplication(routes, debug=True)
/external/chromium/chrome/browser/sync/engine/
H A Dmock_model_safe_workers.cc20 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;
53 MockModelSafeWorkerRegistrar( const ModelSafeRoutingInfo& routes) argument
H A Dmodel_safe_worker.cc10 const ModelSafeRoutingInfo& routes) {
11 ModelSafeRoutingInfo::const_iterator it = routes.find(type);
12 if (it == routes.end()) {
9 GetGroupForModelType(const syncable::ModelType type, const ModelSafeRoutingInfo& routes) argument
H A Dupdate_applicator.cc23 const ModelSafeRoutingInfo& routes,
32 routing_info_(routes) {
19 UpdateApplicator(ConflictResolver* resolver, Cryptographer* cryptographer, const UpdateIterator& begin, const UpdateIterator& end, const ModelSafeRoutingInfo& routes, ModelSafeGroup group_filter) argument
H A Dverify_updates_command.cc79 const ModelSafeRoutingInfo& routes) {
104 result.placement = GetGroupForModelType(placement_type, routes);
77 VerifyUpdate( syncable::WriteTransaction* trans, const SyncEntity& entry, const ModelSafeRoutingInfo& routes) argument
H A Dget_commit_ids_command.cc52 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);
49 AddUncommittedParentsAndTheirPredecessors( syncable::BaseTransaction* trans, syncable::Id parent_id, const ModelSafeRoutingInfo& routes) argument
111 AddPredecessorsThenItem( syncable::BaseTransaction* trans, syncable::Entry* item, syncable::IndexedBitField inclusion_filter, const ModelSafeRoutingInfo& routes) argument
127 AddCreatesAndMoves( const vector<int64>& unsynced_handles, syncable::WriteTransaction* write_transaction, const ModelSafeRoutingInfo& routes) argument
238 BuildCommitIds(const vector<int64>& unsynced_handles, syncable::WriteTransaction* write_transaction, const ModelSafeRoutingInfo& routes) argument
[all...]
H A Dbuild_and_process_conflict_sets_command.cc63 const ModelSafeRoutingInfo& routes) {
85 cryptographer, routes, status)) {
152 const ModelSafeRoutingInfo& routes,
200 routes, status->group_restriction());
60 ProcessSingleDirectionConflictSets( syncable::WriteTransaction* trans, ConflictResolver* resolver, Cryptographer* cryptographer, StatusController* status, const ModelSafeRoutingInfo& routes) argument
147 ApplyUpdatesTransactionally( syncable::WriteTransaction* trans, const vector<syncable::Id>* const update_set, ConflictResolver* resolver, Cryptographer* cryptographer, const ModelSafeRoutingInfo& routes, StatusController* status) argument
H A Dsyncapi_unittest.cc681 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) {
H A Dsyncer_thread.cc408 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));
407 GetModelSafeParamsForTypes(const ModelTypeBitSet& types, ModelSafeWorkerRegistrar* registrar, ModelSafeRoutingInfo* routes, std::vector<ModelSafeWorker*>* workers) argument
H A Dsyncer_unittest.cc352 ModelSafeRoutingInfo routes; local
353 GetModelSafeRoutingInfo(&routes);
356 session_->write_transaction(), routes);
H A Dsyncapi.cc1916 ModelSafeRoutingInfo routes; local
1917 registrar_->GetModelSafeRoutingInfo(&routes);
1919 for (ModelSafeRoutingInfo::const_iterator it = routes.begin();
1920 it != routes.end(); ++it) {
2100 ModelSafeRoutingInfo routes; local
2101 registrar_->GetModelSafeRoutingInfo(&routes);
2105 if (*iter == syncable::PASSWORDS || routes.count(*iter) == 0)
2139 if (routes.count(syncable::PASSWORDS) > 0) {
/external/chromium/chrome/browser/sync/syncable/
H A Dmodel_type_payload_map.cc25 const browser_sync::ModelSafeRoutingInfo& routes,
28 for (browser_sync::ModelSafeRoutingInfo::const_iterator i = routes.begin();
29 i != routes.end(); ++i) {
24 ModelTypePayloadMapFromRoutingInfo( const browser_sync::ModelSafeRoutingInfo& routes, const std::string& payload) argument
/external/chromium/chrome/browser/sync/sessions/
H A Dordered_commit_set.cc15 const browser_sync::ModelSafeRoutingInfo& routes)
16 : routes_(routes) {
14 OrderedCommitSet( const browser_sync::ModelSafeRoutingInfo& routes) argument
H A Dstatus_controller.cc16 StatusController::StatusController(const ModelSafeRoutingInfo& routes) argument
22 routing_info_(routes) {
/external/webkit/Tools/QueueStatusServer/
H A Dmain.py55 routes = [ variable
74 application = webapp.WSGIApplication(routes, debug=True)
/external/libppp/src/
H A Darp.c102 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);
H A Dradius.h55 struct sticky_route *routes; /* FRAMED Routes */ member in struct:radius
/external/chromium/chrome/browser/sync/
H A Dsync_ui_util.cc409 browser_sync::ModelSafeRoutingInfo routes; local
410 service->GetModelSafeRoutingInfo(&routes);
413 browser_sync::ModelSafeRoutingInfo::const_iterator it = routes.begin();
414 for (; it != routes.end(); ++it) {
/external/dhcpcd/
H A Dconfigure.c65 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
[all...]
H A Dif-options.h98 struct rt *routes; member in struct:if_options
H A Dnet.c597 free_routes(struct rt *routes) argument
601 while (routes) {
602 r = routes->next;
603 free(routes);
604 routes = r;
H A Ddhcp.c73 * 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 local
[all...]
/external/ppp/pppd/
H A Dsys-solaris.c2012 * cifaddr - Clear the interface IP addresses, and delete routes
2622 * For demand mode to work properly, we have to ignore routes
2646 mib2_ipRouteEntry_t routes[8]; local
2676 dbuf.buf = (char *) routes;
2677 dbuf.maxlen = sizeof(routes);
2707 for (rp = routes, i = 0; i < nroutes; ++i, ++rp) {

Completed in 389 milliseconds