Searched defs:RecordedProgram (Results 1 - 2 of 2) sorted by relevance

/packages/apps/TV/src/com/android/tv/dvr/data/
H A DRecordedProgram.java49 public class RecordedProgram extends BaseProgram { class in inherits:BaseProgram
88 public static RecordedProgram fromCursor(Cursor cursor) {
129 public static ContentValues toValues(RecordedProgram recordedProgram) {
409 public RecordedProgram build() {
417 return new RecordedProgram(mId, mPackageName, mInputId, mChannelId, mTitle, mSeriesId,
430 public static Builder buildFrom(RecordedProgram orig) {
462 public static final Comparator<RecordedProgram> START_TIME_THEN_ID_COMPARATOR =
463 new Comparator<RecordedProgram>() {
465 public int compare(RecordedProgram lhs, RecordedProgram rh
510 private RecordedProgram(long id, String packageName, String inputId, long channelId, method in class:RecordedProgram
[all...]
/packages/apps/TV/src/com/android/tv/tuner/tvinput/
H A DTunerSessionWorker.java594 private static class RecordedProgram { class in class:TunerSessionWorker
603 public RecordedProgram(Cursor cursor) { method in class:TunerSessionWorker.RecordedProgram
609 public RecordedProgram(long channelId, String dataUri) { method in class:TunerSessionWorker.RecordedProgram
614 public static RecordedProgram onQuery(Cursor c) {
615 RecordedProgram recording = null;
617 recording = new RecordedProgram(c);
627 private RecordedProgram getRecordedProgram(Uri recordedUri) {
629 try(Cursor c = resolver.query(recordedUri, RecordedProgram.PROJECTION, null, null, null)) {
631 RecordedProgram result = RecordedProgram
[all...]

Completed in 74 milliseconds