/external/chromium/chrome/browser/sync/ |
js_backend.h | 21 // 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).
|
test_profile_sync_service.h | 62 virtual void SetParentJsEventRouter(JsEventRouter* router);
|
test_profile_sync_service.cc | 107 JsEventRouter* router) { 108 core_->SetParentJsEventRouter(router);
|
/hardware/msm7k/librpc/ |
ops.c | 14 int r_open(const char *router) 16 int handle = open(router, O_RDWR, 0); 19 E("error opening %s: %s\n", router, strerror(errno));
|
svc_clnt_common.c | 6 extern int r_open(const char *router); 44 * NOTE: This comment assumes that the only way we talk to the RPC router 48 * NOTE: The RPC router driver will soon be able to open a separate device 279 xdr_s_type *xdr_init_common(const char *router, int is_client) 285 xdr->fd = r_open(router); 287 E("ERROR OPENING [%s]: %s\n", router, strerror(errno)); 293 D("OPENED [%s] fd %d\n", router, xdr->fd);
|
/external/iproute2/examples/ |
dhcp-client-script | 172 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/ |
ipxcp.c | 149 { "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) != RIP_SAP [all...] |
ipxcp.h | 55 /* 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
|
/bionic/libc/kernel/common/linux/ |
icmpv6.h | 39 router:1, member in struct:icmp6hdr::__anon262::icmpv6_nd_advt 42 __u32 router:1, 80 #define icmp6_router icmp6_dataun.u_nd_advt.router
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
icmpv6.h | 28 router:1, member in struct:icmp6hdr::__anon20806::icmpv6_nd_advt 31 __u32 router:1, 67 #define icmp6_router icmp6_dataun.u_nd_advt.router
|
tipc_config.h | 251 __u32 router;
|
/external/kernel-headers/original/linux/ |
icmpv6.h | 29 router:1, member in struct:icmp6hdr::__anon6945::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/ |
SIPTransactionStack.java | 75 import javax.sip.address.Router; 187 * Internal router. Use this for all sip: request routing. 237 * Router to determine where to forward the request. 239 protected javax.sip.address.Router router; field in class:SIPTransactionStack 263 * Use the user supplied router for all out of dialog requests. [all...] |
/external/chromium/chrome/browser/extensions/ |
extension_bookmark_manager_api.cc | 413 ExtensionBookmarkManagerEventRouter* router = local 416 DCHECK(router); 417 const BookmarkNodeData* drag_data = router->GetBookmarkNodeData(); 426 router->ClearBookmarkNodeData();
|
extension_preference_api.cc | 253 ExtensionEventRouter* router = profile_->GetExtensionEventRouter(); local 254 if (!router || !router->HasEventListener(event_name)) 261 if (router->ExtensionHasEventListener(extension_id, event_name) &&
|
/prebuilt/common/netbeans-visual/ |
org-netbeans-api-visual.jar | |
/external/dnsmasq/src/ |
dhcp.c | 362 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)
|
rfc2131.c | 913 if (context->router.s_addr == config->addr.s_addr) [all...] |
dnsmasq.h | 543 struct in_addr local, router; member in struct:dhcp_context
|
/external/iproute2/doc/ |
ip-cref.tex | [all...] |
ip-tunnels.tex | 50 to tunnel net 10.0.0.0 via router 193.233.7.65. It does not
|
/external/nist-sip/java/gov/nist/javax/sip/ |
SipStackImpl.java | 67 import javax.sip.address.Router; 613 // 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); local 636 super.setRouter(router); 640 "could not instantiate router -- invocation target problem", 643 "Cound not instantiate router - check constructor", ex1) [all...] |
/external/chromium/chrome/browser/sync/glue/ |
sync_backend_host.h | 291 virtual void SetParentJsEventRouter(JsEventRouter* router);
|
sync_backend_host.cc | [all...] |
/external/chromium/chrome/browser/sync/engine/ |
syncapi.cc | [all...] |