/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 | 1401 public static class ProgramInfo implements Parcelable { class in RadioManager 1421 public ProgramInfo(@NonNull ProgramSelector selector, in ProgramInfo() method in RadioManager.ProgramInfo 1620 private ProgramInfo(Parcel in) { in ProgramInfo() method in RadioManager.ProgramInfo 1631 public static final Parcelable.Creator<ProgramInfo> CREATOR 1632 = new Parcelable.Creator<ProgramInfo>() { 1633 public ProgramInfo createFromParcel(Parcel in) { 1634 return new ProgramInfo(in); 1637 public ProgramInfo[] newArray(int size) { 1638 return new ProgramInfo[size]; 1681 if (!(obj instanceof ProgramInfo)) return false; in equals() [all …]
|
D | RadioManager.aidl | 26 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 | 350 [&](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 | 295 ArgumentCaptor<RadioManager.ProgramInfo> infoc = in testTuneAndGetPI() 296 ArgumentCaptor.forClass(RadioManager.ProgramInfo.class); in testTuneAndGetPI() 302 RadioManager.ProgramInfo[] info = new RadioManager.ProgramInfo[1]; in testTuneAndGetPI() 363 List<RadioManager.ProgramInfo> list = mRadioTuner.getProgramList(filter); in testGetProgramList() 375 List<RadioManager.ProgramInfo> list; in testTuneFromProgramList() 398 ArgumentCaptor<RadioManager.ProgramInfo> infoc = in testTuneFromProgramList() 399 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 | TunerCallback.java | 21 import android.hardware.broadcastradio.V2_0.ProgramInfo; 58 public void onCurrentProgramInfoChanged(ProgramInfo info) { in onCurrentProgramInfoChanged()
|
D | Convert.java | 30 import android.hardware.broadcastradio.V2_0.ProgramInfo; 361 static @NonNull RadioManager.ProgramInfo programInfoFromHal(@NonNull ProgramInfo info) { in programInfoFromHal() 366 return new RadioManager.ProgramInfo( in programInfoFromHal() 393 Set<RadioManager.ProgramInfo> modified = chunk.modified.stream(). in programListChunkFromHal()
|
/frameworks/base/api/ |
D | system-current.txt | 1903 …method public android.hardware.radio.RadioManager.ProgramInfo get(android.hardware.radio.ProgramSe… 1907 method public java.util.List<android.hardware.radio.RadioManager.ProgramInfo> toList(); 2127 public static class RadioManager.ProgramInfo implements android.os.Parcelable { 2146 …tatic final android.os.Parcelable.Creator<android.hardware.radio.RadioManager.ProgramInfo> CREATOR; 2209 …c abstract deprecated int getProgramInformation(android.hardware.radio.RadioManager.ProgramInfo[]); 2210 …abstract deprecated java.util.List<android.hardware.radio.RadioManager.ProgramInfo> getProgramList… 2248 method public void onProgramInfoChanged(android.hardware.radio.RadioManager.ProgramInfo);
|
/frameworks/base/config/ |
D | hiddenapi-public-dex.txt | 14308 …ndroid/hardware/radio/ProgramSelector$Identifier;)Landroid/hardware/radio/RadioManager$ProgramInfo; 14478 Landroid/hardware/radio/RadioManager$ProgramInfo; 14479 Landroid/hardware/radio/RadioManager$ProgramInfo;->CREATOR:Landroid/os/Parcelable$Creator; 14480 Landroid/hardware/radio/RadioManager$ProgramInfo;->describeContents()I 14481 Landroid/hardware/radio/RadioManager$ProgramInfo;->equals(Ljava/lang/Object;)Z 14482 Landroid/hardware/radio/RadioManager$ProgramInfo;->getChannel()I 14483 Landroid/hardware/radio/RadioManager$ProgramInfo;->getLogicallyTunedTo()Landroid/hardware/radio/Pro… 14484 Landroid/hardware/radio/RadioManager$ProgramInfo;->getMetadata()Landroid/hardware/radio/RadioMetada… 14485 Landroid/hardware/radio/RadioManager$ProgramInfo;->getPhysicallyTunedTo()Landroid/hardware/radio/Pr… 14486 Landroid/hardware/radio/RadioManager$ProgramInfo;->getRelatedContent()Ljava/util/Collection; [all …]
|
D | boot-image-profile.txt | 21824 …io/ITunerCallback;->onCurrentProgramInfoChanged(Landroid/hardware/radio/RadioManager$ProgramInfo;)V 21841 HSPLandroid/hardware/radio/RadioManager$ProgramInfo$1;-><init>()V 55515 Landroid/hardware/radio/RadioManager$ProgramInfo$1; 55516 Landroid/hardware/radio/RadioManager$ProgramInfo;
|