/frameworks/base/core/java/android/hardware/radio/ |
D | ProgramList.java | 44 private final Map<ProgramSelector.Identifier, RadioManager.ProgramInfo> mPrograms = 196 private void putLocked(@NonNull RadioManager.ProgramInfo value) { in putLocked() 204 RadioManager.ProgramInfo removed = mPrograms.remove(Objects.requireNonNull(key)); in removeLocked() 215 public @NonNull List<RadioManager.ProgramInfo> toList() { in toList() 227 public @Nullable RadioManager.ProgramInfo get(@NonNull ProgramSelector.Identifier id) { in get() 380 private final @NonNull Set<RadioManager.ProgramInfo> mModified; 384 @Nullable Set<RadioManager.ProgramInfo> modified, in Chunk() 395 mModified = Utils.createSet(in, RadioManager.ProgramInfo.CREATOR); in Chunk() 430 public @NonNull Set<RadioManager.ProgramInfo> getModified() { in getModified()
|
D | TunerCallbackAdapter.java | 43 @Nullable List<RadioManager.ProgramInfo> mLastCompleteList; 45 @Nullable RadioManager.ProgramInfo mCurrentProgramInfo; 93 @Nullable List<RadioManager.ProgramInfo> getLastCompleteList() { in getLastCompleteList() 105 @Nullable RadioManager.ProgramInfo getCurrentProgramInformation() { in getCurrentProgramInformation() 150 public void onCurrentProgramInfoChanged(RadioManager.ProgramInfo info) { in onCurrentProgramInfoChanged()
|
D | RadioTuner.java | 239 public abstract int getProgramInformation(RadioManager.ProgramInfo[] info); in getProgramInformation() 293 public abstract @NonNull List<RadioManager.ProgramInfo> 539 public void onProgramInfoChanged(RadioManager.ProgramInfo info) {} in onProgramInfoChanged()
|
D | TunerAdapter.java | 204 public int getProgramInformation(RadioManager.ProgramInfo[] info) { in getProgramInformation() 210 RadioManager.ProgramInfo current = mCallback.getCurrentProgramInformation(); in getProgramInformation() 238 public @NonNull List<RadioManager.ProgramInfo> 255 List<RadioManager.ProgramInfo> list = mCallback.getLastCompleteList(); in getProgramList()
|
D | RadioManager.java | 1408 public static class ProgramInfo implements Parcelable { class in RadioManager 1428 public ProgramInfo(@NonNull ProgramSelector selector, in ProgramInfo() method in RadioManager.ProgramInfo 1627 private ProgramInfo(Parcel in) { in ProgramInfo() method in RadioManager.ProgramInfo 1638 public static final @android.annotation.NonNull Parcelable.Creator<ProgramInfo> CREATOR 1639 = new Parcelable.Creator<ProgramInfo>() { 1640 public ProgramInfo createFromParcel(Parcel in) { 1641 return new ProgramInfo(in); 1644 public ProgramInfo[] newArray(int size) { 1645 return new ProgramInfo[size]; 1689 if (!(obj instanceof ProgramInfo)) return false; in equals() [all …]
|
D | RadioManager.aidl | 29 parcelable RadioManager.ProgramInfo;
|
D | ITunerCallback.aidl | 29 void onCurrentProgramInfoChanged(in RadioManager.ProgramInfo info); in onCurrentProgramInfoChanged()
|
/frameworks/base/services/core/jni/BroadcastRadio/ |
D | TunerCallback.cpp | 50 using V1_1::ProgramInfo; 99 V1_0::ProgramInfo mCurrentProgramInfo; 111 virtual Return<void> tuneComplete(Result result, const V1_0::ProgramInfo& info); 112 virtual Return<void> afSwitch(const V1_0::ProgramInfo& info); 122 virtual Return<void> currentProgramInfoChanged(const ProgramInfo& info); 186 Return<void> NativeCallback::tuneComplete(Result result, const V1_0::ProgramInfo& info) { in tuneComplete() 230 Return<void> NativeCallback::afSwitch(const V1_0::ProgramInfo& info) { in afSwitch() 274 V1_0::ProgramInfo info; in newMetadata() 332 Return<void> NativeCallback::currentProgramInfoChanged(const ProgramInfo& info) { in currentProgramInfoChanged()
|
D | convert.h | 54 JavaRef<jobject> ProgramInfoFromHal(JNIEnv *env, const V1_0::ProgramInfo &info, V1_0::Band band); 55 JavaRef<jobject> ProgramInfoFromHal(JNIEnv *env, const V1_1::ProgramInfo &info);
|
D | convert.cpp | 124 } ProgramInfo; member 613 static JavaRef<jobject> ProgramInfoFromHal(JNIEnv *env, const V1_0::ProgramInfo &info10, in ProgramInfoFromHal() 614 const V1_1::ProgramInfo *info11, const ProgramSelector &selector) { in ProgramInfoFromHal() 626 return make_javaref(env, env->NewObject(gjni.ProgramInfo.clazz, gjni.ProgramInfo.cstor, in ProgramInfoFromHal() 631 JavaRef<jobject> ProgramInfoFromHal(JNIEnv *env, const V1_0::ProgramInfo &info, V1_0::Band band) { in ProgramInfoFromHal() 636 JavaRef<jobject> ProgramInfoFromHal(JNIEnv *env, const V1_1::ProgramInfo &info) { in ProgramInfoFromHal() 716 gjni.ProgramInfo.clazz = MakeGlobalRefOrDie(env, programInfoClass); in register_android_server_broadcastradio_convert() 717 gjni.ProgramInfo.cstor = GetMethodIDOrDie(env, programInfoClass, "<init>", "(" in register_android_server_broadcastradio_convert()
|
D | BroadcastRadioService.cpp | 54 using V1_0::ProgramInfo;
|
D | Tuner.cpp | 351 [&](ProgramListResult result, const hidl_vec<V1_1::ProgramInfo>& programList) { in nativeGetProgramList()
|
/frameworks/base/core/tests/BroadcastRadioTests/src/android/hardware/radio/tests/functional/ |
D | RadioTunerTest.java | 292 ArgumentCaptor<RadioManager.ProgramInfo> infoc = in testTuneAndGetPI() 293 ArgumentCaptor.forClass(RadioManager.ProgramInfo.class); in testTuneAndGetPI() 299 RadioManager.ProgramInfo[] info = new RadioManager.ProgramInfo[1]; in testTuneAndGetPI() 360 List<RadioManager.ProgramInfo> list = mRadioTuner.getProgramList(filter); in testGetProgramList() 372 List<RadioManager.ProgramInfo> list; in testTuneFromProgramList() 395 ArgumentCaptor<RadioManager.ProgramInfo> infoc = in testTuneFromProgramList() 396 ArgumentCaptor.forClass(RadioManager.ProgramInfo.class); in testTuneFromProgramList()
|
/frameworks/base/services/core/java/com/android/server/broadcastradio/hal1/ |
D | TunerCallback.java | 122 public void onCurrentProgramInfoChanged(RadioManager.ProgramInfo info) { in onCurrentProgramInfoChanged() 161 List<RadioManager.ProgramInfo> modified; in sendProgramListUpdate() 168 Set<RadioManager.ProgramInfo> modifiedSet = modified.stream().collect(Collectors.toSet()); in sendProgramListUpdate()
|
D | Tuner.java | 91 private native List<RadioManager.ProgramInfo> nativeGetProgramList(long nativeContext, in nativeGetProgramList() 244 List<RadioManager.ProgramInfo> getProgramList(Map vendorFilter) { in getProgramList() 248 List<RadioManager.ProgramInfo> list = nativeGetProgramList(mNativeContext, sFilter); in getProgramList()
|
/frameworks/base/services/core/java/com/android/server/broadcastradio/hal2/ |
D | Convert.java | 30 import android.hardware.broadcastradio.V2_0.ProgramInfo; 371 static @NonNull RadioManager.ProgramInfo programInfoFromHal(@NonNull ProgramInfo info) { in programInfoFromHal() 376 return new RadioManager.ProgramInfo( in programInfoFromHal() 403 Set<RadioManager.ProgramInfo> modified = chunk.modified.stream(). in programListChunkFromHal()
|
D | RadioModule.java | 31 import android.hardware.broadcastradio.V2_0.ProgramInfo; 71 private RadioManager.ProgramInfo mProgramInfo = null; 85 public void onCurrentProgramInfoChanged(ProgramInfo halProgramInfo) {
|
/frameworks/base/api/ |
D | system-current.txt | 2893 …method @Nullable public android.hardware.radio.RadioManager.ProgramInfo get(@NonNull android.hardw… 2897 method @NonNull public java.util.List<android.hardware.radio.RadioManager.ProgramInfo> toList(); 3117 public static class RadioManager.ProgramInfo implements android.os.Parcelable { 3136 …tatic final android.os.Parcelable.Creator<android.hardware.radio.RadioManager.ProgramInfo> CREATOR; 3199 …cated public abstract int getProgramInformation(android.hardware.radio.RadioManager.ProgramInfo[]); 3200 …ull public abstract java.util.List<android.hardware.radio.RadioManager.ProgramInfo> getProgramList… 3238 method public void onProgramInfoChanged(android.hardware.radio.RadioManager.ProgramInfo);
|
/frameworks/base/non-updatable-api/ |
D | system-current.txt | 2893 …method @Nullable public android.hardware.radio.RadioManager.ProgramInfo get(@NonNull android.hardw… 2897 method @NonNull public java.util.List<android.hardware.radio.RadioManager.ProgramInfo> toList(); 3117 public static class RadioManager.ProgramInfo implements android.os.Parcelable { 3136 …tatic final android.os.Parcelable.Creator<android.hardware.radio.RadioManager.ProgramInfo> CREATOR; 3199 …cated public abstract int getProgramInformation(android.hardware.radio.RadioManager.ProgramInfo[]); 3200 …ull public abstract java.util.List<android.hardware.radio.RadioManager.ProgramInfo> getProgramList… 3238 method public void onProgramInfoChanged(android.hardware.radio.RadioManager.ProgramInfo);
|
/frameworks/base/config/ |
D | hiddenapi-greylist-max-o.txt | 24573 …llback$Stub$Proxy;->onCurrentProgramInfoChanged(Landroid/hardware/radio/RadioManager$ProgramInfo;)V 24600 …io/ITunerCallback;->onCurrentProgramInfoChanged(Landroid/hardware/radio/RadioManager$ProgramInfo;)V 24638 Landroid/hardware/radio/ProgramList;->putLocked(Landroid/hardware/radio/RadioManager$ProgramInfo;)V 24714 Landroid/hardware/radio/RadioManager$ProgramInfo;-><init>(Landroid/hardware/radio/ProgramSelector;L… 24715 Landroid/hardware/radio/RadioManager$ProgramInfo;-><init>(Landroid/os/Parcel;)V 24716 Landroid/hardware/radio/RadioManager$ProgramInfo;->FLAG_LIVE:I 24717 Landroid/hardware/radio/RadioManager$ProgramInfo;->FLAG_MUTED:I 24718 Landroid/hardware/radio/RadioManager$ProgramInfo;->FLAG_STEREO:I 24719 Landroid/hardware/radio/RadioManager$ProgramInfo;->FLAG_TRAFFIC_ANNOUNCEMENT:I 24720 Landroid/hardware/radio/RadioManager$ProgramInfo;->FLAG_TRAFFIC_PROGRAM:I [all …]
|
D | boot-image-profile.txt | 7414 HSPLandroid/hardware/radio/RadioManager$ProgramInfo$1;-><init>()V 33832 Landroid/hardware/radio/RadioManager$ProgramInfo$1; 33833 Landroid/hardware/radio/RadioManager$ProgramInfo;
|