/frameworks/opt/net/wifi/service/java/com/android/server/wifi/scanner/ |
ChannelHelper.java | 28 * adjusted based on the amount of information known about the available channels. 32 // TODO: Currently this is simply an estimate and is used for both active and passive channels 43 * Create a new collection that can be used to store channels 53 * Get the channels that are available for scanning on the supplied band. 75 * Object that supports accumulation of channels and bands 83 * Add all channels in the band to the collection 91 * @return true if the collection contains all the channels of the supplied band 95 * @return true if the collection contains some of the channels of the supplied band 99 * @return true if the collection contains no channels 103 * @return true if the collection contains all available channels [all...] |
/external/autotest/client/site_tests/audio_Microphone/ |
audio_Microphone.py | 20 self, filesize, duration, channels, rate, bits=16): 21 expected = duration * channels * (bits / 8) * rate 26 def verify_alsa_capture(self, channels, rate, bits=16): 29 recorded_file.name, duration=DURATION, channels=channels, 33 DURATION, channels, rate, bits) 36 def verify_cras_capture(self, channels, rate): 39 recorded_file.name, duration=DURATION, channels=channels, 43 DURATION, channels, rate [all...] |
/libcore/ojluni/src/main/java/java/nio/channels/ |
package-info.java | 27 * Defines channels, which represent connections to entities that are capable of 31 * <a name="channels"></a> 33 * <blockquote><table cellspacing=1 cellpadding=0 summary="Lists channels and their descriptions"> 34 * <tr><th><p align="left">Channels</p></th><th><p align="left">Description</p></th></tr> 35 * <tr><td valign=top><tt><i>{@link java.nio.channels.Channel}</i></tt></td> 37 * <tr><td valign=top><tt> <i>{@link java.nio.channels.ReadableByteChannel}</i></tt></td> 39 * <tr><td valign=top><tt> <i>{@link java.nio.channels.ScatteringByteChannel} </i></tt></td> 41 * <tr><td valign=top><tt> <i>{@link java.nio.channels.WritableByteChannel}</i></tt></td> 43 * <tr><td valign=top><tt> <i>{@link java.nio.channels.GatheringByteChannel}</i></tt></td> 45 * <tr><td valign=top><tt> <i>{@link java.nio.channels.ByteChannel}</i></tt></td [all...] |
/external/webrtc/webrtc/common_audio/ |
audio_ring_buffer.cc | 20 AudioRingBuffer::AudioRingBuffer(size_t channels, size_t max_frames) { 21 buffers_.reserve(channels); 22 for (size_t i = 0; i < channels; ++i) 31 void AudioRingBuffer::Write(const float* const* data, size_t channels, 33 RTC_DCHECK_EQ(buffers_.size(), channels); 34 for (size_t i = 0; i < channels; ++i) { 40 void AudioRingBuffer::Read(float* const* data, size_t channels, size_t frames) { 41 RTC_DCHECK_EQ(buffers_.size(), channels); 42 for (size_t i = 0; i < channels; ++i) {
|
/developers/build/prebuilts/androidtv/sample-inputs/ |
README.md | 7 * Simple TV input: 2 channels from local video files 8 * Rich TV input: 4 channels served from Google Cloud Storage consisting of MP4 videos, HLS stream and MPEG-DASH stream 10 Users can set up these TV inputs using the Live Channels app. 17 * Start the pre-installed system app Live Channels (which does not show up in Apps on Home screen until there is at least one TV input service or a physical input like HDMI1). 19 - Either click Search upon starting Live Channels app to search for channels 20 - Or when running Live Channels app, 21 + Click ENTER to bring out Recent Channels 25 + Click ADD CHANNELS NOW to add 3 channels of MP4 videos, HLS stream and MPEG-DASH strea [all...] |
/external/webrtc/webrtc/modules/audio_coding/neteq/ |
normal_unittest.cc | 36 size_t channels = 1; local 37 BackgroundNoise bgn(channels); 41 Expand expand(&bgn, &sync_buffer, &random_vector, &statistics, fs, channels); 50 size_t channels = 1; local 51 BackgroundNoise bgn(channels); 56 channels); 60 rtc::scoped_ptr<int16_t[]> mute_factor_array(new int16_t[channels]); 61 for (size_t i = 0; i < channels; ++i) { 64 AudioMultiVector output(channels); 96 size_t channels = 2 local [all...] |
/cts/tests/tests/media/res/raw/ |
voice12_48k_128kbps_15s_ac3_readme.txt | 5 channels=2
|
/external/libpng/contrib/tools/ |
cvtcolor.c | 53 int channels = 0; local 92 ++channels; 95 ++channels; 98 ++channels; 101 ++channels; 108 int components = channels; 114 if (components < channels) 123 if ((channels & 1) == 0) 125 double alpha = c[channels-1]; 128 for (i=0; i<channels-1; ++i) c[i] /= alpha [all...] |
/external/opencv3/modules/cudastereo/src/cuda/ |
disparity_bilateral_filter.hpp | 6 void disp_bilateral_filter(PtrStepSz<T> disp, PtrStepSzb img, int channels, int iters, const float *, const float *, size_t, int radius, short edge_disc, short max_disc, cudaStream_t stream);
|
/frameworks/support/v7/mediarouter/src/android/support/v7/media/ |
package.html | 5 <p>Contains APIs that control the routing of media channels and streams from the current device
|
/device/google/dragon/audio/hal/dsp/ |
dsp_util.h | 19 * input - The interleaved input buffer. Every "channels" samples is a frame. 20 * output - Pointers to output buffers. There are "channels" output buffers. 21 * channels - The number of samples per frame. 24 void dsp_util_deinterleave(int16_t *input, float *const *output, int channels, 31 * input - Pointers to input buffers. There are "channels" input buffers. 32 * output - The interleaved output buffer. Every "channels" samples is a 34 * channels - The number of samples per frame. 37 void dsp_util_interleave(float *const *input, int16_t *output, int channels,
|
/external/webrtc/webrtc/tools/e2e_quality/audio/ |
default.pa | 5 load-module module-null-sink sink_name=render sink_properties=device.description=render format=s16 rate=48000 channels=1 6 load-module module-null-sink sink_name=capture sink_properties=device.description=capture format=s16 rate=48000 channels=1
|
/libcore/luni/src/test/java/libcore/java/nio/channels/ |
ChannelsTest.java | 17 package libcore.java.nio.channels; 21 import java.nio.channels.Channels; 22 import java.nio.channels.IllegalBlockingModeException; 23 import java.nio.channels.Pipe; 24 import java.nio.channels.WritableByteChannel; 32 Channels.newInputStream(sourceChannel).read(); 45 Channels.newReader(sourceChannel, "UTF-8").read();
|
/external/skia/src/gpu/effects/ |
GrYUVEffect.h | 27 * channels to Y, U ,and V channels. The output color is (y, u, v, a) where a is the passed in 35 * channels to U and V channels. The output color is (u, v, 0, a) where a is the passed in 42 * RGB channels to Y, U, or V (replicated across all four output color channels). The alpha
|
/developers/build/prebuilts/androidtv/sample-inputs/app/src/main/java/com/example/android/sampletvinput/simple/ |
SimpleTvInputSetupActivity.java | 61 // Check if we already registered channels. 76 values.put(TvContract.Channels.COLUMN_INPUT_ID, mInputId); 79 values.put(TvContract.Channels.COLUMN_DISPLAY_NUMBER, CHANNEL_1_NUMBER); 80 values.put(TvContract.Channels.COLUMN_DISPLAY_NAME, CHANNEL_1_NAME); 81 values.put(TvContract.Channels.COLUMN_ORIGINAL_NETWORK_ID, CHANNEL_1_ORIG_NETWORK_ID); 82 values.put(TvContract.Channels.COLUMN_TRANSPORT_STREAM_ID, CHANNEL_1_TRANSPORT_STREAM_ID); 83 values.put(TvContract.Channels.COLUMN_SERVICE_ID, CHANNEL_1_SERVICE_ID); 84 getContentResolver().insert(TvContract.Channels.CONTENT_URI, values); 87 values.put(TvContract.Channels.COLUMN_DISPLAY_NUMBER, CHANNEL_2_NUMBER); 88 values.put(TvContract.Channels.COLUMN_DISPLAY_NAME, CHANNEL_2_NAME) [all...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/ |
SelectionKeyTest.java | 17 package org.apache.harmony.tests.java.nio.channels; 22 import java.nio.channels.CancelledKeyException; 23 import java.nio.channels.SelectableChannel; 24 import java.nio.channels.SelectionKey; 25 import java.nio.channels.Selector; 26 import java.nio.channels.SocketChannel; 95 * @tests java.nio.channels.SelectionKey#attach(Object) 113 * @tests java.nio.channels.SelectionKey#attachment() 124 * @tests java.nio.channels.SelectionKey#channel() 134 * @tests java.nio.channels.SelectionKey#interestOps( [all...] |
PipeTest.java | 17 package org.apache.harmony.tests.java.nio.channels; 21 import java.nio.channels.Pipe; 22 import java.nio.channels.Pipe.SinkChannel; 23 import java.nio.channels.Pipe.SourceChannel; 34 * @tests java.nio.channels.Pipe#open() 42 * @tests java.nio.channels.Pipe#sink() 51 * @tests java.nio.channels.Pipe#source()
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/spi/ |
MockAbstractSelector.java | 17 package org.apache.harmony.tests.java.nio.channels.spi; 20 import java.nio.channels.SelectionKey; 21 import java.nio.channels.Selector; 22 import java.nio.channels.spi.AbstractSelectableChannel; 23 import java.nio.channels.spi.AbstractSelectionKey; 24 import java.nio.channels.spi.AbstractSelector; 25 import java.nio.channels.spi.SelectorProvider;
|
/external/wpa_supplicant_8/src/p2p/ |
p2p_utils.c | 87 for (i = 0; i < a->channels; i++) { 88 for (j = 0; j < b->channels; j++) { 91 res->channel[res->channels] = a->channel[i]; 92 res->channels++; 93 if (res->channels == P2P_MAX_REG_CLASS_CHANNELS) 102 * @a: First set of supported channels 103 * @b: Second set of supported channels 104 * @res: Data structure for returning the intersection of support channels 106 * This function can be used to find a common set of supported channels. Both 107 * input channels sets are assumed to use the same country code. If differen [all...] |
/external/webrtc/webrtc/audio/ |
audio_sink.h | 33 size_t channels, 38 channels(channels), 44 size_t channels; // Number of channels in the audio data. member in struct:webrtc::AudioSinkInterface::Data
|
/packages/apps/TV/tests/common/src/com/android/tv/testing/ |
ChannelUtils.java | 23 import android.media.tv.TvContract.Channels; 57 projections[0] = Channels._ID; 71 public static void updateChannels(Context context, String inputId, List<ChannelInfo> channels) { 72 // Create a map from original network ID to channel row ID for existing channels. 75 String[] projection = {Channels._ID, Channels.COLUMN_ORIGINAL_NETWORK_ID}; 86 for (ChannelInfo channel : channels) { 89 values.put(Channels.COLUMN_INPUT_ID, inputId); 90 values.put(Channels.COLUMN_DISPLAY_NUMBER, channel.number); 91 values.put(Channels.COLUMN_DISPLAY_NAME, channel.name) [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
sunaudio.py | 27 channels = get_long_be(fp.read(4)) 35 return (data_size, encoding, sample_rate, channels, info) 41 data_size, encoding, sample_rate, channels, info = hdr 48 print 'Channels: ', channels
|
/prebuilts/gdb/linux-x86/lib/python2.7/ |
sunaudio.py | 27 channels = get_long_be(fp.read(4)) 35 return (data_size, encoding, sample_rate, channels, info) 41 data_size, encoding, sample_rate, channels, info = hdr 48 print 'Channels: ', channels
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
sunaudio.py | 27 channels = get_long_be(fp.read(4)) 35 return (data_size, encoding, sample_rate, channels, info) 41 data_size, encoding, sample_rate, channels, info = hdr 48 print 'Channels: ', channels
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
sunaudio.py | 27 channels = get_long_be(fp.read(4)) 35 return (data_size, encoding, sample_rate, channels, info) 41 data_size, encoding, sample_rate, channels, info = hdr 48 print 'Channels: ', channels
|