Home
last modified time | relevance | path

Searched refs:channel1 (Results 1 – 18 of 18) sorted by relevance

/external/grpc-grpc/src/php/tests/unit_tests/
DChannelTest.php188 $this->channel1 = new Grpc\Channel('localhost:50014', [
196 $state = $this->channel1->getConnectivityState();
202 $state = $this->channel1->getConnectivityState(true);
203 $this->waitUntilNotIdle($this->channel1);
206 $state = $this->channel1->getConnectivityState();
211 $this->channel1->close();
218 $this->channel1 = new Grpc\Channel('localhost:50015', [
224 $state = $this->channel1->getConnectivityState();
230 $state = $this->channel1->getConnectivityState(true);
231 $this->waitUntilNotIdle($this->channel1);
[all …]
/external/grpc-grpc/src/php/tests/unit_tests/PersistentChannelTests/
DPersistentChannelTest.php64 $this->channel1 = new Grpc\Channel('localhost:1', ['force_new' => true]);
65 $channel1_info = $this->channel1->getChannelInfo();
66 $plist_info = $this->channel1->getPersistentList();
72 $this->channel1->close();
77 $this->channel1 = new Grpc\Channel('localhost:1', []);
78 $channel1_info = $this->channel1->getChannelInfo();
79 $plist_info = $this->channel1->getPersistentList();
86 $this->channel1->close();
91 $this->channel1 = new Grpc\Channel('localhost:1', []);
92 $plist_info = $this->channel1->getPersistentList();
[all …]
/external/webrtc/webrtc/p2p/base/
Dtransportcontroller_unittest.cc109 FakeTransportChannel* channel1 = CreateChannel("audio", 1); in CreateChannelsAndCompleteConnection_w() local
110 ASSERT_NE(nullptr, channel1); in CreateChannelsAndCompleteConnection_w()
123 channel1->SignalCandidateGathered(channel1, CreateCandidate(1)); in CreateChannelsAndCompleteConnection_w()
125 channel1->SetCandidatesGatheringComplete(); in CreateChannelsAndCompleteConnection_w()
127 channel1->SetConnectionCount(2); in CreateChannelsAndCompleteConnection_w()
129 channel1->SetReceiving(true); in CreateChannelsAndCompleteConnection_w()
131 channel1->SetWritable(true); in CreateChannelsAndCompleteConnection_w()
133 channel1->SetConnectionCount(1); in CreateChannelsAndCompleteConnection_w()
201 FakeTransportChannel* channel1 = CreateChannel("audio", 1); in TEST_F() local
202 ASSERT_NE(nullptr, channel1); in TEST_F()
[all …]
Dturnserver.cc739 Channel* channel1 = FindChannel(channel_id); in HandleChannelBindRequest() local
741 if (channel1 != channel2) { in HandleChannelBindRequest()
747 if (!channel1) { in HandleChannelBindRequest()
748 channel1 = new Channel(thread_, channel_id, peer_attr->GetAddress()); in HandleChannelBindRequest()
749 channel1->SignalDestroyed.connect(this, in HandleChannelBindRequest()
751 channels_.push_back(channel1); in HandleChannelBindRequest()
753 channel1->Refresh(); in HandleChannelBindRequest()
Ddtlstransportchannel_unittest.cc554 cricket::FakeTransportChannel* channel1 = client1_.GetFakeChannel(0); in TEST_F() local
556 ASSERT_TRUE(channel1 != NULL); in TEST_F()
558 EXPECT_EQ(cricket::ICEROLE_CONTROLLING, channel1->GetIceRole()); in TEST_F()
559 EXPECT_EQ(1U, channel1->IceTiebreaker()); in TEST_F()
560 EXPECT_EQ(kIceUfrag1, channel1->ice_ufrag()); in TEST_F()
561 EXPECT_EQ(kIcePwd1, channel1->ice_pwd()); in TEST_F()
/external/webrtc/talk/media/sctp/
Dsctpdataengine_unittest.cc265 channel1()->SetSend(false); in TearDown()
325 cricket::SctpDataMediaChannel* channel1() { return chan1_.get(); } in channel1() function in SctpDataMediaChannelTest
361 channel1()->SignalReadyToSend.connect(&signal_observer_1, in TEST_F()
367 ASSERT_TRUE(SendData(channel1(), 1, "hello?", &result)); in TEST_F()
383 ASSERT_TRUE(SendData(channel1(), 1, "hello?", &result)); in TEST_F()
420 channel1()->SendData( in TEST_F()
432 chan_1_sig_receiver.BindSelf(channel1()); in TEST_F()
436 ASSERT_TRUE(SendData(channel1(), 1, "hello?", &result)); in TEST_F()
444 channel1()->RemoveSendStream(1); in TEST_F()
452 chan_1_sig_receiver.BindSelf(channel1()); in TEST_F()
[all …]
/external/grpc-grpc/test/core/channel/
Dchannel_trace_test.cc167 ChannelFixture channel1(GetParam()); in TEST_P() local
169 MakeRefCounted<ChannelNode>(channel1.channel(), GetParam(), true); in TEST_P()
215 ChannelFixture channel1(GetParam()); in TEST_P() local
217 MakeRefCounted<ChannelNode>(channel1.channel(), GetParam(), true); in TEST_P()
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/
Dunittest.cc139 BoundedCapacityChannel channel1(sample_rate_hz, rate_bits_per_second), in TestGetSetBandwidthInfo() local
166 channel1.Send(send_time, bitstream1.size()))); in TestGetSetBandwidthInfo()
/external/libchrome/mojo/public/cpp/system/tests/
Dinvitation_unittest.cc251 PlatformChannel channel1; in TEST() local
255 channel1.TakeLocalEndpoint(), kConnectionName); in TEST()
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DShadowNotificationManagerTest.java91 NotificationChannel channel1 = new NotificationChannel("id", "name", 1); in createNotificationChannels() local
94 notificationManager.createNotificationChannels(ImmutableList.of(channel1, channel2)); in createNotificationChannels()
/external/libchrome/mojo/core/
Dinvitation_unittest.cc797 PlatformChannel channel1; in TEST_F() local
802 channel1.TakeLocalEndpoint().TakePlatformHandle(), in TEST_F()
/external/kernel-headers/original/uapi/linux/
Dcdrom.h200 __u8 channel1; member
/external/webrtc/talk/media/webrtc/
Dwebrtcvoiceengine_unittest.cc2722 rtc::scoped_ptr<cricket::WebRtcVoiceMediaChannel> channel1( in TEST_F() local
2732 channel1->AddSendStream(stream1); in TEST_F()
2742 ASSERT_TRUE(channel1->SetSendParameters(parameters_options_all)); in TEST_F()
2743 EXPECT_EQ(parameters_options_all.options, channel1->options()); in TEST_F()
2751 ASSERT_TRUE(channel1->SetSendParameters(parameters_options_no_ns)); in TEST_F()
2756 EXPECT_EQ(expected_options, channel1->options()); in TEST_F()
2782 channel1->SetSend(cricket::SEND_MICROPHONE); in TEST_F()
/external/syzkaller/sys/linux/
Dcdrom.txt142 channel1 int8
/external/u-boot/arch/arm/dts/
Dr8a77995.dtsi468 channel1 {
Dr8a7796.dtsi810 channel1 {
Dr8a7795.dtsi941 channel1 {
/external/python/cpython2/Mac/Modules/qt/
D_Qtmodule.c17841 Fixed channel1; in Qt_VDSetInputGammaValue() local
17849 PyMac_GetFixed, &channel1, in Qt_VDSetInputGammaValue()
17854 channel1, in Qt_VDSetInputGammaValue()
17867 Fixed channel1; in Qt_VDGetInputGammaValue() local
17877 &channel1, in Qt_VDGetInputGammaValue()
17882 PyMac_BuildFixed, channel1, in Qt_VDGetInputGammaValue()