Home
last modified time | relevance | path

Searched refs:COLUMN_SERIES_ID (Results 1 – 9 of 9) sorted by relevance

/packages/apps/TV/tuner/src/com/android/tv/tuner/tvinput/
DTunerRecordingSessionWorker.java108 private static final String COLUMN_SERIES_ID = "series_id"; field in TunerRecordingSessionWorker
572 if ((index = c.getColumnIndex(COLUMN_SERIES_ID)) >= 0 && !c.isNull(index)) { in getRecordedProgram()
606 if (checkRecordedProgramTable(COLUMN_SERIES_ID)) { in insertRecordedProgram()
607 values.put(COLUMN_SERIES_ID, mSeriesId); in insertRecordedProgram()
675 if (getExistingColumns(uri).contains(COLUMN_SERIES_ID)) { in checkProgramTable()
677 } else if (addColumnToTable(uri, COLUMN_SERIES_ID)) { in checkProgramTable()
691 case COLUMN_SERIES_ID: in checkRecordedProgramTable()
694 if (getExistingColumns(uri).contains(COLUMN_SERIES_ID)) { in checkRecordedProgramTable()
696 } else if (addColumnToTable(uri, COLUMN_SERIES_ID)) { in checkRecordedProgramTable()
757 projectionList.add(COLUMN_SERIES_ID); in createProjectionWithSeriesId()
DTunerRecordingSessionWorkerExoV2.java109 private static final String COLUMN_SERIES_ID = "series_id"; field in TunerRecordingSessionWorkerExoV2
575 if ((index = c.getColumnIndex(COLUMN_SERIES_ID)) >= 0 && !c.isNull(index)) { in getRecordedProgram()
609 if (checkRecordedProgramTable(COLUMN_SERIES_ID)) { in insertRecordedProgram()
610 values.put(COLUMN_SERIES_ID, mSeriesId); in insertRecordedProgram()
678 if (getExistingColumns(uri).contains(COLUMN_SERIES_ID)) { in checkProgramTable()
680 } else if (addColumnToTable(uri, COLUMN_SERIES_ID)) { in checkProgramTable()
694 case COLUMN_SERIES_ID: in checkRecordedProgramTable()
697 if (getExistingColumns(uri).contains(COLUMN_SERIES_ID)) { in checkRecordedProgramTable()
699 } else if (addColumnToTable(uri, COLUMN_SERIES_ID)) { in checkRecordedProgramTable()
760 projectionList.add(COLUMN_SERIES_ID); in createProjectionWithSeriesId()
/packages/apps/TV/src/com/android/tv/dvr/provider/
DDvrContract.java339 public static final String COLUMN_SERIES_ID = "series_id"; field in DvrContract.SeriesRecordings
DDvrDatabaseHelper.java140 new ColumnInfo(SeriesRecordings.COLUMN_SERIES_ID, SQL_DATA_TYPE_STRING, NOT_NULL),
/packages/apps/TV/src/com/android/tv/data/api/
DBaseProgram.java29 String COLUMN_SERIES_ID = "series_id"; field
/packages/apps/TV/src/com/android/tv/dvr/data/
DSeriesRecording.java140 SeriesRecordings.COLUMN_SERIES_ID,
188 values.put(SeriesRecordings.COLUMN_SERIES_ID, r.getSeriesId()); in toContentValues()
DRecordedProgram.java194 values.put(COLUMN_SERIES_ID, recordedProgram.getSeriesId()); in toValues()
/packages/apps/TV/src/com/android/tv/util/
DTvProviderUtils.java45 public static final String EXTRA_PROGRAM_COLUMN_SERIES_ID = BaseProgram.COLUMN_SERIES_ID;
/packages/apps/TV/src/com/android/tv/data/
DProgramImpl.java554 putValue(values, COLUMN_SERIES_ID, program.getSeriesId()); in toContentValues()