Home
last modified time | relevance | path

Searched refs:m_iLifetime (Results 1 – 11 of 11) sorted by relevance

/dports/multimedia/kodi/xbmc-19.3-Matrix/xbmc/pvr/dialogs/
H A DGUIDialogPVRRecordingSettings.cpp55 m_iLifetime = m_recording->m_iLifetime; in SetRecording()
98 …setting = AddList(group, SETTING_RECORDING_LIFETIME, 19083, SettingLevel::Basic, m_iLifetime, Life… in InitializeSettings()
167 m_iLifetime = std::static_pointer_cast<const CSettingInt>(setting)->GetValue(); in OnSettingChanged()
180 m_recording->m_iLifetime = m_iLifetime; in Save()
204 current = pThis->m_iLifetime; in LifetimesFiller()
H A DGUIDialogPVRRecordingSettings.h56 int m_iLifetime = 0; variable
H A DGUIDialogPVRTimerSettings.cpp130 m_iLifetime = m_timerInfoTag->m_iLifetime; in SetTimer()
338 …setting = AddList(group, SETTING_TMR_LIFETIME, 19083, SettingLevel::Basic, m_iLifetime, LifetimesF… in InitializeSettings()
480 m_iLifetime = std::static_pointer_cast<const CSettingInt>(setting)->GetValue(); in OnSettingChanged()
656 m_timerInfoTag->m_iLifetime = m_iLifetime; in Save()
1047 current = pThis->m_iLifetime; in LifetimesFiller()
H A DGUIDialogPVRTimerSettings.h193 int m_iLifetime = 0; variable
/dports/multimedia/kodi/xbmc-19.3-Matrix/xbmc/pvr/recordings/
H A DPVRRecording.cpp85 m_iLifetime = recording.iLifetime; in CPVRRecording()
152 m_iLifetime == right.m_iLifetime && in operator ==()
186 value["lifetime"] = m_iLifetime; in Serialize()
224 m_iLifetime = -1; in Reset()
401 m_iLifetime = tag.m_iLifetime; in Update()
498 if (m_iLifetime > 0) in ExpirationTimeAsLocalTime()
499 ret = EndTimeAsLocalTime() + CDateTimeSpan(m_iLifetime, 0, 0, 0); in ExpirationTimeAsLocalTime()
H A DPVRRecording.h72 int m_iLifetime; /*!< lifetime of this recording */ variable
228 bool HasExpirationTime() const { return m_iLifetime > 0; } in HasExpirationTime()
/dports/multimedia/kodi/xbmc-19.3-Matrix/xbmc/pvr/timers/
H A DPVRTimerInfoTag.cpp44 m_iLifetime(DEFAULT_RECORDING_LIFETIME), in CPVRTimerInfoTag()
94 m_iLifetime(timer.iLifetime), in CPVRTimerInfoTag()
190 m_iLifetime == right.m_iLifetime && in operator ==()
254 value["lifetime"] = m_iLifetime; in Serialize()
366 m_iLifetime = m_timerType->GetLifetimeDefault(); in SetTimerType()
574 m_iLifetime = tag->m_iLifetime; in UpdateEntry()
H A DPVRTimerInfoTag.h349 int m_iLifetime; /*!< @brief lifetime of the timer in days */ variable
/dports/multimedia/kodi/xbmc-19.3-Matrix/xbmc/pvr/
H A DPVRDatabase.cpp992 newTag->m_iLifetime = m_pDS->fv("iLifetime").get_asInt(); in GetTimers()
1029 …timer.m_iPreventDupEpisodes, timer.m_iPriority, timer.m_iLifetime, timer.m_iMaxRecordings, timer.m… in Persist()
1044 …timer.m_iPreventDupEpisodes, timer.m_iPriority, timer.m_iLifetime, timer.m_iMaxRecordings, timer.m… in Persist()
/dports/multimedia/kodi/xbmc-19.3-Matrix/xbmc/pvr/addons/
H A DPVRClient.cpp316 addonRecording.iLifetime = xbmcRecording.m_iLifetime; in WriteClientRecordingInfo()
360 addonTimer.iLifetime = xbmcTimer.m_iLifetime; in WriteClientTimerInfo()
/dports/multimedia/kodi/xbmc-19.3-Matrix/xbmc/pvr/guilib/
H A DPVRGUIActions.cpp1040 if (origRecording->m_iLifetime != recording->m_iLifetime) in EditRecording()