Home
last modified time | relevance | path

Searched refs:router_ (Results 1 – 8 of 8) sorted by relevance

/external/libmojo/mojo/public/js/
Dbindings.js29 this.router_ = null;
53 return this.router_ !== null || this.handle_ !== null;
60 if (this.router_) {
61 this.router_.close();
62 this.router_ = null;
78 this.router_.setErrorHandler(callback);
83 if (this.router_) {
86 this.router_.connector_.handle_, this.version);
87 this.router_.connector_.handle_ = null;
105 return this.router_.enableTestingMode();
[all …]
/external/libmojo/mojo/public/cpp/bindings/lib/
Dbinding_state.cc20 return router_ ? router_->HasAssociatedEndpoints() : false; in HasAssociatedInterfaces()
24 DCHECK(router_); in PauseIncomingMethodCallProcessing()
25 router_->PauseIncomingMethodCallProcessing(); in PauseIncomingMethodCallProcessing()
28 DCHECK(router_); in ResumeIncomingMethodCallProcessing()
29 router_->ResumeIncomingMethodCallProcessing(); in ResumeIncomingMethodCallProcessing()
33 DCHECK(router_); in WaitForIncomingMethodCall()
34 return router_->WaitForIncomingMessage(deadline); in WaitForIncomingMethodCall()
38 if (!router_) in Close()
42 router_->CloseMessagePipe(); in Close()
43 router_ = nullptr; in Close()
[all …]
Dinterface_ptr_state.h43 if (router_) in ~InterfacePtrState()
44 router_->CloseMessagePipe(); in ~InterfacePtrState()
87 swap(other->router_, router_); in Swap()
97 DCHECK(!router_); in Bind()
110 return router_ ? router_->HasAssociatedEndpoints() : false; in HasAssociatedInterfaces()
119 router_ ? router_->PassMessagePipe() : std::move(handle_), version_); in PassInterface()
155 router_->EnableTestingMode(); in EnableTestingMode()
175 DCHECK(router_); in ConfigureProxyIfNecessary()
189 router_ = new MultiplexRouter(std::move(handle_), config, true, runner_); in ConfigureProxyIfNecessary()
190 router_->SetMasterInterfaceName(Interface::Name_); in ConfigureProxyIfNecessary()
[all …]
Dmultiplex_router.cc35 : router_(router), in InterfaceEndpoint()
54 router_->AssertLockAcquired(); in set_closed()
60 router_->AssertLockAcquired(); in set_peer_closed()
66 router_->AssertLockAcquired(); in set_handle_created()
75 router_->AssertLockAcquired(); in set_disconnect_reason()
87 router_->AssertLockAcquired(); in AttachClient()
99 router_->AssertLockAcquired(); in DetachClient()
110 router_->AssertLockAcquired(); in SignalSyncMessageEvent()
125 router_->AssertLockAcquired(); in ResetSyncMessageSignal()
148 return router_->connector_.Accept(message); in SendMessage()
[all …]
Dbinding_state.h64 bool is_bound() const { return !!router_; } in is_bound()
68 return router_->handle(); in handle()
85 scoped_refptr<internal::MultiplexRouter> router_; variable
112 MakeRequest<Interface>(router_->PassMessagePipe()); in Unbind()
113 router_ = nullptr; in Unbind()
/external/webrtc/webrtc/modules/remote_bitrate_estimator/
Dremote_estimator_proxy_unittest.cc32 RemoteEstimatorProxyTest() : clock_(0), proxy_(&clock_, &router_) {} in RemoteEstimatorProxyTest()
50 MockPacketRouter router_; member in webrtc::RemoteEstimatorProxyTest
64 EXPECT_CALL(router_, SendFeedback(_)) in TEST_F()
90 EXPECT_CALL(router_, SendFeedback(_)) in TEST_F()
126 EXPECT_CALL(router_, SendFeedback(_)) in TEST_F()
145 EXPECT_CALL(router_, SendFeedback(_)) in TEST_F()
172 EXPECT_CALL(router_, SendFeedback(_)) in TEST_F()
190 EXPECT_CALL(router_, SendFeedback(_)) in TEST_F()
214 EXPECT_CALL(router_, SendFeedback(_)) in TEST_F()
230 EXPECT_CALL(router_, SendFeedback(_)) in TEST_F()
[all …]
/external/webrtc/webrtc/video/
Dencoder_state_feedback_unittest.cc52 &router_, in VieKeyRequestTest()
63 PacketRouter router_; member in webrtc::VieKeyRequestTest
/external/libmojo/mojo/edk/system/ports/
Dports_unittest.cc126 router_ = router; in Start()
200 DCHECK(router_); in GenerateRandomPortName()
201 router_->GeneratePortName(port_name); in GenerateRandomPortName()
222 DCHECK(router_); in ForwardMessage()
225 router_->ForwardMessage(this, node_name, std::move(message)); in ForwardMessage()
229 router_->BroadcastMessage(this, std::move(message)); in BroadcastMessage()
296 MessageRouter* router_ = nullptr; member in mojo::edk::ports::test::__anon6f3432360111::TestNode