HomeSort by relevance Sort by last modified time
    Searched refs:Band (Results 1 - 25 of 31) sorted by null

1 2

  /hardware/interfaces/broadcastradio/1.1/default/
VirtualRadio.cpp 30 using V1_0::Band;
42 {make_selector(Band::FM, 94900), "Wild 94.9", "Drake ft. Rihanna", "Too Good"},
43 {make_selector(Band::FM, 96500), "KOIT", "Celine Dion", "All By Myself"},
44 {make_selector(Band::FM, 97300), "Alice@97.3", "Drops of Jupiter", "Train"},
45 {make_selector(Band::FM, 99700), "99.7 Now!", "The Chainsmokers", "Closer"},
46 {make_selector(Band::FM, 101300), "101-3 KISS-FM", "Justin Timberlake", "Rock Your Body"},
47 {make_selector(Band::FM, 103700), "iHeart80s @ 103.7", "Michael Jackson", "Billie Jean"},
48 {make_selector(Band::FM, 106100), "106 KMEL", "Drake", "Marvins Room"},
BroadcastRadio.cpp 31 using V1_0::Band;
53 Band::AM,
59 Band::FM,
65 Band::AM_HD,
71 Band::FM_HD,
BroadcastRadio.h 31 V1_0::Band type;
Tuner.cpp 34 using V1_0::Band;
96 ALOGI("Auto-switching band to %s", toString(config).c_str());
274 Band band; local
277 band = mAmfmConfig.type;
279 return tuneByProgramSelector(utils::make_selector(band, channel, subChannel));
  /frameworks/base/services/core/jni/BroadcastRadio/
regions.cpp 34 using V1_0::Band;
42 std::vector<Band> mTypes;
57 { Band::FM },
66 { Band::FM, Band::FM_HD },
75 { Band::FM },
84 { Band::FM },
93 { Band::FM },
102 { Band::AM },
109 { Band::AM }
    [all...]
