Searched refs:router (Results 1 - 25 of 25) sorted by relevance

/external/chromium/chrome/browser/sync/
H A Djs_backend.h21 // Sets the JS event router to which all backend events will be
23 virtual void SetParentJsEventRouter(JsEventRouter* router) = 0;
25 // Removes any existing JS event router.
28 // Gets the crurent JS event router, or NULL if there is none. Used
33 // parent JS event router (if set).
H A Dtest_profile_sync_service.h62 virtual void SetParentJsEventRouter(JsEventRouter* router);
H A Dtest_profile_sync_service.cc107 JsEventRouter* router) {
108 core_->SetParentJsEventRouter(router);
106 SetParentJsEventRouter( JsEventRouter* router) argument
/external/iproute2/examples/
H A Ddhcp-client-script172 local router
176 for router in $1; do
177 LOG route add default gw $router
178 route add default gw $router
187 local router
192 for router in $1; do
193 LOG route del default gw $router
194 route del default gw $router
212 # returns: 0 if at least one router is alive.
215 local router
[all...]
/external/ppp/pppd/
H A Dipxcp.h55 /* Values for the router protocol */
67 bool neg_name; /* Negotiate IPX router name */
69 bool neg_router; /* Negotiate IPX router number */
84 u_char name [48]; /* name of the router */
85 int router; /* routing protocol */ member in struct:ipxcp_options
H A Dipxcp.c149 { "ipx-routing", o_int, &ipxcp_wantoptions[0].router,
153 { "ipx-router-name", o_special, setipxname,
154 "Set IPX router name", OPT_PRIO | OPT_A2STRVAL | OPT_STATIC,
212 #define CILEN_NAME 3 /* Minimum length of router name */
359 option_error("IPX router name must be alphanumeric or _");
364 option_error("IPX router name is limited to %d characters",
571 if (ao->router == 0) {
572 ao->router |= BIT(RIP_SAP);
573 wo->router |= BIT(RIP_SAP);
599 if (go->neg_router && to_external(go->router) !
[all...]
/external/kernel-headers/original/linux/
H A Dicmpv6.h29 router:1, member in struct:icmp6hdr::__anon6900::icmpv6_nd_advt
32 __u32 router:1,
70 #define icmp6_router icmp6_dataun.u_nd_advt.router
/external/nist-sip/java/gov/nist/javax/sip/stack/
H A DSIPTransactionStack.java187 * Internal router. Use this for all sip: request routing.
239 protected javax.sip.address.Router router; field in class:SIPTransactionStack
263 * Use the user supplied router for all out of dialog requests.
1780 // Use custom router to route all messages.
1781 if (router != null)
1782 return router.getNextHop(sipRequest);
1787 // router
1790 } else if (router != null) {
1791 return router.getNextHop(sipRequest);
1835 * Set the router algorith
1840 setRouter(Router router) argument
[all...]
/external/chromium/chrome/browser/extensions/
H A Dextension_bookmark_manager_api.cc413 ExtensionBookmarkManagerEventRouter* router = local
416 DCHECK(router);
417 const BookmarkNodeData* drag_data = router->GetBookmarkNodeData();
426 router->ClearBookmarkNodeData();
H A Dextension_preference_api.cc253 ExtensionEventRouter* router = profile_->GetExtensionEventRouter(); local
254 if (!router || !router->HasEventListener(event_name))
261 if (router->ExtensionHasEventListener(extension_id, event_name) &&
/external/dnsmasq/src/
H A Ddhcp.c362 3) Fills in local (this host) and router (this host or relay) addresses.
399 context->router = local;
415 context->router = param->relay;
440 if (taddr.s_addr == context->router.s_addr)
563 if (addr.s_addr == d->router.s_addr)
H A Drfc2131.c913 if (context->router.s_addr == config->addr.s_addr)
1057 if (context->router.s_addr == config->addr.s_addr)
2150 if (context->router.s_addr &&
2153 option_put(mess, end, OPTION_ROUTER, INADDRSZ, ntohl(context->router.s_addr));
H A Ddnsmasq.h543 struct in_addr local, router; member in struct:dhcp_context
H A Doption.c342 { "router", 3, OT_ADDR_LIST },
360 { "router-discovery", 31, 1 },
361 { "router-solicitation", 32, OT_ADDR_LIST },
1668 new->router.s_addr = 0;
/external/iproute2/doc/
H A Dip-cref.tex979 fe80::200:cff:fe76:3f85 dev eth0 lladdr 00:00:0c:76:3f:85 router \
1018 IPv6 neighbours can be marked with the additional flag \verb|router|
1019 which means that the neighbour introduced itself as an IPv6 router~\cite{RFC-NDISC}.
1124 from transport protocols to select a working router, so the order
1144 next hop router) and some optional attributes (f.e. the path MTU or
1258 --- the address of the nexthop router. Actually, the sense of this field depends
1260 router or, if it is a direct route installed in BSD compatibility mode,
1351 \item \verb|via ADDRESS| is the nexthop router.
1564 on a router:
1847 deliver) the packet to local IP listeners. In this case the router
[all...]
H A Dip-tunnels.tex50 to tunnel net 10.0.0.0 via router 193.233.7.65. It does not
/external/nist-sip/java/gov/nist/javax/sip/
H A DSipStackImpl.java613 // Default router -- use this for routing SIP URIs.
614 // Our router does not do DNS lookups.
620 /** Retrieve the router path */
635 Router router = (Router) cons.newInstance(args);
636 super.setRouter(router);
640 "could not instantiate router -- invocation target problem",
643 "Cound not instantiate router - check constructor", ex1);
645 getStackLogger().logError("could not instantiate router",
647 throw new PeerUnavailableException("Could not instantiate router",
651 // The flag that indicates that the default router i
[all...]
/external/chromium/chrome/browser/sync/glue/
H A Dsync_backend_host.h291 virtual void SetParentJsEventRouter(JsEventRouter* router);
H A Dsync_backend_host.cc1092 void SyncBackendHost::Core::SetParentJsEventRouter(JsEventRouter* router) { argument
1094 DCHECK(router);
1095 parent_router_ = router;
/external/chromium/chrome/browser/sync/engine/
H A Dsyncapi.cc1390 virtual void SetParentJsEventRouter(browser_sync::JsEventRouter* router);
2570 browser_sync::JsEventRouter* router) {
2571 DCHECK(router);
2572 parent_router_ = router;
2588 VLOG(1) << "No parent router; not replying to message " << name
2569 SetParentJsEventRouter( browser_sync::JsEventRouter* router) argument
/external/mdnsresponder/mDNSCore/
H A DuDNS.c423 // send msg if we have a router and it is a private address
2168 // don't unlink or free - we can retry when we get a new address/router
2336 mDNSexport void mDNS_SetPrimaryInterfaceInfo(mDNS *m, const mDNSAddr *v4addr, const mDNSAddr *v6addr, const mDNSAddr *router) argument
2345 if (router && router->type != mDNSAddrType_IPv4) { LogMsg("mDNS_SetPrimaryInterfaceInfo passed non-v4 router. Discarding. %#a", router); return; }
2351 RouterChanged = !mDNSSameIPv4Address(m->Router.ip.v4, router ? router->ip.v4 : zerov4Addr);
2358 if (router)
[all...]
H A DmDNSEmbeddedAPI.h979 mDNSAddr Address; // router address
980 mDNSIPPort Port; // router port
981 mDNSu8 *Request; // xml request to router
983 mDNSu8 *Reply; // xml reply from router
1912 UDPSocket *NATMcastRecvskt; // For receiving NAT-PMP AddrReply multicasts from router on port 5350
1925 mDNSu8 *UPnPRouterURL; // router's URL string
1927 mDNSu8 *UPnPSOAPURL; // router's SOAP control URL string
1928 mDNSu8 *UPnPRouterAddressString; // holds both the router's address and port
2470 extern void mDNS_SetPrimaryInterfaceInfo(mDNS *m, const mDNSAddr *v4addr, const mDNSAddr *v6addr, const mDNSAddr *router);
2644 extern mStatus mDNSPlatformGetPrimaryInterface(mDNS *const m, mDNSAddr *v4, mDNSAddr *v6, mDNSAddr *router);
[all...]
/external/mdnsresponder/mDNSPosix/
H A DmDNSPosix.c454 mDNSexport mStatus mDNSPlatformGetPrimaryInterface(mDNS * const m, mDNSAddr * v4, mDNSAddr * v6, mDNSAddr * router) argument
459 (void) router;
/external/mdnsresponder/mDNSShared/
H A Ddnsextd.c3126 void mDNS_SetPrimaryInterfaceInfo(mDNS *m, const mDNSAddr *v4addr, const mDNSAddr *v6addr, const mDNSAddr *router) argument
3127 { ( void ) m; ( void ) v4addr; ( void ) v6addr; ( void ) router; }
/external/qemu-pc-bios/bochs/bios/
H A Drombios.c9690 db 0 ;; PCI interrupt router bus
9691 db 0x08 ;; PCI interrupt router DevFunc
9693 dw 0x8086 ;; compatible PCI interrupt router vendor ID
9694 dw 0x122e ;; compatible PCI interrupt router device ID
9914 cmp ax, [si+12] ;; check irq router
9918 push bx ;; save irq router bus + devfunc

Completed in 2632 milliseconds