Searched defs:recording (Results 1 - 10 of 10) sorted by relevance

/packages/apps/TV/src/com/android/tv/dvr/ui/
H A DEmptyItemPresenter.java59 public void onBindViewHolder(ViewHolder viewHolder, Object recording) { argument
H A DScheduledRecordingPresenter.java69 final ScheduledRecording recording = (ScheduledRecording) o;
73 long programId = recording.getProgramId();
75 setTitleAndImage(cardView, recording, null);
82 setTitleAndImage(cardView, recording, program);
88 cardView.setContent(Utils.getDurationString(context, recording.getStartTimeMs(),
89 recording.getEndTimeMs(), true));
94 switch (recording.getState()) {
96 showScheduledRecordingDialog(v.getContext(), recording);
100 showCurrentlyRecordingDialog(v.getContext(), recording);
109 private void setTitleAndImage(RecordingCardView cardView, ScheduledRecording recording, argument
135 showScheduledRecordingDialog(final Context context, final ScheduledRecording recording) argument
154 showCurrentlyRecordingDialog(final Context context, final ScheduledRecording recording) argument
[all...]
/packages/apps/TV/common/src/com/android/tv/common/recording/
H A DRecordingCapability.java17 package com.android.tv.common.recording;
25 * Static representation of the recording capability of a TvInputService.
36 * <p>Both recording and playing live TV requires a Tuner.
56 * True if a tuned session can support recording and playback from the same resource.
H A DRecordedProgram.java17 package com.android.tv.common.recording;
/packages/apps/TV/src/com/android/tv/dvr/
H A DDvrManager.java34 import com.android.tv.common.recording.RecordedProgram;
48 * DVR manager class to add and remove recordings. UI can modify recording list through this class,
71 * Schedules a recording for {@code program} instead of the list of recording that conflict.
77 "Adding scheduled recording of " + program + " instead of " + recordingsToOverride);
90 * Adds a recording schedule with a time range.
93 Log.i(TAG, "Adding scheduled recording of channel" + channel + " starting at " +
103 * Adds a season recording schedule based on {@code program}.
106 Log.i(TAG, "Adding season recording of " + program);
113 public void stopRecording(final ScheduledRecording recording) { argument
[all...]
H A DRecordingTask.java37 * A Handler that actually starts and stop a recording at the right time.
94 if (DEBUG) Log.d(TAG, "created recording task " + mScheduledRecording);
175 //TODO check recording preconditions
178 Log.w(TAG, "End time already past, not recording " + mScheduledRecording);
189 Log.w(TAG, "Channel" + mChannel + " does not match scheduled recording "
292 public void onStopRecordingRequested(ScheduledRecording recording) { argument
293 if (recording.getId() != mScheduledRecording.getId()) {
/packages/apps/TV/src/com/android/tv/menu/
H A DRecordCardView.java78 for (ScheduledRecording recording : mDvrDataManager.getStartedRecordings()) {
79 if (recording.getChannelId() == channel.getId()) {
81 mCurrentRecording = recording;
157 public void onScheduledRecordingAdded(ScheduledRecording recording) { argument
161 public void onScheduledRecordingRemoved(ScheduledRecording recording) { argument
162 if (recording.getChannelId() != mCurrentChannel.getId()) {
173 public void onScheduledRecordingStatusChanged(ScheduledRecording recording) { argument
174 if (recording.getChannelId() != mCurrentChannel.getId()) {
177 int state = recording.getState();
185 mCurrentRecording = recording;
[all...]
/packages/apps/Camera2/src/com/android/camera/
H A DVideoUI.java50 // recording is stopped in capture intent.
170 public void showRecordingUI(boolean recording) { argument
171 mRecordingStarted = recording;
172 if (recording) {
/packages/apps/TV/usbtuner/src/com/android/usbtuner/tvinput/
H A DTunerSessionWorker.java268 Log.e(TAG, "meta file for recording was not found: " + recordingId);
428 RecordedProgram recording = null;
430 recording = new RecordedProgram(c);
432 return recording;
463 RecordedProgram recording = getRecordedProgram(uri);
464 if (recording != null) {
465 return recording.getDataUri();
482 String recording = null;
487 recording = parseRecording(channelUri);
489 if (channel == null && recording
1252 prepareTune(TunerChannel channel, String recording) argument
[all...]
/packages/apps/LegacyCamera/src/com/android/camera/
H A DVideoCamera.java132 * An unpublished intent flag requesting to start recording straight away
133 * and return as soon as recording is stopped.
159 // recording is stopped in capture intent.
204 // (or is recording into.)
255 // The orientation compenstaion when we start recording.
442 // want to allow recording before that happens. The shutter button
564 // Do not rotate the icons during recording because the video
565 // orientation is fixed after recording.
670 // mode and recording is stopped. It'll be re-enabled when
771 // Read time lapse recording interva
1604 showRecordingUI(boolean recording) argument
[all...]

Completed in 272 milliseconds