Home
last modified time | relevance | path

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

/external/libchrome/mojo/public/cpp/bindings/lib/
Dbinding_state.cc22 return router_ ? router_->HasAssociatedEndpoints() : false; in HasAssociatedInterfaces()
26 DCHECK(router_); in PauseIncomingMethodCallProcessing()
27 router_->PauseIncomingMethodCallProcessing(); in PauseIncomingMethodCallProcessing()
31 DCHECK(router_); in ResumeIncomingMethodCallProcessing()
32 router_->ResumeIncomingMethodCallProcessing(); in ResumeIncomingMethodCallProcessing()
36 DCHECK(router_); in WaitForIncomingMethodCall()
37 return router_->WaitForIncomingMessage(deadline); in WaitForIncomingMethodCall()
41 if (!router_) in Close()
45 router_->CloseMessagePipe(); in Close()
46 router_ = nullptr; in Close()
[all …]
Dinterface_ptr_state.cc16 if (router_) in ~InterfacePtrStateBase()
17 router_->CloseMessagePipe(); in ~InterfacePtrStateBase()
39 swap(other->router_, router_); in Swap()
50 DCHECK(!router_); in Bind()
83 router_ = new MultiplexRouter(std::move(handle_), config, true, runner_); in InitializeEndpointClient()
85 router_->CreateLocalEndpointHandle(kMasterInterfaceId), nullptr, in InitializeEndpointClient()
Dmultiplex_router.cc35 : router_(router), in InterfaceEndpoint()
53 router_->AssertLockAcquired(); in set_closed()
59 router_->AssertLockAcquired(); in set_peer_closed()
65 router_->AssertLockAcquired(); in set_handle_created()
74 router_->AssertLockAcquired(); in set_disconnect_reason()
84 router_->AssertLockAcquired(); in AttachClient()
96 router_->AssertLockAcquired(); in DetachClient()
107 router_->AssertLockAcquired(); in SignalSyncMessageEvent()
116 router_->AssertLockAcquired(); in ResetSyncMessageSignal()
132 return router_->connector_.Accept(message); in SendMessage()
[all …]
Dinterface_ptr_state.h42 return router_ ? router_->handle() : handle_.get(); in handle()
54 return router_ ? router_->HasAssociatedEndpoints() : false; in HasAssociatedInterfaces()
66 MultiplexRouter* router() const { return router_.get(); } in router()
77 return router_ ? router_->PassMessagePipe() : std::move(handle_); in PassMessagePipe()
89 scoped_refptr<MultiplexRouter> router_; variable
Dbinding_state.h68 bool is_bound() const { return !!router_; } in is_bound()
72 return router_->handle(); in handle()
93 scoped_refptr<internal::MultiplexRouter> router_; variable
121 InterfaceRequest<Interface> request(router_->PassMessagePipe()); in Unbind()
122 router_ = nullptr; in Unbind()
/external/libchrome/mojo/public/js/
Dbindings.js43 this.router_ = null;
79 if (this.router_) {
80 this.router_.close();
81 this.router_ = null;
111 if (this.router_) {
114 this.router_.connector_.handle_, this.version);
115 this.router_.connector_.handle_ = null;
135 this.router_ = new internal.Router(this.handle_, true);
139 this.router_.createLocalEndpointHandle(internal.kMasterInterfaceId));
186 this.router_ = null;
[all …]
/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/libchrome/mojo/public/js/lib/
Drouter.js27 this.router_ = router;
38 return this.router_.connector_.accept(message);
/external/libchrome/mojo/core/ports/
Dports_unittest.cc123 router_ = router; in Start()
204 DCHECK(router_); in ForwardEvent()
206 router_->ForwardEvent(this, node_name, std::move(event)); in ForwardEvent()
210 router_->BroadcastEvent(this, std::move(event)); in BroadcastEvent()
279 MessageRouter* router_ = nullptr; member in mojo::core::ports::test::__anon08d48a8c0111::TestNode