Home
last modified time | relevance | path

Searched refs:COLUMN_START_TIME_UTC_MILLIS (Results 1 – 20 of 20) sorted by relevance

/packages/providers/TvProvider/src/com/android/providers/tv/
DTvProvider.java113 private static final String DEFAULT_PROGRAMS_SORT_ORDER = Programs.COLUMN_START_TIME_UTC_MILLIS
257 sProgramProjectionMap.put(Programs.COLUMN_START_TIME_UTC_MILLIS, in initProjectionMaps()
258 Programs.COLUMN_START_TIME_UTC_MILLIS); in initProjectionMaps()
304 sWatchedProgramProjectionMap.put(WatchedPrograms.COLUMN_START_TIME_UTC_MILLIS, in initProjectionMaps()
305 WatchedPrograms.COLUMN_START_TIME_UTC_MILLIS); in initProjectionMaps()
336 sRecordedProgramProjectionMap.put(RecordedPrograms.COLUMN_START_TIME_UTC_MILLIS, in initProjectionMaps()
337 RecordedPrograms.COLUMN_START_TIME_UTC_MILLIS); in initProjectionMaps()
605 + RecordedPrograms.COLUMN_START_TIME_UTC_MILLIS + " INTEGER,"
829 + Programs.COLUMN_START_TIME_UTC_MILLIS + " INTEGER," in onCreate()
863 + "(" + Programs.COLUMN_START_TIME_UTC_MILLIS + ");"); in onCreate()
[all …]
/packages/apps/TV/tests/common/src/com/android/tv/testing/
DFakeTvProvider.java102 Programs.COLUMN_START_TIME_UTC_MILLIS + " ASC";
274 Programs.COLUMN_START_TIME_UTC_MILLIS, Programs.COLUMN_START_TIME_UTC_MILLIS); in sProgramProjectionMap.put() argument
320 WatchedPrograms.COLUMN_START_TIME_UTC_MILLIS, in sWatchedProgramProjectionMap.put() argument
321 WatchedPrograms.COLUMN_START_TIME_UTC_MILLIS); in sWatchedProgramProjectionMap.put()
357 RecordedPrograms.COLUMN_START_TIME_UTC_MILLIS, in sRecordedProgramProjectionMap.put() argument
358 RecordedPrograms.COLUMN_START_TIME_UTC_MILLIS); in sRecordedProgramProjectionMap.put()
676 + RecordedPrograms.COLUMN_START_TIME_UTC_MILLIS
1093 + Programs.COLUMN_START_TIME_UTC_MILLIS in onCreate()
1171 + Programs.COLUMN_START_TIME_UTC_MILLIS in onCreate()
1197 + WatchedPrograms.COLUMN_START_TIME_UTC_MILLIS in onCreate()
[all …]
/packages/providers/TvProvider/tests/src/com/android/providers/tv/
DDatabaseHelperTest.java150 + TvContract.Programs.COLUMN_START_TIME_UTC_MILLIS + " INTEGER," in onCreate()
179 + "(" + TvContract.Programs.COLUMN_START_TIME_UTC_MILLIS + ");"); in onCreate()
192 + TvContract.WatchedPrograms.COLUMN_START_TIME_UTC_MILLIS + " INTEGER," in onCreate()
DEpgDataCleanupServiceTests.java144 values.put(Programs.COLUMN_START_TIME_UTC_MILLIS, program.startTime); in insertPrograms()
155 Programs.COLUMN_START_TIME_UTC_MILLIS, in queryPrograms()
/packages/apps/TV/src/com/android/tv/search/
DTvProviderSearch.java303 Programs.COLUMN_START_TIME_UTC_MILLIS, in fillProgramInfo()
368 Programs.COLUMN_START_TIME_UTC_MILLIS, in searchPrograms()
375 sb.append(Programs.COLUMN_START_TIME_UTC_MILLIS).append("<=? AND "); in searchPrograms()
608 + WatchedPrograms.COLUMN_START_TIME_UTC_MILLIS in getMaxWatchStartTime()
/packages/apps/TV/tests/input/src/com/android/tv/testinput/
DTestTvInputService.java394 Programs.COLUMN_START_TIME_UTC_MILLIS,
507 values.put(Programs.COLUMN_START_TIME_UTC_MILLIS, c.getLong(index++)); in onStopRecording()
516 values.put(RecordedPrograms.COLUMN_START_TIME_UTC_MILLIS, startTime); in onStopRecording()
/packages/apps/TV/src/com/android/tv/dvr/provider/
DEpisodicProgramLoadTask.java52 Program.getColumnIndex(Programs.COLUMN_START_TIME_UTC_MILLIS);
60 Programs.COLUMN_START_TIME_UTC_MILLIS
DDvrDatabaseHelper.java62 + Schedules.COLUMN_START_TIME_UTC_MILLIS
157 new ColumnInfo(Schedules.COLUMN_START_TIME_UTC_MILLIS, SQL_DATA_TYPE_LONG),
DDvrContract.java169 public static final String COLUMN_START_TIME_UTC_MILLIS = "start_time_utc_millis"; field in DvrContract.Schedules
/packages/apps/TV/tuner/src/com/android/tv/tuner/tvinput/
DTunerRecordingSessionWorker.java86 TvContract.Programs.COLUMN_START_TIME_UTC_MILLIS
124 TvContract.Programs.COLUMN_START_TIME_UTC_MILLIS,
590 values.put(RecordedPrograms.COLUMN_START_TIME_UTC_MILLIS, startTime); in insertRecordedProgram()
DTunerSessionWorkerExoV2.java668 TvContract.RecordedPrograms.COLUMN_START_TIME_UTC_MILLIS,
DTunerSessionWorker.java660 TvContract.RecordedPrograms.COLUMN_START_TIME_UTC_MILLIS,
/packages/apps/TV/src/com/android/tv/data/
DProgram.java70 TvContract.Programs.COLUMN_START_TIME_UTC_MILLIS,
98 TvContract.Programs.COLUMN_START_TIME_UTC_MILLIS,
568 TvContract.Programs.COLUMN_START_TIME_UTC_MILLIS, program.getStartTimeUtcMillis()); in toContentValues()
DProgramDataManager.java84 Programs.COLUMN_START_TIME_UTC_MILLIS
/packages/apps/TV/src/com/android/tv/dvr/data/
DRecordedProgram.java66 RecordedPrograms.COLUMN_START_TIME_UTC_MILLIS,
149 RecordedPrograms.COLUMN_START_TIME_UTC_MILLIS, in toValues()
DScheduledRecording.java388 Schedules.COLUMN_START_TIME_UTC_MILLIS,
438 values.put(Schedules.COLUMN_START_TIME_UTC_MILLIS, r.getStartTimeMs()); in toContentValues()
/packages/apps/TV/tests/common/src/com/android/tv/testing/data/
DProgramUtils.java98 values.put(Programs.COLUMN_START_TIME_UTC_MILLIS, timeMs); in populatePrograms()
/packages/apps/TV/tuner/src/com/android/tv/tuner/tvinput/datamanager/
DChannelDataManager.java62 TvContract.Programs.COLUMN_START_TIME_UTC_MILLIS,
562 TvContract.Programs.COLUMN_START_TIME_UTC_MILLIS, in buildContentProviderOperation()
/packages/apps/TV/src/com/android/tv/data/epg/
DEpgFetchHelper.java216 Programs.COLUMN_START_TIME_UTC_MILLIS)) { in queryPrograms() argument
/packages/apps/TV/src/com/android/tv/recommendation/
DRecommendationDataManager.java402 cursor.getColumnIndex(TvContract.WatchedPrograms.COLUMN_START_TIME_UTC_MILLIS); in createWatchedProgramFromWatchedProgramCursor()