HomeSort by relevance Sort by last modified time
    Searched refs:Router (Results 1 - 25 of 31) sorted by null

1 2

  /external/nist-sip/java/gov/nist/javax/sip/address/
RouterExt.java 29 import javax.sip.address.Router;
34 public interface RouterExt extends Router {
  /external/chromium_org/mojo/public/cpp/bindings/lib/
router.cc 5 #include "mojo/public/cpp/bindings/lib/router.h"
16 explicit ResponderThunk(const SharedData<Router*>& router)
17 : router_(router) {
28 Router* router = router_.value(); variable
29 if (router)
30 result = router->Accept(message);
36 SharedData<Router*> router_;
41 Router::HandleIncomingMessageThunk::HandleIncomingMessageThunk(Router* router
    [all...]
router.h 18 class Router : public MessageReceiverWithResponder {
20 Router(ScopedMessagePipeHandle message_pipe,
23 virtual ~Router();
72 HandleIncomingMessageThunk(Router* router);
79 Router* router_;
87 SharedData<Router*> weak_self_;
interface_impl_internal.h 75 router_ = new Router(handle.Pass(), filters.Pass(), waiter);
91 Router* router() { return router_; } function in class:mojo::internal::InterfaceImplState
114 Router* router_;
interface_ptr_internal.h 12 #include "mojo/public/cpp/bindings/lib/router.h"
94 Router* router_for_testing() {
127 router_ = new Router(handle_.Pass(), filters.Pass(), waiter_);
137 Router* router_;
  /external/chromium_org/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
Router.java 10 * A {@link Router} will handle mojo message and forward those to a {@link Connector}. It deals with
14 public interface Router extends MessageReceiverWithResponder, HandleOwner<MessagePipeHandle> {
AutoCloseableRouter.java 13 * Wrapper around {@link Router} that will close the connection when not referenced anymore.
15 class AutoCloseableRouter implements Router {
18 * The underlying router.
20 private final Router mRouter;
23 * The executor to close the underlying router.
28 * Flags to keep track if this router has been correctly closed.
35 public AutoCloseableRouter(Core core, Router router) {
36 mRouter = router;
41 * @see Router#setIncomingMessageReceiver(MessageReceiverWithResponder
    [all...]
InterfaceWithClient.java 67 Router router = new RouterImpl(handle); local
68 super.bind(handle.getCore(), impl, router); local
70 CI client = (CI) getClientManager().attachProxy(handle.getCore(), router);
72 router.start();
81 Router router = new RouterImpl(handle); local
84 router.setErrorHandler(handlers);
85 getClientManager().bind(handle.getCore(), client, router); local
86 P proxy = super.attachProxy(handle.getCore(), router);
    [all...]
Interface.java 186 // The router (and by consequence the handle) is intentionally leaked. It will close
189 Router router = new RouterImpl(handle); local
190 bind(handle.getCore(), impl, router); local
191 router.start();
206 RouterImpl router = new RouterImpl(handle); local
207 P proxy = attachProxy(handle.getCore(), router);
210 router.setErrorHandler(handlers);
211 router.start();
227 * Binds the implementation to the given |router|
    [all...]
RouterImpl.java 14 * Implementation of {@link Router}.
16 public class RouterImpl implements Router {
84 * @see org.chromium.mojo.bindings.Router#start()
92 * @see Router#setIncomingMessageReceiver(MessageReceiverWithResponder)
153 * @see Router#setErrorHandler(ConnectionErrorHandler)
  /external/nist-sip/java/javax/sip/address/
Router.java 7 public interface Router {
  /external/nist-sip/java/javax/sip/
SipStack.java 5 import javax.sip.address.Router;
27 Router getRouter();
  /external/chromium_org/mojo/public/cpp/bindings/tests/
router_unittest.cc 10 #include "mojo/public/cpp/bindings/lib/router.h"
132 internal::Router router0(handle0_.Pass(), internal::FilterChain());
133 internal::Router router1(handle1_.Pass(), internal::FilterChain());
156 internal::Router router0(handle0_.Pass(), internal::FilterChain());
157 internal::Router router1(handle1_.Pass(), internal::FilterChain());
181 internal::Router router0(handle0_.Pass(), internal::FilterChain());
182 internal::Router router1(handle1_.Pass(), internal::FilterChain());
203 // after the router has gone away.
207 internal::Router router0(handle0_.Pass(), internal::FilterChain());
208 internal::Router router1(handle1_.Pass(), internal::FilterChain())
    [all...]
  /external/chromium_org/extensions/renderer/
object_backed_native_handler.h 52 static void Router(const v8::FunctionCallbackInfo<v8::Value>& args);
55 // need when handling it in Router() - this is the base::Bound function to
object_backed_native_handler.cc 34 void ObjectBackedNativeHandler::Router(
65 v8::FunctionTemplate::New(isolate, Router, data);
  /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_org/mojo/android/javatests/src/org/chromium/mojo/bindings/
RouterTest.java 23 * Testing {@link Router}
30 private Router mRouter;
52 * Testing sending a message via the router that expected a response.
95 * Testing receiving a message via the router that expected a response.
  /external/nist-sip/java/gov/nist/javax/sip/stack/
DefaultRouter.java 58 * This is the default router. When the implementation wants to forward a
60 * out where to send the request. The default router implements a simple
75 * SIP URI, call {@link javax.sip.address.Router#getNextHop(Request)} provided
81 * (which means the next hop is a strict router), the implementation will
99 public class DefaultRouter implements Router {
177 * means the next hop is a strict router), the implementation will
248 // The internal router should never be consulted for non-sip URIs.
257 * Performs strict router fix according to RFC3261 section 16.6 step 6
333 * @see javax.sip.address.Router#getNextHop(javax.sip.message.Request)
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_org/mojo/python/tests/
messaging_unittest.py 150 self.router = messaging.Router(handles.handle1)
151 self.router.SetIncomingMessageReceiver(
153 self.router.SetErrorHandler(
155 self.router.Start()
159 self.router = None
166 self.router.Accept(message)
189 self.router.AcceptWithResponder(message,
  /external/chromium_org/mojo/public/python/mojo/bindings/
messaging.py 272 class Router(MessageReceiverWithResponder):
274 A Router will handle mojo message and forward those to a Connector. It deals
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
routprot.h 24 #error Router version not defined
  /external/chromium_org/mojo/services/view_manager/
view_manager_unittest.cc 22 #include "mojo/public/cpp/bindings/lib/router.h"
228 void set_router(mojo::internal::Router* router) { router_ = router; }
300 mojo::internal::Router* router_;
323 connection_.set_router(internal_state()->router());
    [all...]
  /external/mdnsresponder/mDNSCore/
uDNS.c 423 // send msg if we have a router and it is a private address
424 if (!mDNSIPv4AddressIsZero(m->Router.ip.v4) && mDNSv4AddrIsRFC1918(&m->Router.ip.v4))
443 err = mDNSPlatformSendUDP(m, (mDNSu8 *)&u, end, 0, mDNSNULL, &m->Router, NATPMPPort);
    [all...]
  /external/ppp/pppd/plugins/radius/etc/
dictionary.ascend 174 VALUE Ascend-IPX-Peer-Mode IPX-Peer-Router 0

Completed in 475 milliseconds

1 2