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

/packages/apps/TV/common/src/com/android/tv/common/recording/
H A DRecordedProgram.java39 public class RecordedProgram { class
77 public static final RecordedProgram fromCursor(Cursor cursor) {
114 public static ContentValues toValues(RecordedProgram recordedProgram) {
396 public RecordedProgram build() {
397 return new RecordedProgram(mId, mInputId, mChannelId, mTitle, mSeasonNumber,
410 public static Builder buildFrom(RecordedProgram orig) {
441 public static final Comparator<RecordedProgram> START_TIME_THEN_ID_COMPARATOR
442 = new Comparator<RecordedProgram>() {
444 public int compare(RecordedProgram lhs, RecordedProgram rh
485 private RecordedProgram(long id, String inputId, long channelId, String title, method in class:RecordedProgram
[all...]
/packages/apps/TV/usbtuner/src/com/android/usbtuner/tvinput/
H A DTunerSessionWorker.java407 private static class RecordedProgram { class in class:TunerSessionWorker
416 public RecordedProgram(Cursor cursor) { method in class:TunerSessionWorker.RecordedProgram
422 public RecordedProgram(long channelId, String dataUri) { method in class:TunerSessionWorker.RecordedProgram
427 public static RecordedProgram onQuery(Cursor c) {
428 RecordedProgram recording = null;
430 recording = new RecordedProgram(c);
440 private RecordedProgram getRecordedProgram(Uri recordedUri) {
442 try(Cursor c = resolver.query(recordedUri, RecordedProgram.PROJECTION, null, null, null)) {
444 RecordedProgram result = RecordedProgram
[all...]

Completed in 211 milliseconds