HomeSort by relevance Sort by last modified time
    Searched full:channel (Results 526 - 550 of 6114) sorted by null

<<21222324252627282930>>

  /packages/services/Car/car-lib/src/android/car/hardware/radio/
CarRadioPreset.java 42 * Channel number.
46 * Sub channel number.
79 public CarRadioPreset(int presetNumber, int bandType, int channel, int subChannel) {
82 mChannel = channel;
99 "Channel: " + mChannel + "\n" +
100 "Sub channel: " + mSubChannel;
  /tools/test/connectivity/acts/framework/tests/
SnifferSanityTest.py 39 for channel in self._channels:
41 override_configs={Sniffer.CONFIG_KEY_CHANNEL:channel},
57 for channel in self._channels:
59 override_configs={Sniffer.CONFIG_KEY_CHANNEL:channel},
69 for channel in self._channels:
71 override_configs={Sniffer.CONFIG_KEY_CHANNEL:channel},
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/pulse/
volume.h 118 /** A structure encapsulating a per-channel volume */
121 pa_volume_t values[PA_CHANNELS_MAX]; /**< Per-channel volume */
185 * specified channel map with the specified channel position mask. If
187 * channel is selected the returned value will be
195 * specified channel map with the specified channel position mask. If
197 * channel is selected the returned value will be PA_VOLUME_MUTED.
205 * specified channel map with the specified channel position mask. I
    [all...]
  /sdk/apps/SdkController/src/com/android/tools/sdkcontroller/lib/
Channel.java 38 * Essentially, Channel is an implementation of a particular emulated functionality,
40 * SDK controller. For instance, "sensors" is a channel that emulates sensors,
42 * is a channel that supports multi-touch emulation, and transfers multi-touch
45 * Besides connection with the emulator, each channel may contain one or more UI
49 * - Providing a way to register / unregister a UI component with the channel.
55 public abstract class Channel {
134 /** Name for a channel that handles sensors emulation */
136 /** Name for a channel that handles multi-touch emulation */
140 * Types of messages internally used by Channel class.
166 /** Channel name ("sensors", "multi-touch", etc.) *
    [all...]
  /external/autotest/server/cros/ap_configurators/
medialink_ap_configurator.py 149 def set_channel(self, channel):
150 self.add_item_to_command_list(self._set_channel, (channel,), 1, 900)
153 def _set_channel(self, channel):
154 position = self._get_channel_popup_position(channel)
156 channel_choices = ['AutoSelect', '2412MHz (Channel 1)',
157 '2417MHz (Channel 2)', '2422MHz (Channel 3)',
158 '2427MHz (Channel 4)', '2432MHz (Channel 5)',
159 '2437MHz (Channel 6)', '2442MHz (Channel 7)'
    [all...]
  /developers/samples/android/connectivity/wifidirect/DirectP2P/Application/src/main/java/com/example/android/wifidirectp2p/
MainActivity.java 28 import android.net.wifi.p2p.WifiP2pManager.Channel;
56 private Channel channel; field in class:MainActivity
79 channel = manager.initialize(this, getMainLooper(), null);
88 receiver = new WiFiDirectBroadcastReceiver(manager, channel, this);
116 if (manager != null && channel != null) {
124 Log.e(TAG, "channel or manager is null");
137 manager.discoverPeers(channel, new ActionListener() {
165 manager.connect(channel, config, new ActionListener() {
185 manager.removeGroup(channel, new ActionListener()
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
CommonToken.cs 43 int channel = TokenChannels.Default; field in class:Antlr.Runtime.CommonToken
71 public CommonToken(ICharStream input, int type, int channel, int start, int stop) {
74 this.channel = channel;
81 this.channel = TokenChannels.Default;
91 channel = oldToken.Channel;
151 public int Channel {
153 return channel;
156 channel = value
    [all...]
LegacyCommonTokenStream.cs 44 * and tokens are prefiltered for a certain channel (the parser will only
45 * see these tokens and cannot change the filter channel number during the
63 /** <summary>Map<tokentype, channel> to override some Tokens' channel numbers</summary> */
69 /** <summary>Skip tokens on any channel but this one; this is how we skip whitespace...</summary> */
70 protected int channel = TokenChannels.Default; field in class:Antlr.Runtime.LegacyCommonTokenStream
94 public LegacyCommonTokenStream(ITokenSource tokenSource, int channel)
96 this.channel = channel;
118 channel = TokenChannels.Default
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
CommonToken.cs 45 int channel = TokenChannels.Default; field in class:Antlr.Runtime.CommonToken
75 public CommonToken( ICharStream input, int type, int channel, int start, int stop )
79 this.channel = channel;
87 this.channel = TokenChannels.Default;
98 channel = oldToken.Channel;
170 public int Channel
174 return channel;
178 channel = value
    [all...]
CommonTokenStream.cs 42 * and tokens are prefiltered for a certain channel (the parser will only
43 * see these tokens and cannot change the filter channel number during the
52 /** Skip tokens on any channel but this one; this is how we skip whitespace... */
64 public CommonTokenStream(ITokenSource tokenSource, int channel)
67 this._channel = channel;
70 public int Channel
92 /** Always leave p on an on-channel token. */
111 // skip off-channel tokens
133 // skip off-channel tokens
144 /** Given a starting index, return the index of the first on-channel
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
CommonToken.java 36 protected int channel=DEFAULT_CHANNEL; field in class:CommonToken
58 public CommonToken(CharStream input, int type, int channel, int start, int stop) {
61 this.channel = channel;
68 this.channel = DEFAULT_CHANNEL;
78 channel = oldToken.getChannel();
132 return channel;
135 public void setChannel(int channel) {
136 this.channel = channel;
    [all...]
  /external/webrtc/webrtc/modules/audio_processing/
audio_buffer.h 52 // channels()[channel][sample].
54 // 0 <= channel < |num_proc_channels_|
61 // Returns a pointer array to the bands for a specific channel.
63 // split_bands(channel)[band][sample].
65 // 0 <= channel < |num_proc_channels_|
68 int16_t* const* split_bands(size_t channel);
69 const int16_t* const* split_bands_const(size_t channel) const;
70 float* const* split_bands_f(size_t channel);
71 const float* const* split_bands_const_f(size_t channel) const;
75 // split_channels(band)[channel][sample]
    [all...]
  /external/webrtc/webrtc/p2p/base/
transportcontroller_unittest.cc 83 TransportChannel* channel = local
85 return static_cast<FakeTransportChannel*>(channel);
218 FakeTransportChannel* channel = CreateChannel("audio", 1); local
220 ASSERT_NE(nullptr, channel);
221 EXPECT_EQ(rtc::SSL_PROTOCOL_DTLS_12, channel->ssl_max_protocol_version());
243 // Test that when one channel encounters a role conflict, the ICE role is
244 // swapped on every channel.
261 FakeTransportChannel* channel = CreateChannel("audio", 1); local
262 ASSERT_NE(nullptr, channel);
263 ASSERT_TRUE(channel->SetSslRole(rtc::SSL_CLIENT))
308 FakeTransportChannel* channel = CreateChannel("audio", 1); local
323 FakeTransportChannel* channel = CreateChannel("audio", 1); local
342 FakeTransportChannel* channel = CreateChannel("audio", 1); local
356 FakeTransportChannel* channel = CreateChannel("audio", 1); local
367 FakeTransportChannel* channel = CreateChannel("audio", 1); local
545 FakeTransportChannel* channel = CreateChannel("audio", 1); local
580 FakeTransportChannel* channel = CreateChannel("audio", 1); local
649 FakeTransportChannel* channel = CreateChannel("audio", 1); local
    [all...]
  /external/webrtc/webrtc/voice_engine/test/android/android_test/jni/
android_test.cc 142 int SendPacket(int channel, const void* data, size_t len) override;
143 int SendRTCPPacket(int channel, const void* data, size_t len) override;
149 int my_transportation::SendPacket(int channel, const void *data, size_t len)
151 netw->ReceivedRTPPacket(channel, data, len);
155 int my_transportation::SendRTCPPacket(int channel, const void *data, size_t len)
157 netw->ReceivedRTCPPacket(channel, data, len);
242 "create channel failed");
565 // [Base] Create channel
573 jint channel = veData1.base->CreateChannel(); local
579 "Enabling external transport on channel %d"
    [all...]
  /external/webrtc/webrtc/voice_engine/
voe_audio_processing_impl.cc 17 #include "webrtc/voice_engine/channel.h"
317 int VoEAudioProcessingImpl::SetRxNsStatus(int channel,
326 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel);
327 voe::Channel* channelPtr = ch.channel();
330 "SetRxNsStatus() failed to locate channel");
341 int VoEAudioProcessingImpl::GetRxNsStatus(int channel,
350 voe::ChannelOwner ch = _shared->channel_manager().GetChannel(channel);
351 voe::Channel* channelPtr = ch.channel();
    [all...]
  /frameworks/av/media/libstagefright/data/
media_codecs_google_audio.xml 20 <Limit name="channel-count" max="2" />
25 <Limit name="channel-count" max="1" />
30 <Limit name="channel-count" max="1" />
35 <Limit name="channel-count" max="8" />
40 <Limit name="channel-count" max="1" />
45 <Limit name="channel-count" max="1" />
50 <Limit name="channel-count" max="8" />
55 <Limit name="channel-count" max="8" />
60 <Limit name="channel-count" max="8" />
67 <Limit name="channel-count" max="6" /
    [all...]
  /hardware/qcom/camera/QCamera2/stack/mm-camera-test/src/
mm_qcamera_video.c 58 mm_camera_channel_t *channel,
67 stream = mm_app_add_stream(test_obj, channel);
93 rc = mm_app_config_stream(test_obj, channel, stream, &stream->s_config);
104 mm_camera_channel_t *channel = NULL; local
107 channel = mm_app_add_channel(test_obj,
112 if (NULL == channel) {
113 LOGE("add channel failed");
118 channel,
124 mm_app_del_channel(test_obj, channel);
128 return channel;
    [all...]
  /libcore/ojluni/src/main/java/java/nio/channels/
WritableByteChannel.java 33 * A channel that can write bytes.
35 * <p> Only one write operation upon a writable channel may be in progress at
36 * any given time. If one thread initiates a write operation upon a channel
40 * the type of the channel. </p>
49 extends Channel
53 * Writes a sequence of bytes to this channel from the given buffer.
55 * <p> An attempt is made to write up to <i>r</i> bytes to the channel,
71 * none at all. A socket channel in non-blocking mode, for example, cannot
75 * already initiated a write operation upon this channel, however, then an
85 * If this channel was not opened for writin
    [all...]
SelectionKey.java 36 * <p> A selection key is created each time a channel is registered with a
38 * {@link #cancel cancel} method, by closing its channel, or by closing its
49 * selectable operations that are supported by the key's channel.
60 * the key's channel has been detected to be ready by the key's selector.
67 * <p> That a selection key's ready set indicates that its channel is ready for
73 * corresponding channel.
76 * bits are supported by a given channel depends upon the type of the channel.
79 * identifying just those operations that are supported by the channel. An
81 * channel will result in an appropriate run-time exception
126 public abstract SelectableChannel channel(); method in class:SelectionKey
    [all...]
  /packages/apps/TV/tests/unit/src/com/android/tv/recommendation/
RecommendationUtils.java 21 import com.android.tv.data.Channel;
86 * Add new {@code numberOfChannels} channels by adding channel record to
97 * Add new one channel by adding channel record to {@code channelRecordMap} with no history.
98 * This action corresponds to loading one channel in the RecommendationDataManger.
100 * @return The new channel was made by this method.
102 public Channel addChannel() {
104 Channel channel = new Channel.Builder().setId(channelId).build() local
    [all...]
  /system/bt/stack/avct/
avct_int.h 50 /* "states" used for L2CAP channel */
54 #define AVCT_CH_OPEN 3 /* Channel opened */
66 UINT16 ch_lcid; /* L2CAP channel LCID */
69 UINT8 ch_state; /* L2CAP channel state */
77 UINT16 ch_lcid; /* L2CAP channel LCID */
80 UINT8 ch_state; /* L2CAP channel state */
83 UINT16 conflict_lcid; /* L2CAP channel LCID */
93 UINT16 ch_lcid; /* L2CAP channel LCID */
96 UINT8 ch_state; /* L2CAP channel state */
98 BT_HDR *p_tx_msg; /* Message to be sent - in case the browsing channel is not open when MsgReg is called *
    [all...]
  /system/update_engine/
common_service.h 75 // Changes the current channel of the device to the target channel. If the
76 // target channel is a less stable channel than the current channel, then the
77 // channel change happens immediately (at the next update check). If the
78 // target channel is a more stable channel, then if is_powerwash_allowed is
81 // version on the target channel goes above the version number of what the
87 // If get_current_channel is set to true, populates |channel| with the name o
    [all...]
  /external/autotest/server/hosts/
paramiko_host.py 174 channel = None
176 channel = self.transport.open_session()
182 if not channel:
183 # we couldn't get a channel; re-initing transport should fix that
191 return channel
217 def __send_stdin(cls, channel, stdin):
218 if not stdin or not channel.send_ready():
222 sent = channel.send(stdin[:cls.BUFFSIZE])
229 channel.shutdown_write()
267 channel = self._open_channel(timeout
    [all...]
  /external/opencv3/modules/photo/src/
npr.hpp 75 int channel = img.channels(); local
80 for(int c =0; c < channel; c++)
82 temp.at<float>(i,j*channel+c) =
83 img.at<float>(i,(j+1)*channel+c) - img.at<float>(i,j*channel+c);
90 int channel = img.channels(); local
95 for(int c =0; c < channel; c++)
97 temp.at<float>(i,j*channel+c) =
98 img.at<float>((i+1),j*channel+c) - img.at<float>(i,j*channel+c)
107 int channel = img.channels(); local
122 int channel = img.channels(); local
176 int channel = output.channels(); local
311 int channel = output.channels(); local
401 int channel = img.channels(); local
    [all...]
  /system/media/audio/include/system/
audio.h 31 /* The macro FCC_2 highlights places where there are 2-channel assumptions.
36 #define FCC_2 2 // FCC_2 = Fixed Channel Count 2
38 /* The macro FCC_8 highlights places where there are 8-channel assumptions.
42 #define FCC_8 8 // FCC_8 = Fixed Channel Count 8
359 /* For the channel mask for position assignment representation */
392 /* TODO: should these be considered complete channel masks, or only bits? */
467 /* TODO: should these be considered complete channel masks, or only bits, or deprecated? */
488 /* A channel mask per se only defines the presence or absence of a channel, not the order.
498 * is a channel mask representation for position assignment
    [all...]

Completed in 549 milliseconds

<<21222324252627282930>>