HomeSort by relevance Sort by last modified time
    Searched defs:channel1 (Results 1 - 14 of 14) sorted by null

  /cts/tests/app/src/android/app/cts/
NotificationChannelTest.java 71 NotificationChannel channel1 = NotificationChannel.CREATOR.createFromParcel(parcel); local
72 assertEquals(channel, channel1);
NotificationManagerTest.java 885 NotificationChannel channel1 = local
912 NotificationChannel channel1 = local
925 channelMap.put(channel1.getId(), channel1); local
    [all...]
  /external/grpc-grpc/src/php/tests/unit_tests/
ChannelTest.php 188 $this->channel1 = new Grpc\Channel('localhost:50014', [ variable
196 $state = $this->channel1->getConnectivityState();
201 // try to connect on channel1
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', [ variable
224 $state = $this->channel1->getConnectivityState();
229 // try to connect on channel1
246 $this->channel1 = new Grpc\\Channel('localhost:50017', [ variable
267 $this->channel1 = new Grpc\\Channel('localhost:50018', [ variable
290 $this->channel1 = new Grpc\\Channel('localhost:50019', variable
316 $this->channel1 = new Grpc\\Channel('localhost:50020', variable
343 $this->channel1 = new Grpc\\Channel('localhost:50021', variable
368 $this->channel1 = new Grpc\\Channel('localhost:50022', variable
391 $this->channel1 = new Grpc\\Channel('localhost:50123', [ variable
412 $this->channel1 = new Grpc\\Channel('localhost:50223', [ variable
430 $this->channel1 = new Grpc\\Channel('localhost:50024', [ variable
445 $this->channel1 = new Grpc\\Channel('localhost:50025', [ variable
487 $this->channel1 = new Grpc\\Channel('localhost:50026', variable
526 $this->channel1 = new Grpc\\Channel('localhost:50027', variable
553 $this->channel1 = new Grpc\\Channel('localhost:50028', [ variable
577 $this->channel1 = new Grpc\\Channel('localhost:50029', [ variable
602 $this->channel1 = new Grpc\\Channel('localhost:50029', [ variable
622 $this->channel1 = new Grpc\\Channel('localhost:50130', [ variable
648 $this->channel1 = new Grpc\\Channel('localhost:50230', [ variable
672 $this->channel1 = new Grpc\\Channel('localhost:50031', [ variable
    [all...]
  /external/grpc-grpc/src/php/tests/unit_tests/PersistentChannelTests/
PersistentChannelTest.php 64 $this->channel1 = new Grpc\Channel('localhost:1', ['force_new' => true]); variable
65 $channel1_info = $this->channel1->getChannelInfo();
66 $plist_info = $this->channel1->getPersistentList();
72 $this->channel1->close();
77 $this->channel1 = new Grpc\Channel('localhost:1', []); variable
78 $channel1_info = $this->channel1->getChannelInfo();
79 $plist_info = $this->channel1->getPersistentList();
86 $this->channel1->close();
91 $this->channel1 = new Grpc\Channel('localhost:1', []); variable
92 $plist_info = $this->channel1->getPersistentList()
106 $this->channel1 = new Grpc\\Channel('localhost:4', []); variable
120 $this->channel1 = new Grpc\\Channel('localhost:1', []); variable
139 $this->channel1 = new Grpc\\Channel('localhost:1', []); variable
155 $this->channel1 = new Grpc\\Channel('localhost:1', []); variable
177 $this->channel1 = new Grpc\\Channel('localhost:10001', [ variable
219 $this->channel1 = new Grpc\\Channel('localhost:10002', []); variable
227 $this->channel1 = new Grpc\\Channel('localhost:10002', [ variable
240 $this->channel1 = new Grpc\\Channel('localhost:10003', [ variable
273 $this->channel1 = new Grpc\\Channel('localhost:10004', []); variable
298 $this->channel1 = new Grpc\\Channel('localhost:10005', []); variable
321 $this->channel1 = new Grpc\\Channel('localhost:10006', []); variable
345 $this->channel1 = new Grpc\\Channel('localhost:10007', [ variable
367 $this->channel1 = new Grpc\\Channel('localhost:10011', [ variable
396 $this->channel1 = new Grpc\\Channel('localhost:10012', [ variable
425 $this->channel1 = new Grpc\\Channel('localhost:10013', [ variable
459 $this->channel1 = new Grpc\\Channel('localhost:10014', [ variable
    [all...]
  /external/libchrome/mojo/public/cpp/system/tests/
invitation_unittest.cc 251 PlatformChannel channel1; local
255 channel1.TakeLocalEndpoint(), kConnectionName);
  /external/webrtc/webrtc/p2p/base/
transportcontroller_unittest.cc 109 FakeTransportChannel* channel1 = CreateChannel("audio", 1); local
110 ASSERT_NE(nullptr, channel1);
123 channel1->SignalCandidateGathered(channel1, CreateCandidate(1));
125 channel1->SetCandidatesGatheringComplete();
127 channel1->SetConnectionCount(2);
129 channel1->SetReceiving(true);
131 channel1->SetWritable(true);
133 channel1->SetConnectionCount(1);
201 FakeTransportChannel* channel1 = CreateChannel("audio", 1) local
229 FakeTransportChannel* channel1 = CreateChannel("audio", 1); local
246 FakeTransportChannel* channel1 = CreateChannel("audio", 1); local
279 FakeTransportChannel* channel1 = CreateChannel("audio", 1); local
390 FakeTransportChannel* channel1 = CreateChannel("audio", 1); local
405 FakeTransportChannel* channel1 = CreateChannel("audio", 1); local
427 FakeTransportChannel* channel1 = CreateChannel("audio", 1); local
444 FakeTransportChannel* channel1 = CreateChannel("audio", 1); local
478 FakeTransportChannel* channel1 = CreateChannel("audio", 1); local
519 FakeTransportChannel* channel1 = CreateChannel("audio", 1); local
562 FakeTransportChannel* channel1 = CreateChannel("audio", 1); local
590 FakeTransportChannel* channel1 = CreateChannel("audio", 1); local
630 FakeTransportChannel* channel1 = CreateChannel("audio", 1); local
    [all...]
turnserver.cc 739 Channel* channel1 = FindChannel(channel_id); local
741 if (channel1 != channel2) {
747 if (!channel1) {
748 channel1 = new Channel(thread_, channel_id, peer_attr->GetAddress());
749 channel1->SignalDestroyed.connect(this,
751 channels_.push_back(channel1);
753 channel1->Refresh();
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowNotificationManagerTest.java 91 NotificationChannel channel1 = new NotificationChannel("id", "name", 1); local
94 notificationManager.createNotificationChannels(ImmutableList.of(channel1, channel2));
  /external/webrtc/talk/media/sctp/
sctpdataengine_unittest.cc 265 channel1()->SetSend(false);
325 cricket::SctpDataMediaChannel* channel1() { return chan1_.get(); } function in class:SctpDataMediaChannelTest
361 channel1()->SignalReadyToSend.connect(&signal_observer_1,
367 ASSERT_TRUE(SendData(channel1(), 1, "hello?", &result));
383 ASSERT_TRUE(SendData(channel1(), 1, "hello?", &result));
420 channel1()->SendData(
432 chan_1_sig_receiver.BindSelf(channel1());
436 ASSERT_TRUE(SendData(channel1(), 1, "hello?", &result));
444 channel1()->RemoveSendStream(1);
452 chan_1_sig_receiver.BindSelf(channel1());
    [all...]
  /cts/tests/tests/systemui/src/android/systemui/cts/
LightBarTests.java 77 NotificationChannel channel1 = new NotificationChannel(NOTIFICATION_CHANNEL_ID, local
79 mNm.createNotificationChannel(channel1);
  /external/libchrome/mojo/core/
invitation_unittest.cc 797 PlatformChannel channel1; local
802 channel1.TakeLocalEndpoint().TakePlatformHandle(),
    [all...]
  /bionic/libc/kernel/uapi/linux/
cdrom.h 99 __u8 channel1; member in struct:cdrom_volctrl
  /external/kernel-headers/original/uapi/linux/
cdrom.h 200 __u8 channel1; member in struct:cdrom_volctrl
  /external/python/cpython2/Mac/Modules/qt/
_Qtmodule.c 17841 Fixed channel1; local
17867 Fixed channel1; local
    [all...]

Completed in 629 milliseconds