OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BandConfig
(Results
1 - 25
of
34
) sorted by null
1
2
/frameworks/av/services/radio/
HidlUtils.h
27
using android::hardware::broadcastradio::V1_0::
BandConfig
;
35
const
BandConfig
*halConfig);
38
static void convertBandConfigToHal(
BandConfig
*halConfig,
RadioHalHidl.h
38
using android::hardware::broadcastradio::V1_0::
BandConfig
;
71
virtual Return<void> configChange(Result result, const
BandConfig
& config);
RadioHalHidl.cpp
77
BandConfig
halConfig;
147
BandConfig
halConfig;
160
BandConfig
halConfig;
163
mHalTuner->getConfiguration([&](Result result, const
BandConfig
& config) {
249
Return<void> RadioHalHidl::Tuner::configChange(Result result, const
BandConfig
& config)
/hardware/interfaces/broadcastradio/1.0/default/
BroadcastRadio.h
36
Return<void> openTuner(const
BandConfig
& config, bool audio,
53
void convertBandConfigFromHal(
BandConfig
*config,
58
const
BandConfig
*config);
Utils.h
32
static void convertBandConfigFromHal(
BandConfig
*config,
37
const
BandConfig
*config);
Tuner.h
37
Return<Result> setConfiguration(const
BandConfig
& config) override;
Utils.cpp
143
BandConfig
*config,
182
BandConfig
*bands =
183
new
BandConfig
[halProperties->num_bands];
196
const
BandConfig
*config)
Tuner.cpp
35
BandConfig
config;
104
Return<Result> Tuner::setConfiguration(const
BandConfig
& config) {
118
BandConfig
config;
BroadcastRadio.cpp
119
Return<void> BroadcastRadio::openTuner(const
BandConfig
& config, bool audio,
/hardware/interfaces/broadcastradio/1.1/default/
Utils.h
29
using V1_0::
BandConfig
;
37
static void convertBandConfigFromHal(
BandConfig
*config,
42
const
BandConfig
*config);
BroadcastRadio.h
30
using V1_0::
BandConfig
;
40
Return<void> openTuner(const
BandConfig
& config, bool audio,
55
void convertBandConfigFromHal(
BandConfig
*config,
60
const
BandConfig
*config);
Tuner.h
37
Return<Result> setConfiguration(const
BandConfig
& config) override;
Utils.cpp
149
BandConfig
*config,
187
BandConfig
*bands =
188
new
BandConfig
[halProperties->num_bands];
199
void Utils::convertBandConfigToHal(radio_hal_band_config_t *halConfig, const
BandConfig
*config)
Tuner.cpp
35
BandConfig
config;
111
Return<Result> Tuner::setConfiguration(const
BandConfig
& config) {
125
BandConfig
config;
/hardware/interfaces/broadcastradio/1.0/
IBroadcastRadio.hal
37
* @param config A
BandConfig
struct containing the band configuration to apply
49
openTuner(
BandConfig
config, bool audio, ITunerCallback callback)
ITuner.hal
34
setConfiguration(
BandConfig
config) generates(Result result);
42
getConfiguration() generates(Result result,
BandConfig
config);
ITunerCallback.hal
33
* @param config A
BandConfig
structure describing the new configuration
36
oneway configChange(Result result,
BandConfig
config);
types.hal
105
struct
BandConfig
{
139
vec<
BandConfig
> bands; /** band descriptors */
/frameworks/base/core/java/android/hardware/radio/
RadioTuner.java
36
* RadioManager.
BandConfig
, boolean, RadioTuner.Callback, Handler)}.
71
public abstract int setConfiguration(RadioManager.
BandConfig
config);
75
* @param config a
BandConfig
array of lengh 1 where the configuration is returned.
87
public abstract int getConfiguration(RadioManager.
BandConfig
[] config);
239
* RadioManager.
BandConfig
, boolean, Callback, Handler)}
278
* {@link RadioManager#openTuner(int, RadioManager.
BandConfig
, boolean, Callback, Handler)}
279
* or {@link RadioTuner#setConfiguration(RadioManager.
BandConfig
)}
281
public void onConfigurationChanged(RadioManager.
BandConfig
config) {}
311
* {@link RadioManager#openTuner(int, RadioManager.
BandConfig
, boolean, Callback, Handler)}.
RadioModule.java
42
RadioModule(int moduleId, RadioManager.
BandConfig
config, boolean withAudio,
49
RadioManager.
BandConfig
config, boolean withAudio);
64
public native int setConfiguration(RadioManager.
BandConfig
config);
66
public native int getConfiguration(RadioManager.
BandConfig
[] config);
127
RadioManager.
BandConfig
config = (RadioManager.
BandConfig
)msg.obj;
RadioManager.java
131
* For use with {@link #openTuner(int,
BandConfig
, boolean, Callback, Handler)}.
660
public static class
BandConfig
implements Parcelable {
664
BandConfig
(BandDescriptor descriptor) {
668
BandConfig
(int region, int type, int lowerLimit, int upperLimit, int spacing) {
672
private
BandConfig
(Parcel in) {
719
public static final Parcelable.Creator<
BandConfig
> CREATOR
720
= new Parcelable.Creator<
BandConfig
>() {
721
public
BandConfig
createFromParcel(Parcel in) {
722
return new
BandConfig
(in);
725
public
BandConfig
[] newArray(int size)
[
all
...]
/frameworks/av/media/libeffects/testlibs/
AudioEqualizer.h
35
struct
BandConfig
{
50
const
BandConfig
* bandConfigs;
/hardware/interfaces/broadcastradio/1.0/vts/functional/
VtsHalBroadcastradioV1_0TargetTest.cpp
45
using ::android::hardware::broadcastradio::V1_0::
BandConfig
;
107
virtual Return<void> configChange(Result result, const
BandConfig
& config) {
172
void onConfigChangeCallback(Result result, const
BandConfig
& config) {
248
BandConfig
mBandConfigCallbackData;
258
* Compares two
BandConfig
objects for testing purposes.
260
static bool operator==(const
BandConfig
& l, const
BandConfig
& r) {
327
BandConfig
halConfig;
330
mTuner->getConfiguration([&](Result result, const
BandConfig
& config) {
426
BandConfig
halConfig
[
all
...]
/packages/apps/Car/Radio/src/com/android/car/radio/
RadioBackgroundScanner.java
74
RadioManager.
BandConfig
config = getRadioConfig(radioBand);
90
* Returns the proper {@link android.hardware.radio.RadioManager.
BandConfig
} for the given
94
private RadioManager.
BandConfig
getRadioConfig(int selectedRadioBand) {
200
public void onConfigurationChanged(RadioManager.
BandConfig
config) {
/hardware/interfaces/broadcastradio/1.1/vts/functional/
VtsHalBroadcastradioV1_1TargetTest.cpp
39
using ::android::hardware::broadcastradio::V1_0::
BandConfig
;
87
virtual Return<void> configChange(Result result, const
BandConfig
& config __unused) {
284
BandConfig
halConfig;
287
mTuner->getConfiguration([&](Result result, const
BandConfig
& config) {
343
BandConfig
halConfig;
346
mTuner->getConfiguration([&](Result result, const
BandConfig
& config) {
Completed in 762 milliseconds
1
2