Home
last modified time | relevance | path

Searched refs:mSchedule (Results 1 – 3 of 3) sorted by relevance

/packages/apps/TV/src/com/android/tv/dvr/ui/list/
DScheduleRow.java31 @Nullable private ScheduledRecording mSchedule; field in ScheduleRow
36 mSchedule = recording; in ScheduleRow()
52 return mSchedule; in getSchedule()
89 mSchedule = schedule; in setSchedule()
96 return mSchedule != null ? mSchedule.getChannelId() : -1; in getChannelId()
103 return mSchedule != null ? mSchedule.getStartTimeMs() : -1; in getStartTimeMs()
110 return mSchedule != null ? mSchedule.getEndTimeMs() : -1; in getEndTimeMs()
132 return mSchedule != null in isRecordingNotStarted()
133 && mSchedule.getState() == ScheduledRecording.STATE_RECORDING_NOT_STARTED; in isRecordingNotStarted()
140 return mSchedule != null in isRecordingInProgress()
[all …]
/packages/apps/Settings/src/com/android/settings/notification/
DZenModeScheduleRuleSettings.java64 private ScheduleInfo mSchedule; field in ZenModeScheduleRuleSettings
68 mSchedule = rule != null ? ZenModeConfig.tryParseScheduleConditionId(rule.getConditionId()) in setRule()
70 return mSchedule != null; in setRule()
108 if (hour == mSchedule.startHour && minute == mSchedule.startMinute) { in onCreateInternal()
112 mSchedule.startHour = hour; in onCreateInternal()
113 mSchedule.startMinute = minute; in onCreateInternal()
114 updateRule(ZenModeConfig.toScheduleConditionId(mSchedule)); in onCreateInternal()
130 if (hour == mSchedule.endHour && minute == mSchedule.endMinute) { in onCreateInternal()
134 mSchedule.endHour = hour; in onCreateInternal()
135 mSchedule.endMinute = minute; in onCreateInternal()
[all …]
/packages/apps/TV/src/com/android/tv/dvr/ui/
DDvrStopRecordingFragment.java70 private ScheduledRecording mSchedule; field in DvrStopRecordingFragment
82 if (schedule.getId() == mSchedule.getId()) {
92 if (schedule.getId() == mSchedule.getId()
107 mSchedule = getDvrManager().getCurrentRecording(channelId); in onAttach()
108 if (mSchedule == null) { in onAttach()
132 mSchedule.getProgramDisplayTitle(getContext())); in onCreateGuidance()