Searched refs:COLUMN_SERIES_ID (Results 1 – 9 of 9) sorted by relevance
/packages/apps/TV/tuner/src/com/android/tv/tuner/tvinput/ |
D | TunerRecordingSessionWorker.java | 108 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()
|
D | TunerRecordingSessionWorkerExoV2.java | 109 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/ |
D | DvrContract.java | 339 public static final String COLUMN_SERIES_ID = "series_id"; field in DvrContract.SeriesRecordings
|
D | DvrDatabaseHelper.java | 140 new ColumnInfo(SeriesRecordings.COLUMN_SERIES_ID, SQL_DATA_TYPE_STRING, NOT_NULL),
|
/packages/apps/TV/src/com/android/tv/data/api/ |
D | BaseProgram.java | 29 String COLUMN_SERIES_ID = "series_id"; field
|
/packages/apps/TV/src/com/android/tv/dvr/data/ |
D | SeriesRecording.java | 140 SeriesRecordings.COLUMN_SERIES_ID, 188 values.put(SeriesRecordings.COLUMN_SERIES_ID, r.getSeriesId()); in toContentValues()
|
D | RecordedProgram.java | 194 values.put(COLUMN_SERIES_ID, recordedProgram.getSeriesId()); in toValues()
|
/packages/apps/TV/src/com/android/tv/util/ |
D | TvProviderUtils.java | 45 public static final String EXTRA_PROGRAM_COLUMN_SERIES_ID = BaseProgram.COLUMN_SERIES_ID;
|
/packages/apps/TV/src/com/android/tv/data/ |
D | ProgramImpl.java | 554 putValue(values, COLUMN_SERIES_ID, program.getSeriesId()); in toContentValues()
|