HomeSort by relevance Sort by last modified time
    Searched refs:recordedProgramId (Results 1 - 13 of 13) sorted by null

  /packages/apps/TV/src/com/android/tv/dvr/
DvrWatchedPositionManager.java 65 public void setWatchedPosition(long recordedProgramId, long positionMs) {
66 mWatchedPositions.edit().putLong(Long.toString(recordedProgramId), positionMs).apply();
67 notifyWatchedPositionChanged(recordedProgramId, positionMs);
71 public long getWatchedPosition(long recordedProgramId) {
73 Long.toString(recordedProgramId), TvInputManager.TIME_SHIFT_INVALID_TIME);
90 public void addListener(WatchedPositionChangedListener listener, long recordedProgramId) {
91 if (recordedProgramId == RecordedProgram.ID_NOT_SET) {
94 Set<WatchedPositionChangedListener> listenerSet = mListeners.get(recordedProgramId);
97 mListeners.put(recordedProgramId, listenerSet);
104 for (long recordedProgramId : new ArrayList<>(mListeners.keySet()))
    [all...]
DvrManager.java 495 public void removeRecordedProgram(long recordedProgramId) {
499 RecordedProgram recordedProgram = mDataManager.getRecordedProgram(recordedProgramId);
    [all...]
  /packages/apps/TV/src/com/android/tv/dvr/ui/playback/
DvrPlaybackActivity.java 77 long recordedProgramId = ContentUris.parseId(uri);
78 intent.putExtra(Utils.EXTRA_KEY_RECORDED_PROGRAM_ID, recordedProgramId);
  /packages/apps/TV/src/com/android/tv/dvr/ui/browse/
RecordedProgramDetailsFragment.java 83 long recordedProgramId = args.getLong(DvrDetailsActivity.RECORDING_ID);
84 mRecordedProgram = mDvrDataManager.getRecordedProgram(recordedProgramId);
SeriesRecordingPresenter.java 64 public void onWatchedPositionChanged(long recordedProgramId, long positionMs) {
66 mWatchedPositionManager.removeListener(this, recordedProgramId);
  /frameworks/support/tv-provider/src/main/java/androidx/tvprovider/media/tv/
TvContractCompat.java 454 * @param recordedProgramId The ID of the recorded program to point to.
456 public static Uri buildRecordedProgramUri(long recordedProgramId) {
458 return TvContract.buildRecordedProgramUri(recordedProgramId);
460 return ContentUris.withAppendedId(RecordedPrograms.CONTENT_URI, recordedProgramId);
    [all...]
  /packages/apps/TV/src/com/android/tv/dvr/data/
ScheduledRecording.java 266 public Builder setRecordedProgramId(Long recordedProgramId) {
267 mRecodedProgramId = recordedProgramId;
556 Long recordedProgramId,
576 mRecordedProgramId = recordedProgramId;
    [all...]
  /cts/tests/tests/tv/src/android/media/tv/cts/
TvContractTest.java     [all...]
  /frameworks/base/media/java/android/media/tv/
TvContract.java 639 * @param recordedProgramId The ID of the recorded program to point to.
641 public static Uri buildRecordedProgramUri(long recordedProgramId) {
642 return ContentUris.withAppendedId(RecordedPrograms.CONTENT_URI, recordedProgramId);
    [all...]
  /prebuilts/sdk/24/
android.jar 
  /prebuilts/sdk/27/
android.jar 
  /prebuilts/sdk/28/
android.jar 
  /prebuilts/sdk/current/
android.jar 

Completed in 4025 milliseconds