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

1 2

  /hardware/interfaces/broadcastradio/1.1/
ITuner.hal 29 getProgramInformation_1_1() generates (Result result, ProgramInfo info);
75 generates (ProgramListResult result, vec<ProgramInfo> programList);
ITunerCallback.hal 32 * @param info A ProgramInfo structure describing the tuned station.
34 oneway tuneComplete_1_1(Result result, ProgramInfo info);
38 * @param info A ProgramInfo structure describing the new tuned station.
40 oneway afSwitch_1_1(ProgramInfo info);
types.hal 62 struct ProgramInfo {
63 @1.0::ProgramInfo base;
  /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);
types.hal 208 struct ProgramInfo {
  /frameworks/av/services/radio/
HidlUtils.h 28 using android::hardware::broadcastradio::V1_0::ProgramInfo;
41 const ProgramInfo *halInfo);
RadioHalHidl.h 39 using android::hardware::broadcastradio::V1_0::ProgramInfo;
72 virtual Return<void> tuneComplete(Result result, const ProgramInfo& info);
73 virtual Return<void> afSwitch(const ProgramInfo& info);
  /frameworks/base/core/java/android/hardware/radio/
RadioTuner.java 200 * @param info a ProgramInfo array of lengh 1 where the information is returned.
212 public abstract int getProgramInformation(RadioManager.ProgramInfo[] info);
226 public abstract @NonNull List<RadioManager.ProgramInfo> getProgramList(@Nullable String filter);
289 public void onProgramInfoChanged(RadioManager.ProgramInfo info) {}
292 * Meta data are also received in {@link RadioManager.ProgramInfo} when
293 * {@link #onProgramInfoChanged(RadioManager.ProgramInfo)} is called.
RadioModule.java 80 public native int getProgramInformation(RadioManager.ProgramInfo[] info);
82 public native @NonNull List<RadioManager.ProgramInfo> getProgramList(@Nullable String filter);
148 RadioManager.ProgramInfo info = (RadioManager.ProgramInfo)msg.obj;
RadioManager.java     [all...]
  /hardware/interfaces/broadcastradio/1.0/default/
Utils.h 38 static void convertProgramInfoFromHal(ProgramInfo *info,
  /packages/apps/TV/tests/common/src/com/android/tv/testing/
ProgramInfo.java 27 public final class ProgramInfo {
103 public static ProgramInfo fromCursor(Cursor c) {
121 public ProgramInfo(String title, String episode, int seasonNumber, int episodeNumber,
137 * Create a instance of {@link ProgramInfo} whose content will be generated as much as possible.
139 public static ProgramInfo create() {
180 * Return complete {@link ProgramInfo} with the generated value.
185 public ProgramInfo build(Context context, int index) {
193 return new ProgramInfo(
211 return "ProgramInfo{title=" + title
224 ProgramInfo that = (ProgramInfo) o
    [all...]
ProgramUtils.java 47 public static void populatePrograms(Context context, Uri channelUri, ProgramInfo program) {
67 ProgramInfo programAt = program.build(context, index++);
ChannelInfo.java 62 public final ProgramInfo program;
112 int audioLanguageCount, boolean hasClosedCaption, ProgramInfo program,
201 private ProgramInfo mProgram;
275 public Builder setProgram(ProgramInfo program) {
  /packages/apps/TV/tests/unit/src/com/android/tv/data/
ProgramDataManagerTest.java 35 import com.android.tv.testing.ProgramInfo;
99 * Test for {@link ProgramInfo#getIndex} and {@link ProgramInfo#getStartTimeMs}.
102 ProgramInfo stub = ProgramInfo.create();
106 ProgramInfo programAt = stub.build(getContext(), index);
140 ProgramInfo stub = ProgramInfo.create();
143 ProgramInfo programInfoAt = stub.build(getContext(), index);
172 ProgramInfo stub = ProgramInfo.create()
    [all...]
  /hardware/interfaces/broadcastradio/1.1/default/
Utils.h 43 static void convertProgramInfoFromHal(ProgramInfo *info,
Tuner.cpp 36 ProgramInfo info;
176 return getProgramInformation_1_1([&](Result result, const ProgramInfo& info) {
185 ProgramInfo info;
208 hidl_vec<ProgramInfo> pList;
  /packages/apps/TV/tests/input/src/com/android/tv/testinput/
TestTvInputSetupActivity.java 36 import com.android.tv.testing.ProgramInfo;
81 ProgramInfo programInfo = ProgramInfo.create();
83 programInfo);
  /external/deqp/framework/opengl/
gluShaderProgram.hpp 60 struct ProgramInfo
66 ProgramInfo (void) : linkOk(false), linkTimeUs(0) {}
74 glu::ProgramInfo program;
130 const ProgramInfo& getInfo (void) const { return m_info; }
148 ProgramInfo m_info;
196 const ProgramInfo& getProgramInfo (void) const { return m_program.getInfo(); }
  /developers/build/prebuilts/androidtv/sample-inputs/app/src/main/java/com/example/android/sampletvinput/rich/
ChannelXMLParser.java 20 import com.example.android.sampletvinput.rich.RichTvInputService.ProgramInfo;
145 List<ProgramInfo> programs = new ArrayList<>();
162 private static ProgramInfo parseProgram(XmlPullParser parser) {
196 return new ProgramInfo(title, posterArtUri, description, durationSec,
RichTvInputService.java 434 public final List<ProgramInfo> programs;
438 List<ProgramInfo> programs) {
451 public static final class ProgramInfo {
461 public ProgramInfo(String title, String posterArtUri, String description, long durationSec,
  /hardware/interfaces/broadcastradio/1.1/vts/functional/
VtsHalBroadcastradioV1_1TargetTest.cpp 48 using ::android::hardware::broadcastradio::V1_1::ProgramInfo;
93 virtual Return<void> tuneComplete(Result result __unused, const V1_0::ProgramInfo& info __unused) {
97 virtual Return<void> tuneComplete_1_1(Result result, const ProgramInfo& info __unused) {
103 virtual Return<void> afSwitch(const V1_0::ProgramInfo& info __unused) {
107 virtual Return<void> afSwitch_1_1(const ProgramInfo& info __unused) {
440 ProgramInfo halInfo;
443 [&](Result result, const ProgramInfo& info) {
  /developers/build/prebuilts/androidtv/sample-inputs/app/src/main/java/com/example/android/sampletvinput/syncadapter/
SyncAdapter.java 38 import com.example.android.sampletvinput.rich.RichTvInputService.ProgramInfo;
96 for (ProgramInfo program : channelInfo.programs) {
131 ProgramInfo program = channelInfo.programs.get(j);
  /hardware/interfaces/broadcastradio/1.0/vts/functional/
VtsHalBroadcastradioV1_0TargetTest.cpp 47 using ::android::hardware::broadcastradio::V1_0::ProgramInfo;
113 virtual Return<void> tuneComplete(Result result, const ProgramInfo& info) {
119 virtual Return<void> afSwitch(const ProgramInfo& info __unused) {
182 void onTuneCompleteCallback(Result result, const ProgramInfo& info) {
247 ProgramInfo mProgramInfoCallbackData;
562 ProgramInfo halInfo;
565 [&](Result result, const ProgramInfo& info) {

Completed in 242 milliseconds

1 2