/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
|
/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...] |
/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
|
option.c | 342 { "router", 3, OT_ADDR_LIST }, 360 { "router-discovery", 31, 1 }, 361 { "router-solicitation", 32, OT_ADDR_LIST }, [all...] |
/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...] |