Home
last modified time | relevance | path

Searched refs:TestChannel (Results 1 – 7 of 7) sorted by relevance

/external/grpc-grpc-java/android/src/test/java/io/grpc/android/
DAndroidChannelBuilderTest.java127 TestChannel delegateChannel = new TestChannel(); in nullContextDoesNotThrow_api23()
143 TestChannel delegateChannel = new TestChannel(); in nullContextDoesNotThrow_api24()
157 TestChannel delegateChannel = new TestChannel(); in resetConnectBackoff_api23()
212 TestChannel delegateChannel = new TestChannel(); in resetConnectBackoffAndEnterIdle_api24()
253 TestChannel delegateChannel = new TestChannel(); in newChannelWithConnection_entersIdleOnSecondConnectionChange_api24()
274 TestChannel delegateChannel = new TestChannel(); in shutdownNowUnregistersBroadcastReceiver_api23()
294 TestChannel delegateChannel = new TestChannel(); in shutdownNowUnregistersNetworkCallback_api24()
364 private static class TestChannel extends ManagedChannel { class in AndroidChannelBuilderTest
/external/libchrome/mojo/core/
Dchannel_unittest.cc20 class TestChannel : public Channel { class
22 TestChannel(Channel::Delegate* delegate) : Channel(delegate) {} in TestChannel() function in mojo::core::__anone18255fd0111::TestChannel
47 ~TestChannel() override {} in ~TestChannel()
146 scoped_refptr<TestChannel> channel = new TestChannel(&channel_delegate); in TEST()
168 scoped_refptr<TestChannel> channel = new TestChannel(&channel_delegate); in TEST()
/external/grpc-grpc-java/services/src/test/java/io/grpc/services/
DChannelzServiceTest.java36 import io.grpc.services.ChannelzTestHelper.TestChannel;
63 TestChannel root = new TestChannel(); in getTopChannels_onePage()
77 TestChannel root = new TestChannel(); in getChannel()
94 TestChannel subchannel = new TestChannel(); in getSubchannel()
DChannelzProtoUtilTest.java77 import io.grpc.services.ChannelzTestHelper.TestChannel;
96 private final TestChannel channel = new TestChannel();
117 private final TestChannel subchannel = new TestChannel();
586 TestChannel otherSubchannel = new TestChannel(); in toChannel()
638 TestChannel subchannel1 = new TestChannel(); in toSubchannel_subchannelChildren()
648 TestChannel subchannel2 = new TestChannel(); in toSubchannel_subchannelChildren()
692 TestChannel channel2 = new TestChannel(); in toGetTopChannelsResponse()
DChannelzTestHelper.java149 static final class TestChannel implements InternalInstrumented<ChannelStats> { class in ChannelzTestHelper
/external/webrtc/p2p/base/
Dport_unittest.cc267 class TestChannel : public sigslot::has_slots<> { class
270 explicit TestChannel(std::unique_ptr<Port> p1) : port_(std::move(p1)) { in TestChannel() function in cricket::TestChannel
271 port_->SignalPortComplete.connect(this, &TestChannel::OnPortComplete); in TestChannel()
272 port_->SignalUnknownAddress.connect(this, &TestChannel::OnUnknownAddress); in TestChannel()
273 port_->SignalDestroyed.connect(this, &TestChannel::OnSrcPortDestroyed); in TestChannel()
289 &TestChannel::OnConnectionStateChange); in CreateConnection()
290 conn_->SignalDestroyed.connect(this, &TestChannel::OnDestroyed); in CreateConnection()
292 &TestChannel::OnConnectionReadyToSend); in CreateConnection()
306 conn_->SignalDestroyed.connect(this, &TestChannel::OnDestroyed); in AcceptConnection()
603 void ConnectStartedChannels(TestChannel* ch1, TestChannel* ch2) { in ConnectStartedChannels()
[all …]
/external/python/google-api-python-client/tests/
Dtest_channel.py13 class TestChannel(unittest.TestCase): class