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

1 2 3

  /frameworks/base/core/java/android/hardware/radio/
RadioManager.aidl 26 parcelable RadioManager.ProgramInfo;
ITunerCallback.aidl 29 void onCurrentProgramInfoChanged(in RadioManager.ProgramInfo info);
TunerCallbackAdapter.java 43 @Nullable List<RadioManager.ProgramInfo> mLastCompleteList;
45 @Nullable RadioManager.ProgramInfo mCurrentProgramInfo;
93 @Nullable List<RadioManager.ProgramInfo> getLastCompleteList() {
105 @Nullable RadioManager.ProgramInfo getCurrentProgramInformation() {
150 public void onCurrentProgramInfoChanged(RadioManager.ProgramInfo info) {
152 Log.e(TAG, "ProgramInfo must not be null");
ProgramList.java 44 private final Map<ProgramSelector.Identifier, RadioManager.ProgramInfo> mPrograms =
196 private void putLocked(@NonNull RadioManager.ProgramInfo value) {
204 RadioManager.ProgramInfo removed = mPrograms.remove(Objects.requireNonNull(key));
215 public @NonNull List<RadioManager.ProgramInfo> toList() {
227 public @Nullable RadioManager.ProgramInfo get(@NonNull ProgramSelector.Identifier id) {
380 private final @NonNull Set<RadioManager.ProgramInfo> mModified;
384 @Nullable Set<RadioManager.ProgramInfo> modified,
395 mModified = Utils.createSet(in, RadioManager.ProgramInfo.CREATOR);
430 public @NonNull Set<RadioManager.ProgramInfo> getModified() {
RadioTuner.java 225 * @param info a ProgramInfo array of lengh 1 where the information is returned.
239 public abstract int getProgramInformation(RadioManager.ProgramInfo[] info);
251 * old image). In such case, a new ProgramInfo with updated image id will
293 public abstract @NonNull List<RadioManager.ProgramInfo>
539 public void onProgramInfoChanged(RadioManager.ProgramInfo info) {}
544 * @deprecated Use {@link #onProgramInfoChanged(RadioManager.ProgramInfo)} instead.
  /packages/apps/Car/Radio/src/com/android/car/radio/service/
IRadioCallback.aidl 31 void onCurrentProgramInfoChanged(in RadioManager.ProgramInfo info);
IRadioManager.aidl 96 RadioManager.ProgramInfo getCurrentProgramInfo();
114 List<RadioManager.ProgramInfo> getProgramList();
  /hardware/interfaces/broadcastradio/1.1/
ITunerCallback.hal 95 oneway currentProgramInfoChanged(ProgramInfo info);
ITuner.hal 34 * The tuned field of ProgramInfo should indicate if tuned to a valid
68 getProgramInformation_1_1() generates (Result result, ProgramInfo info);
120 generates (ProgramListResult result, vec<ProgramInfo> programList);
types.hal 291 struct ProgramInfo {
292 @1.0::ProgramInfo base;
  /hardware/interfaces/broadcastradio/1.1/default/
VirtualProgram.h 41 V1_1::ProgramInfo getProgramInfo(utils::HalRevision halRev) const;
46 std::vector<V1_1::ProgramInfo> getProgramInfoVector(const std::vector<VirtualProgram>& vec,
VirtualProgram.cpp 34 using V1_1::ProgramInfo;
48 ProgramInfo VirtualProgram::getProgramInfo(HalRevision halRev) const {
49 ProgramInfo info11 = {};
89 vector<ProgramInfo> getProgramInfoVector(const vector<VirtualProgram>& vec, HalRevision halRev) {
90 vector<ProgramInfo> out;
  /hardware/interfaces/broadcastradio/2.0/
ITunerCallback.hal 42 oneway onCurrentProgramInfoChanged(ProgramInfo info);
  /hardware/interfaces/broadcastradio/1.0/
ITunerCallback.hal 42 * @param info A ProgramInfo structure describing the tuned station.
44 oneway tuneComplete(Result result, ProgramInfo info);
48 * @param info A ProgramInfo structure describing the new tuned station.
50 oneway afSwitch(ProgramInfo info);
ITuner.hal 110 getProgramInformation() generates(Result result, ProgramInfo info);
  /hardware/interfaces/broadcastradio/2.0/default/
VirtualProgram.h 40 operator ProgramInfo() const;
  /hardware/interfaces/broadcastradio/1.0/default/
Utils.h 38 static void convertProgramInfoFromHal(ProgramInfo *info,
  /hardware/interfaces/broadcastradio/common/utils2x/include/broadcastradio-utils-2x/
Utils.h 135 size_t operator()(const V2_0::ProgramInfo& info) const;
139 bool operator()(const V2_0::ProgramInfo& info1, const V2_0::ProgramInfo& info2) const;
142 typedef std::unordered_set<V2_0::ProgramInfo, ProgramInfoHasher, ProgramInfoKeyEqual>
147 std::optional<std::string> getMetadataString(const V2_0::ProgramInfo& info,
  /packages/apps/TV/tests/common/src/com/android/tv/testing/data/
ProgramInfo.java 29 public final class ProgramInfo {
106 public static ProgramInfo fromCursor(Cursor c) {
124 public ProgramInfo(
148 * Create a instance of {@link ProgramInfo} whose content will be generated as much as possible.
150 public static ProgramInfo create() {
194 * Return complete {@link ProgramInfo} with the generated value. See: {@link #GEN_TITLE}, {@link
199 public ProgramInfo build(Context context, int index) {
207 return new ProgramInfo(
225 return "ProgramInfo{title="
242 ProgramInfo that = (ProgramInfo) o
    [all...]
ProgramUtils.java 49 Context context, Uri channelUri, ProgramInfo program, Clock clock) {
56 ProgramInfo program,
67 ProgramInfo program,
88 ProgramInfo programAt = program.build(context, index++);
142 ProgramInfo programInfo = ProgramInfo.create();
144 context, TvContract.buildChannelUri(channelId), programInfo, clock, durationMs);
  /packages/apps/Car/libs/car-broadcastradio-support/src/com/android/car/broadcastradio/support/platform/
ProgramInfoExt.java 24 import android.hardware.radio.RadioManager.ProgramInfo;
34 * Proposed extensions to android.hardware.radio.RadioManager.ProgramInfo.
77 public static @NonNull String getProgramName(@NonNull ProgramInfo info, @NameFlag int flags) {
102 Log.w(TAG, "ProgramInfo without a name nor channel name");
107 * Proposed reimplementation of {@link RadioManager#ProgramInfo#getMetadata}.
111 public static @NonNull RadioMetadata getMetadata(@NonNull ProgramInfo info) {
121 * Converts {@ProgramInfo} to {@MediaMetadata}.
125 * @param info {@link ProgramInfo} to convert
130 public static @NonNull MediaMetadata toMediaMetadata(@NonNull ProgramInfo info,
  /frameworks/base/services/core/java/com/android/server/broadcastradio/hal2/
TunerCallback.java 21 import android.hardware.broadcastradio.V2_0.ProgramInfo;
58 public void onCurrentProgramInfoChanged(ProgramInfo info) {
  /packages/apps/Car/libs/car-broadcastradio-support/src/com/android/car/broadcastradio/support/
Program.java 23 import android.hardware.radio.RadioManager.ProgramInfo;
34 * Contrary to {@link android.hardware.radio.RadioManager.ProgramInfo}, it doesn't hold runtime
82 * Builds a new {@link Program} object from {@link ProgramInfo}.
84 public static @NonNull Program fromProgramInfo(@NonNull ProgramInfo info) {
  /frameworks/base/services/core/jni/BroadcastRadio/
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) {
230 Return<void> NativeCallback::afSwitch(const V1_0::ProgramInfo& info) {
274 V1_0::ProgramInfo info;
332 Return<void> NativeCallback::currentProgramInfoChanged(const ProgramInfo& info) {
417 "onCurrentProgramInfoChanged", "(Landroid/hardware/radio/RadioManager$ProgramInfo;)V")
    [all...]
  /packages/apps/Car/Radio/src/com/android/car/radio/
RadioController.java 32 import android.hardware.radio.RadioManager.ProgramInfo;
77 private ProgramInfo mCurrentProgram;
126 void onProgramInfoChanged(@NonNull ProgramInfo info);
262 ProgramInfo current = mRadioManager.getCurrentProgramInfo();
299 public ProgramInfo getCurrentProgramInfo() {
481 ProgramInfo info = mCurrentProgram;
489 public List<ProgramInfo> getProgramList() {
502 public void onCurrentProgramInfoChanged(ProgramInfo info) {
606 ProgramInfo info = mCurrentProgram;

Completed in 314 milliseconds

1 2 3