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

12

/external/nist-sip/java/gov/nist/javax/sip/address/
H A DRouterExt.java29 import javax.sip.address.Router;
34 public interface RouterExt extends Router {
/external/chromium_org/mojo/public/cpp/bindings/lib/
H A Drouter.cc16 explicit ResponderThunk(const SharedData<Router*>& router)
28 Router* router = router_.value();
36 SharedData<Router*> router_;
41 Router::HandleIncomingMessageThunk::HandleIncomingMessageThunk(Router* router)
45 Router::HandleIncomingMessageThunk::~HandleIncomingMessageThunk() {
48 bool Router::HandleIncomingMessageThunk::Accept(Message* message) {
54 Router::Router(ScopedMessagePipeHandle message_pipe, function in class:mojo::internal::Router
68 Router
[all...]
H A Drouter.h18 class Router : public MessageReceiverWithResponder { class in namespace:mojo::internal
20 Router(ScopedMessagePipeHandle message_pipe,
23 virtual ~Router();
72 HandleIncomingMessageThunk(Router* router);
79 Router* router_;
87 SharedData<Router*> weak_self_;
H A Dinterface_impl_internal.h75 router_ = new Router(handle.Pass(), filters.Pass(), waiter);
91 Router* router() { return router_; }
114 Router* router_;
H A Dinterface_ptr_internal.h94 Router* router_for_testing() {
127 router_ = new Router(handle_.Pass(), filters.Pass(), waiter_);
137 Router* router_;
/external/chromium_org/mojo/public/js/bindings/
H A Drouter.js11 function Router(handle, connectorFactory) {
28 Router.prototype.close = function() {
33 Router.prototype.accept = function(message) {
37 Router.prototype.reject = function(message) {
41 Router.prototype.acceptWithResponder = function(message, responder) {
58 Router.prototype.setIncomingReceiver = function(receiver) {
62 Router.prototype.setPayloadValidators = function(payloadValidators) {
66 Router.prototype.encounteredError = function() {
70 Router.prototype.handleIncomingMessage_ = function(message) {
83 Router
[all...]
H A Dconnection.js13 routerFactory = router.Router;
/external/chromium_org/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
H A DRouter.java10 * 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> { interface in inherits:MessageReceiverWithResponder,HandleOwner
H A DAutoCloseableRouter.java13 * Wrapper around {@link Router} that will close the connection when not referenced anymore.
15 class AutoCloseableRouter implements Router {
20 private final Router mRouter;
35 public AutoCloseableRouter(Core core, Router router) {
41 * @see Router#setIncomingMessageReceiver(MessageReceiverWithResponder)
74 * @see Router#start()
82 * @see Router#setErrorHandler(ConnectionErrorHandler)
111 throw new IllegalStateException("Warning: Router objects should be explicitly closed " +
H A DInterfaceWithClient.java67 Router router = new RouterImpl(handle);
81 Router router = new RouterImpl(handle);
H A DInterface.java189 Router router = new RouterImpl(handle);
229 final void bind(Core core, I impl, Router router) {
237 final P attachProxy(Core core, Router router) {
H A DRouterImpl.java14 * 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/
H A DRouter.java7 public interface Router { interface
/external/nist-sip/java/javax/sip/
H A DSipStack.java5 import javax.sip.address.Router;
27 Router getRouter();
/external/chromium_org/mojo/public/cpp/bindings/tests/
H A Drouter_unittest.cc132 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());
207 internal::Router router0(handle0_.Pass(), internal::FilterChain());
208 internal::Router router1(handle1_.Pass(), internal::FilterChain());
/external/chromium_org/extensions/renderer/
H A Dobject_backed_native_handler.h52 static void Router(const v8::FunctionCallbackInfo<v8::Value>& args);
55 // need when handling it in Router() - this is the base::Bound function to
H A Dobject_backed_native_handler.cc34 void ObjectBackedNativeHandler::Router( function in class:extensions::ObjectBackedNativeHandler
65 v8::FunctionTemplate::New(isolate, Router, data);
/external/chromium_org/extensions/renderer/resources/
H A Ddata_receiver.js148 * The [Router]{@link module:mojo/public/js/bindings/router.Router} for the
152 this.router_ = new router.Router(source);
H A Ddata_sender.js236 * The [Router]{@link module:mojo/public/js/bindings/router.Router} for the
240 this.router_ = new routerModule.Router(sink);
H A Dserial_service.js27 var service = new serialMojom.SerialServiceProxy(new routerModule.Router(
174 var router = new routerModule.Router(pipe.handle1);
/external/nist-sip/java/gov/nist/javax/sip/
H A DSipStackImpl.java67 import javax.sip.address.Router;
635 Router router = (Router) cons.newInstance(args);
/external/chromium_org/mojo/android/javatests/src/org/chromium/mojo/bindings/
H A DRouterTest.java23 * Testing {@link Router}
30 private Router mRouter;
/external/nist-sip/java/gov/nist/javax/sip/stack/
H A DDefaultRouter.java75 * SIP URI, call {@link javax.sip.address.Router#getNextHop(Request)} provided
99 public class DefaultRouter implements Router {
333 * @see javax.sip.address.Router#getNextHop(javax.sip.message.Request)
H A DSIPTransactionStack.java75 import javax.sip.address.Router;
237 * Router to determine where to forward the request.
239 protected javax.sip.address.Router router;
1838 * @param router A class that implements the Router interface.
1840 protected void setRouter(Router router) {
1847 * @return Router router
1849 public Router getRouter(SIPRequest request) {
1872 public Router getRouter() {
/external/chromium_org/mojo/public/python/mojo/bindings/
H A Dmessaging.py272 class Router(MessageReceiverWithResponder): class in inherits:MessageReceiverWithResponder
274 A Router will handle mojo message and forward those to a Connector. It deals

Completed in 7400 milliseconds

12