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

  /system/connectivity/wificond/tests/
scan_settings_unittest.cpp 91 ChannelSettings channel, channel1, channel2; local
94 channel2.frequency_ = kFakeFrequency2;
101 scan_settings.channel_settings_ = {channel, channel1, channel2};
117 ChannelSettings channel, channel1, channel2; local
120 channel2.frequency_ = kFakeFrequency2;
127 scan_settings.channel_settings_ = {channel, channel1, channel2};
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowNotificationManagerTest.java 72 NotificationChannel channel2 = new NotificationChannel("id2", "name2", 1); local
74 notificationManager.createNotificationChannels(ImmutableList.of(channel1, channel2));
  /external/webrtc/webrtc/p2p/base/
transportcontroller_unittest.cc 111 FakeTransportChannel* channel2 = CreateChannel("video", 1); local
112 ASSERT_NE(nullptr, channel2);
124 channel2->SignalCandidateGathered(channel2, CreateCandidate(1));
126 channel2->SetCandidatesGatheringComplete();
128 channel2->SetConnectionCount(2);
130 channel2->SetReceiving(true);
132 channel2->SetWritable(true);
134 channel2->SetConnectionCount(1);
209 FakeTransportChannel* channel2 = CreateChannel("video", 1) local
238 FakeTransportChannel* channel2 = CreateChannel("video", 1); local
248 FakeTransportChannel* channel2 = CreateChannel("video", 1); local
293 FakeTransportChannel* channel2 = CreateChannel("video", 1); local
392 FakeTransportChannel* channel2 = CreateChannel("audio", 2); local
407 FakeTransportChannel* channel2 = CreateChannel("audio", 1); local
429 FakeTransportChannel* channel2 = CreateChannel("video", 1); local
446 FakeTransportChannel* channel2 = CreateChannel("video", 1); local
480 FakeTransportChannel* channel2 = CreateChannel("video", 1); local
521 FakeTransportChannel* channel2 = CreateChannel("video", 1); local
564 FakeTransportChannel* channel2 = CreateChannel("video", 1); local
592 FakeTransportChannel* channel2 = CreateChannel("video", 1); local
632 FakeTransportChannel* channel2 = CreateChannel("video", 1); local
    [all...]
turnserver.cc 740 Channel* channel2 = FindChannel(peer_attr->GetAddress()); local
741 if (channel1 != channel2) {
  /libcore/luni/src/test/java/libcore/java/nio/channels/
OldSocketChannelTest.java 49 private SocketChannel channel2; field in class:OldSocketChannelTest
58 this.channel2 = SocketChannel.open();
72 if (null != this.channel2) {
74 this.channel2.close();
  /packages/apps/TV/tests/unit/src/com/android/tv/data/
ChannelDataManagerTest.java 254 Channel channel2 = channels.get(1); local
256 mChannelDataManager.addChannelListener(channel2.getId(), channelListener);
260 mChannelDataManager.updateBrowsable(channel2.getId(), false, true);
265 assertThat(browsableChannelList).doesNotContain(channel2);
274 assertThat(browsableChannelList).doesNotContain(channel2);
  /external/webrtc/talk/media/sctp/
sctpdataengine_unittest.cc 266 channel2()->SetSend(false);
326 cricket::SctpDataMediaChannel* channel2() { return chan2_.get(); } function in class:SctpDataMediaChannelTest
363 channel2()->SignalReadyToSend.connect(&signal_observer_2,
370 ASSERT_TRUE(SendData(channel2(), 2, "hi chan1", &result));
396 ASSERT_TRUE(SendData(channel2(), 2, "hi chan1", &result));
433 chan_2_sig_receiver.BindSelf(channel2());
439 ASSERT_TRUE(SendData(channel2(), 2, "hi chan1", &result));
453 chan_2_sig_receiver.BindSelf(channel2());
459 ASSERT_TRUE(SendData(channel2(), 2, "hi chan1", &result));
464 channel2()->RemoveSendStream(2)
    [all...]
  /frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
RankingHelperTest.java 369 NotificationChannel channel2 = local
371 channel2.setDescription("descriptions for all");
372 channel2.setSound(new Uri.Builder().scheme("test").build(), mAudioAttributes);
373 channel2.enableLights(true);
374 channel2.setBypassDnd(true);
375 channel2.setLockscreenVisibility(Notification.VISIBILITY_SECRET);
376 channel2.enableVibration(true);
377 channel2.setGroup(ncg.getId());
378 channel2.setVibrationPattern(new long[]{100, 67, 145, 156});
379 channel2.setLightColor(Color.BLUE)
430 NotificationChannel channel2 = local
603 NotificationChannel channel2 = local
801 final NotificationChannel channel2 = local
1079 NotificationChannel channel2 = local
1081 channelMap.put(channel2.getId(), channel2); local
1111 NotificationChannel channel2 = local
1130 NotificationChannel channel2 = local
1157 NotificationChannel channel2 = new NotificationChannel("id2", "name2", IMPORTANCE_LOW); local
1306 NotificationChannel channel2 = local
1503 NotificationChannel channel2 = local
    [all...]
NotificationManagerServiceTest.java 415 final NotificationChannel channel2 = local
418 new ParceledListSlice(Arrays.asList(channel1, channel2)));
487 final NotificationChannel channel2 = local
490 new ParceledListSlice(Arrays.asList(channel1, channel2)));
1402 NotificationChannel channel2 = new NotificationChannel("a", "b", IMPORTANCE_LOW); local
    [all...]
  /cts/tests/app/src/android/app/cts/
NotificationManagerTest.java 372 NotificationChannel channel2 = local
382 mNotificationManager.createNotificationChannel(channel2);
386 compareChannels(channel2,
387 mNotificationManager.getNotificationChannel(channel2.getId()));
399 NotificationChannel channel2 = local
411 channelMap.put(channel2.getId(), channel2); local
415 mNotificationManager.createNotificationChannel(channel2);
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
DatagramChannelTest.java 67 private DatagramChannel channel2; field in class:DatagramChannelTest
76 channel2 = DatagramChannel.open();
79 channel2.socket().bind(new InetSocketAddress(Inet6Address.LOOPBACK, 0));
82 channel2Address = (InetSocketAddress) channel2.socket().getLocalSocketAddress();
93 IoUtils.closeQuietly(channel2);
    [all...]
SocketChannelTest.java 61 private SocketChannel channel2; field in class:SocketChannelTest
74 this.channel2 = SocketChannel.open();
91 if (null != this.channel2) {
93 this.channel2.close();
    [all...]
  /bionic/libc/kernel/uapi/linux/
cdrom.h 100 __u8 channel2; member in struct:cdrom_volctrl
  /external/kernel-headers/original/uapi/linux/
cdrom.h 201 __u8 channel2; member in struct:cdrom_volctrl
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
cdrom.h 200 __u8 channel2; member in struct:cdrom_volctrl
  /external/python/cpython2/Mac/Modules/qt/
_Qtmodule.c 17842 Fixed channel2; local
17868 Fixed channel2; local
    [all...]
  /external/valgrind/include/vki/
vki-linux.h 1939 __vki_u8 channel2; member in struct:vki_cdrom_volctrl
    [all...]

Completed in 913 milliseconds