convert.h 54 JavaRef<jobject> ProgramInfoFromHal(JNIEnv *env, const V1_0::ProgramInfo &info, V1_0::Band band);
Tuner.cpp 48 using V1_0::Band;
88 Band mBand;
113 static jlong nativeInit(JNIEnv *env, jobject obj, jint halRev, bool withAudio, jint band) {
120 ctx->mBand = static_cast<Band>(band);
374 "Out-of-band images are not supported with HAL < 1.1");
TunerCallback.cpp 45 using V1_0::Band;
96 Band mBand;
convert.cpp 41 using V1_0::Band;
436 ALOGE("Unsupported band type: %d", config.type);
454 ALOGE("Unsupported band type: %d", config.type);
470 config.type = static_cast<Band>(env->GetIntField(jDescriptor, gjni.BandDescriptor.type));
490 ALOGE("Unexpected band config type");
631 JavaRef<jobject> ProgramInfoFromHal(JNIEnv *env, const V1_0::ProgramInfo &info, V1_0::Band band) {
632 auto selector = utils::make_selector(band, info.channel, info.subChannel);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
FilterGradRepresentation.java 54 mBands.add(new Band());
61 Vector<Band> mBands = new Vector<Band>();
62 Band mCurrentBand;
64 static class Band {
76 public Band() {
79 public Band(int x, int y) {
86 public Band(Band copy) {
102 for (Band point : mBands)
    [all...]
  /hardware/interfaces/wifi/hostapd/1.0/
IHostapd.hal 47 * Band to use for the SoftAp operations.
49 * used to indicate that any supported band can be used. This special
53 enum Band : uint32_t {
66 * the band.
71 * Note: hw_mode=a is used to specify that 5 GHz band is used with VHT.
97 * Band to use for the SoftAp operations.
99 Band band;
  /hardware/interfaces/broadcastradio/common/utils1x/include/broadcastradio-utils-1x/
Utils.h 49 bool isAm(const V1_0::Band band);
50 bool isFm(const V1_0::Band band);
68 V1_1::ProgramSelector make_selector(V1_0::Band band, uint32_t channel, uint32_t subChannel = 0);
  /external/webrtc/webrtc/modules/audio_processing/
audio_buffer.h 27 enum Band {
50 // Returns a pointer array to the full-band channels.
63 // split_bands(channel)[band][sample].
66 // 0 <= band < |num_bands_|
73 // Returns a pointer array to the channels for a specific band.
75 // split_channels(band)[channel][sample].
77 // 0 <= band < |num_bands_|
80 int16_t* const* split_channels(Band band);
81 const int16_t* const* split_channels_const(Band band) const
    [all...]
audio_buffer.cc 213 const int16_t* const* AudioBuffer::split_channels_const(Band band) const {
215 return split_data_->ibuf_const()->channels(band);
217 return band == kBand0To8kHz ? data_->ibuf_const()->channels() : nullptr;
221 int16_t* const* AudioBuffer::split_channels(Band band) {
224 return split_data_->ibuf()->channels(band);
226 return band == kBand0To8kHz ? data_->ibuf()->channels() : nullptr;
270 const float* const* AudioBuffer::split_channels_const_f(Band band) const
    [all...]
  /hardware/interfaces/broadcastradio/common/utils1x/
Utils.cpp 28 using V1_0::Band;
119 bool isAm(const Band band) {
120 return band == Band::AM || band == Band::AM_HD;
123 bool isFm(const Band band) {
124 return band == Band::FM || band == Band::FM_HD
    [all...]
  /hardware/interfaces/broadcastradio/1.0/
types.hal 41 /** value for field "type" of radio band described in struct radio_hal_band_config */
42 enum Band : uint32_t {
43 /** Amplitude Modulation band: LW, MW, SW */
45 /** Frequency Modulation band: FM */
78 /** Additional attributes for an FM band configuration */
94 /** Additional attributes for an AM band configuration */
100 /* Radio band configuration. Describes a given band supported by the radio
101 * module. The HAL can expose only one band per type with the the maximum range
103 * this module can operate and expose separate band configurations fo
    [all...]
  /hardware/interfaces/broadcastradio/1.0/default/
Utils.cpp 45 static_assert(RADIO_BAND_AM == static_cast<int>(Band::AM),
46 "AM band mismatch with legacy");
47 static_assert(RADIO_BAND_FM == static_cast<int>(Band::FM),
48 "FM band mismatch with legacy");
49 static_assert(RADIO_BAND_AM_HD == static_cast<int>(Band::AM_HD),
50 "AM HD band mismatch with legacy");
51 static_assert(RADIO_BAND_FM_HD == static_cast<int>(Band::FM_HD),
52 "FM HD band mismatch with legacy");
147 config->type = static_cast<Band>(halConfig->type);
156 if (config->type == Band::FM)
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
HostapdHal.java 234 ifaceParams.channelParams.band = getBand(config);
243 // Downgrade IHostapd.Band.BAND_ANY to IHostapd.Band.BAND_2_4_GHZ if ACS
247 if (ifaceParams.channelParams.band == IHostapd.Band.BAND_ANY) {
248 Log.d(TAG, "ACS is not supported on this device, using 2.4 GHz band.");
249 ifaceParams.channelParams.band = IHostapd.Band.BAND_2_4_GHZ;
415 bandType = IHostapd.Band.BAND_2_4_GHZ;
418 bandType = IHostapd.Band.BAND_5_GHZ
    [all...]
  /external/wpa_supplicant_8/hostapd/hidl/1.0/
hostapd.cpp 142 switch (iface_params.channelParams.band) {
143 case IHostapd::Band::BAND_2_4_GHZ:
146 case IHostapd::Band::BAND_5_GHZ:
154 case IHostapd::Band::BAND_ANY:
163 wpa_printf(MSG_ERROR, "Invalid band");
  /hardware/interfaces/wifi/hostapd/1.0/vts/functional/
hostapd_hidl_test.cpp 66 iface_params.channelParams.band = IHostapd::Band::BAND_ANY;
78 iface_params.channelParams.band = IHostapd::Band::BAND_2_4_GHZ;
90 iface_params.channelParams.band = IHostapd::Band::BAND_2_4_GHZ;
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
HostapdHalTest.java 174 assertEquals(IHostapd.Band.BAND_2_4_GHZ, mIfaceParamsCaptor.getValue().channelParams.band);
207 assertEquals(IHostapd.Band.BAND_5_GHZ, mIfaceParamsCaptor.getValue().channelParams.band);
241 assertEquals(IHostapd.Band.BAND_5_GHZ, mIfaceParamsCaptor.getValue().channelParams.band);
279 assertEquals(IHostapd.Band.BAND_2_4_GHZ, mIfaceParamsCaptor.getValue().channelParams.band);
317 assertEquals(IHostapd.Band.BAND_2_4_GHZ, mIfaceParamsCaptor.getValue().channelParams.band);
    [all...]
  /hardware/interfaces/broadcastradio/1.0/vts/functional/
VtsHalBroadcastradioV1_0TargetTest.cpp 44 using ::android::hardware::broadcastradio::V1_0::Band;
235 * Retrieves AM/FM band configuration from module properties.
241 * @param idx Band index to retrieve.
242 * @return Band configuration reference.
281 if (l.type == Band::AM || l.type == Band::AM_HD) {
283 } else if (l.type == Band::FM || l.type == Band::FM_HD) {
386 * - the implementation supports at one band
500 badConfig.type = Band::FM
597 auto& band = getBand(0); local
    [all...]
  /frameworks/base/core/java/android/hardware/radio/
ProgramSelector.java 45 * but the primary ID is sufficient (ie. after a full band scan).
401 * @param band the band.
407 @RadioManager.Band int band, int frequencyKhz) {
408 return createAmFmSelector(band, frequencyKhz, 0);
436 * @param band the band.
444 @RadioManager.Band int band, int frequencyKhz, int subChannel)
    [all...]
TunerAdapter.java 39 private @RadioManager.Band int mBand;
45 @RadioManager.Band int band) {
48 mBand = band;
RadioManager.java 94 /** AM radio band (LW/MW/SW).
97 /** FM radio band.
100 /** FM HD radio or DRM band.
103 /** AM HD radio or DRM band.
114 public @interface Band {}
534 /** Radio band descriptor: an element in ModuleProperties bands array.
546 throw new IllegalArgumentException("Unsupported band: " + type);
555 /** Region this band applies to. E.g. {@link #REGION_ITU_1}
556 * @return the region this band is associated to.
561 /** Band type, e.g {@link #BAND_FM}. Defines the subclass this descriptor can be cast to
    [all...]

Completed in 347 milliseconds

1 2