Home
last modified time | relevance | path

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

/external/libmojo/mojo/public/cpp/bindings/lib/
Dbinding_state.h52 DCHECK(!router_); in Bind()
57 router_ = in Bind()
60 router_->set_incoming_receiver(&stub_); in Bind()
61 router_->set_connection_error_handler( in Bind()
69 DCHECK(router_); in PauseIncomingMethodCallProcessing()
70 router_->PauseIncomingMethodCallProcessing(); in PauseIncomingMethodCallProcessing()
73 DCHECK(router_); in ResumeIncomingMethodCallProcessing()
74 router_->ResumeIncomingMethodCallProcessing(); in ResumeIncomingMethodCallProcessing()
79 DCHECK(router_);
80 return router_->WaitForIncomingMessage(deadline);
[all …]
Dinterface_ptr_state.h45 InterfacePtrState() : proxy_(nullptr), router_(nullptr), version_(0u) {} in InterfacePtrState()
52 delete router_; in ~InterfacePtrState() local
90 swap(other->router_, router_); in Swap()
99 DCHECK(!router_); in Bind()
115 router_ ? router_->PassMessagePipe() : std::move(handle_), version_); in PassInterface()
118 bool is_bound() const { return handle_.is_valid() || router_; } in is_bound()
121 return router_ ? router_->encountered_error() : false; in encountered_error()
127 DCHECK(router_); in set_connection_error_handler()
128 router_->set_connection_error_handler(error_handler); in set_connection_error_handler()
133 return router_ && router_->has_pending_responders(); in has_pending_callbacks()
[all …]
Drouter.cc35 : router_(router), in ResponderThunk()
50 if (router_) in ~ResponderThunk()
51 router_->RaiseError(); in ~ResponderThunk()
54 base::Bind(&Router::RaiseError, router_)); in ~ResponderThunk()
67 if (router_) in Accept()
68 result = router_->Accept(message); in Accept()
76 return router_ && !router_->encountered_error() && router_->is_valid(); in IsValid()
81 DCheckIfInvalid(router_, message); in DCheckInvalid()
84 base::Bind(&DCheckIfInvalid, router_, message)); in DCheckInvalid()
89 base::WeakPtr<Router> router_; member in mojo::internal::__anone1c907070111::ResponderThunk
[all …]
Dmultiplex_router.cc35 : router_(router), in InterfaceEndpoint()
53 router_->lock_.AssertAcquired(); in set_closed()
59 router_->lock_.AssertAcquired(); in set_peer_closed()
71 router_->lock_.AssertAcquired(); in AttachClient()
83 router_->lock_.AssertAcquired(); in DetachClient()
94 router_->lock_.AssertAcquired(); in SignalSyncMessageEvent()
114 return router_->connector_.Accept(message); in SendMessage()
135 router_->lock_.AssertAcquired(); in ~InterfaceEndpoint()
146 scoped_refptr<MultiplexRouter> router_protector(router_); in OnHandleReady()
153 base::AutoLock locker(router_->lock_); in OnHandleReady()
[all …]
Drouter.h147 Router* router_;
/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/libmojo/mojo/public/js/
Dconnection.js23 this.router_ = router;
27 this.router_.setIncomingReceiver(localStub);
28 this.router_.setErrorHandler(function() {
44 this.router_.setPayloadValidators(payloadValidators);
48 this.router_.close();
49 this.router_ = null;
55 return this.router_.encounteredError();
Dvalidation_unittests.js302 testConnection.router_.validationErrorHandler = function(err) {
306 testConnection.router_.connector_.waitForNextMessage();
/external/webrtc/webrtc/video/
Dencoder_state_feedback_unittest.cc52 &router_, in VieKeyRequestTest()
63 PacketRouter router_; member in webrtc::VieKeyRequestTest