HomeSort by relevance Sort by last modified time
    Searched defs:channel (Results 1 - 25 of 1573) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /system/chre/apps/wifi_offload/test/
wifioffloadutility_test.cc 24 int channel = wifi_offload::utility::Ieee80211FrequencyToChannel( local
27 static_cast<uint8_t>(channel));
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRCommonTokenStream.h 38 NSInteger channel; variable
42 @property (assign, getter=getChannel,setter=setChannel) NSInteger channel; variable
47 Channel:(NSInteger)aChannel;
51 - (id) initWithTokenSource:(id<ANTLRTokenSource>)theTokenSource Channel:(NSInteger)aChannel;
ANTLRUnbufferedTokenStream.h 41 NSInteger channel; variable
46 @property (getter=getChannel, setter=setChannel:) NSInteger channel; variable
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRCommonTokenStream.h 38 NSInteger channel; variable
42 @property (assign, getter=getChannel,setter=setChannel) NSInteger channel; variable
47 Channel:(NSInteger)aChannel;
51 - (id) initWithTokenSource:(id<ANTLRTokenSource>)theTokenSource Channel:(NSInteger)aChannel;
ANTLRUnbufferedTokenStream.h 41 NSInteger channel; variable
46 @property (getter=getChannel, setter=setChannel:) NSInteger channel; variable
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRCommonTokenStream.h 38 NSInteger channel; variable
42 @property (assign, getter=getChannel,setter=setChannel) NSInteger channel; variable
47 Channel:(NSInteger)aChannel;
51 - (id) initWithTokenSource:(id<ANTLRTokenSource>)theTokenSource Channel:(NSInteger)aChannel;
ANTLRUnbufferedTokenStream.h 41 NSInteger channel; variable
46 @property (getter=getChannel, setter=setChannel:) NSInteger channel; variable
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRCommonTokenStream.h 39 NSUInteger channel; variable
43 @property (assign, getter=channel,setter=setChannel:) NSUInteger channel; variable
48 Channel:(NSUInteger)aChannel;
52 - (id) initWithTokenSource:(id<ANTLRTokenSource>)theTokenSource Channel:(NSUInteger)aChannel;
68 - (NSUInteger)channel;
ANTLRUnbufferedTokenStream.h 41 NSInteger channel; variable
46 @property (getter=channel, setter=setChannel:) NSInteger channel; variable
  /frameworks/support/tv-provider/src/androidTest/java/androidx/tvprovider/media/tv/
PreviewChannelTest.java 81 thrown.expectMessage("Need channel name. "
89 final String description = "This is a test preview channel";
92 PreviewChannel channel = new PreviewChannel.Builder() local
98 assertEquals(displayName, channel.getDisplayName());
99 assertEquals(description, channel.getDescription());
100 assertEquals(uri, channel.getAppLinkIntentUri());
101 assertNotNull(channel.getLogo(mContext));
102 assertNull(channel.getPackageName());
103 assertNull(channel.getInternalProviderDataByteArray());
104 assertNull(channel.getInternalProviderFlag1())
115 PreviewChannel channel = createFullyPopulatedPreviewChannel(); local
    [all...]
  /frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
NotificationChannelTest.java 44 NotificationChannel channel = local
47 channel.writeToParcel(parcel, 0);
50 assertEquals(channel, channel1);
55 NotificationChannel channel = new NotificationChannel("a", "ab", IMPORTANCE_DEFAULT); local
56 assertEquals(false, channel.isBlockableSystem());
57 channel.setBlockableSystem(true);
58 assertEquals(true, channel.isBlockableSystem());
63 NotificationChannel channel = new NotificationChannel("a", "ab", IMPORTANCE_DEFAULT); local
64 channel.setVibrationPattern(new long[0]);
69 channel.writeXml(serializer)
    [all...]
  /cts/tests/app/src/android/app/cts/
NotificationChannelTest.java 40 NotificationChannel channel = local
42 assertEquals(expected, channel.describeContents());
46 NotificationChannel channel = local
48 assertEquals("1", channel.getId());
49 assertEquals("one", channel.getName());
50 assertEquals(null, channel.getDescription());
51 assertEquals(false, channel.canBypassDnd());
52 assertEquals(false, channel.shouldShowLights());
53 assertEquals(false, channel.shouldVibrate());
54 assertEquals(null, channel.getVibrationPattern())
64 NotificationChannel channel = local
74 NotificationChannel channel = new NotificationChannel("a", "ab", IMPORTANCE_DEFAULT); local
80 NotificationChannel channel = new NotificationChannel("a", "ab", IMPORTANCE_DEFAULT); local
86 NotificationChannel channel = local
95 NotificationChannel channel = local
103 NotificationChannel channel = local
113 NotificationChannel channel = local
135 NotificationChannel channel = local
143 NotificationChannel channel = local
150 NotificationChannel channel = local
    [all...]
  /external/toybox/toys/other/
mix.c 12 usage: mix [-d DEV] [-c CHANNEL] [-l VOL] [-r RIGHT]
16 -c CHANNEL Set/show volume of CHANNEL (default first channel found)
19 -r RIGHT Volume of right stereo channel (with -r, -l sets left volume)
36 int mask, channel = -1, level, fd; local
42 for (channel = 0; channel < SOUND_MIXER_NRDEVICES; channel++) {
43 if ((1<<channel) & mask)
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/notification/
NotificationChannelManager.java 49 * <li>channel management code is simpler and it's easier to ensure that the correct set of
68 "NotificationChannelManager.initChannels", "desired channel IDs: " + desiredChannelIds);
70 "NotificationChannelManager.initChannels", "existing channel IDs: " + existingChannelIds);
74 // channel that gets deleted when the user removes the SIM and is then restored when the user
101 for (NotificationChannel channel : notificationManager.getNotificationChannels()) {
102 result.add(channel.getId());
118 NotificationChannel channel = local
123 channel.setShowBadge(false);
124 channel.enableLights(true);
125 channel.enableVibration(false)
132 NotificationChannel channel = local
146 NotificationChannel channel = local
160 NotificationChannel channel = local
    [all...]
  /external/webrtc/talk/media/base/
hybriddataengine.h 56 DataMediaChannel* channel = NULL; local
58 channel = first_->CreateChannel(data_channel_type);
60 if (!channel && second_) {
61 channel = second_->CreateChannel(data_channel_type);
63 return channel;
  /external/wpa_supplicant_8/src/fst/
fst_iface.c 76 u8 channel; local
78 fst_iface_get_channel_info(i, &hw_mode, &channel);
  /frameworks/native/libs/vr/libpdx_uds/
channel_manager.cpp 16 auto channel = channels_.find(handle); local
17 if (channel == channels_.end()) {
18 ALOGE("Invalid channel handle: %d", handle);
20 channels_.erase(channel);
46 auto channel = channels_.find(handle); local
47 return channel != channels_.end() ? &channel->second : nullptr;
  /packages/apps/Contacts/src/com/android/contacts/util/
ContactsNotificationChannelsUtil.java 39 final NotificationChannel channel = new NotificationChannel(DEFAULT_CHANNEL, local
42 nm.createNotificationChannel(channel);
  /prebuilts/jdk/jdk8/darwin-x86/sample/nio/chatserver/
Client.java 52 * channel.
60 private final AsynchronousSocketChannel channel; field in class:Client
68 public Client(AsynchronousSocketChannel channel, ClientReader reader) {
69 this.channel = channel;
74 * Enqueues a write of the buffer to the channel.
78 * @param buffer the buffer to send to the channel
114 channel.write(buffer, buffer, new CompletionHandler<Integer, ByteBuffer>() {
118 channel.write(buffer, buffer, this);
156 if (!channel.isOpen())
    [all...]
  /prebuilts/jdk/jdk8/linux-x86/sample/nio/chatserver/
Client.java 52 * channel.
60 private final AsynchronousSocketChannel channel; field in class:Client
68 public Client(AsynchronousSocketChannel channel, ClientReader reader) {
69 this.channel = channel;
74 * Enqueues a write of the buffer to the channel.
78 * @param buffer the buffer to send to the channel
114 channel.write(buffer, buffer, new CompletionHandler<Integer, ByteBuffer>() {
118 channel.write(buffer, buffer, this);
156 if (!channel.isOpen())
    [all...]
  /libcore/ojluni/src/main/java/sun/nio/ch/
SelectionKeyImpl.java 41 final SelChImpl channel; // package-private field in class:SelectionKeyImpl
51 channel = ch;
55 public SelectableChannel channel() { method in class:SelectionKeyImpl
56 return (SelectableChannel)channel;
103 if ((ops & ~channel().validOps()) != 0)
105 channel.translateAndSetInterestOps(ops, this);
  /cts/tests/framework/base/windowmanager/src/android/server/wm/
TestLogService.java 112 ClientChannel channel = mChannels.get(logtag); local
113 channel.mResults.put(key, value);
114 if (key.equals(channel.mStopKey)) {
115 channel.mLatch.countDown();
  /frameworks/base/wifi/tests/src/android/net/wifi/p2p/
WifiP2pManagerTest.java 58 * Validate that on finalize we close the channel and flag a resource leakage.
62 try (WifiP2pManager.Channel channel = new WifiP2pManager.Channel(mContextMock,
64 leakageDetectorRule.assertUnreleasedResourceCount(channel, 1);
69 * Validate that when close is called on a channel it frees up resources (i.e. don't
74 WifiP2pManager.Channel channel = new WifiP2pManager.Channel(mContextMock, local
77 channel.close()
    [all...]
  /packages/services/Telecomm/src/com/android/server/telecom/ui/
NotificationChannelManager.java 63 NotificationChannel channel = createChannel(context, channelId); local
64 getNotificationManager(context).createNotificationChannel(channel);
103 NotificationChannel channel = new NotificationChannel(channelId, name, importance); local
104 channel.setShowBadge(canShowBadge);
106 channel.setSound(
111 channel.enableLights(lights);
112 channel.enableVibration(vibration);
113 return channel;
  /prebuilts/tools/common/m2/repository/io/netty/netty-transport/4.1.6.Final/
netty-transport-4.1.6.Final.jar 

Completed in 513 milliseconds

1 2 3 4 5 6 7 8 91011>>