Home
last modified time | relevance | path

Searched refs:CPVRChannel (Results 1 – 25 of 62) sorted by relevance

123

/dports/multimedia/kodi/xbmc-19.3-Matrix/xbmc/pvr/channels/
H A DPVRChannel.cpp32 bool CPVRChannel::operator==(const CPVRChannel& right) const in operator ==()
39 bool CPVRChannel::operator!=(const CPVRChannel& right) const in operator !=()
44 CPVRChannel::CPVRChannel() in CPVRChannel() function in CPVRChannel
49 CPVRChannel::CPVRChannel(bool bRadio) in CPVRChannel() function in CPVRChannel
55 CPVRChannel::CPVRChannel(const PVR_CHANNEL& channel, unsigned int iClientId) in CPVRChannel() function in CPVRChannel
75 CPVRChannel::~CPVRChannel() in ~CPVRChannel()
111 bool CPVRChannel::QueueDelete() in QueueDelete()
137 bool CPVRChannel::CreateEPG() in CreateEPG()
169 void CPVRChannel::ResetEPG() in ResetEPG()
185 bool CPVRChannel::UpdateFromClient(const std::shared_ptr<CPVRChannel>& channel) in UpdateFromClient()
[all …]
H A DPVRChannelGroup.h33 class CPVRChannel; variable
40 PVRChannelGroupMember(const std::shared_ptr<CPVRChannel>& _channel, in PVRChannelGroupMember()
53 std::shared_ptr<CPVRChannel> channel;
117 virtual bool Load(std::vector<std::shared_ptr<CPVRChannel>>& channelsToRemove);
154 virtual bool RemoveFromGroup(const std::shared_ptr<CPVRChannel>& channel);
172 virtual bool AppendToGroup(const std::shared_ptr<CPVRChannel>& channel);
191 virtual bool IsGroupMember(const std::shared_ptr<CPVRChannel>& channel) const;
308 std::shared_ptr<CPVRChannel> GetByChannelEpgID(int iEpgID) const;
343 std::shared_ptr<CPVRChannel> GetNextChannel(const std::shared_ptr<CPVRChannel>& channel) const;
350 …std::shared_ptr<CPVRChannel> GetPreviousChannel(const std::shared_ptr<CPVRChannel>& channel) const;
[all …]
H A DPVRChannelGroupInternal.h20 class CPVRChannel; variable
48 …std::shared_ptr<CPVRChannel> UpdateFromClient(const std::shared_ptr<CPVRChannel>& channel, const C…
53 bool IsGroupMember(const std::shared_ptr<CPVRChannel>& channel) const override;
58 …bool AddToGroup(const std::shared_ptr<CPVRChannel>& channel, const CPVRChannelNumber& channelNumbe…
63 bool AppendToGroup(const std::shared_ptr<CPVRChannel>& channel) override;
68 bool RemoveFromGroup(const std::shared_ptr<CPVRChannel>& channel) override;
112 …pEntries(const CPVRChannelGroup& channels, std::vector<std::shared_ptr<CPVRChannel>>& channelsToRe…
127 …std::vector<std::shared_ptr<CPVRChannel>> RemoveDeletedChannels(const CPVRChannelGroup& channels) …
133 bool Update(std::vector<std::shared_ptr<CPVRChannel>>& channelsToRemove) override;
144 bool Load(std::vector<std::shared_ptr<CPVRChannel>>& channelsToRemove) override;
[all …]
H A DPVRChannel.h32 class CPVRChannel : public ISerializable, public ISortable
37 explicit CPVRChannel(bool bRadio);
38 CPVRChannel(const PVR_CHANNEL& channel, unsigned int iClientId);
40 virtual ~CPVRChannel();
42 bool operator ==(const CPVRChannel& right) const;
43 bool operator !=(const CPVRChannel& right) const;
62 bool UpdateFromClient(const std::shared_ptr<CPVRChannel>& channel);
467 CPVRChannel();
468 CPVRChannel(const CPVRChannel& tag) = delete;
469 CPVRChannel& operator=(const CPVRChannel& channel) = delete;
H A DPVRChannelGroupsContainer.cpp90 std::shared_ptr<CPVRChannel> CPVRChannelGroupsContainer::GetChannelById(int iChannelId) const in GetChannelById()
92 std::shared_ptr<CPVRChannel> channel = m_groupsTV->GetGroupAll()->GetByChannelID(iChannelId); in GetChannelById()
99 std::shared_ptr<CPVRChannel> CPVRChannelGroupsContainer::GetChannelByEpgId(int iEpgId) const in GetChannelByEpgId()
101 std::shared_ptr<CPVRChannel> channel = m_groupsTV->GetGroupAll()->GetByChannelEpgID(iEpgId); in GetChannelByEpgId()
108 std::shared_ptr<CPVRChannel> CPVRChannelGroupsContainer::GetChannelForEpgTag(const std::shared_ptr<… in GetChannelForEpgTag()
116 std::shared_ptr<CPVRChannel> CPVRChannelGroupsContainer::GetByPath(const std::string& strPath) const in GetByPath()
130 std::shared_ptr<CPVRChannel> CPVRChannelGroupsContainer::GetByUniqueID(int iUniqueChannelId, int iC… in GetByUniqueID()
132 std::shared_ptr<CPVRChannel> channel; in GetByUniqueID()
145 std::shared_ptr<CPVRChannel> CPVRChannelGroupsContainer::GetLastPlayedChannel() const in GetLastPlayedChannel()
147 std::shared_ptr<CPVRChannel> channelTV = m_groupsTV->GetGroupAll()->GetLastPlayedChannel(); in GetLastPlayedChannel()
[all …]
H A DPVRChannelGroupsContainer.h17 class CPVRChannel; variable
109 std::shared_ptr<CPVRChannel> GetChannelById(int iChannelId) const;
116 std::shared_ptr<CPVRChannel> GetChannelByEpgId(int iEpgId) const;
123 …std::shared_ptr<CPVRChannel> GetChannelForEpgTag(const std::shared_ptr<CPVREpgInfoTag>& epgTag) co…
130 std::shared_ptr<CPVRChannel> GetByPath(const std::string& strPath) const;
145 std::shared_ptr<CPVRChannel> GetByUniqueID(int iUniqueChannelId, int iClientID) const;
151 std::shared_ptr<CPVRChannel> GetLastPlayedChannel() const;
H A DPVRChannelGroupInternal.cpp43 bool CPVRChannelGroupInternal::Load(std::vector<std::shared_ptr<CPVRChannel>>& channelsToRemove) in Load()
82 std::shared_ptr<CPVRChannel> CPVRChannelGroupInternal::UpdateFromClient(const std::shared_ptr<CPVRC… in UpdateFromClient()
108 bool CPVRChannelGroupInternal::Update(std::vector<std::shared_ptr<CPVRChannel>>& channelsToRemove) in Update()
160 bool CPVRChannelGroupInternal::AppendToGroup(const std::shared_ptr<CPVRChannel>& channel) in AppendToGroup()
167 bool CPVRChannelGroupInternal::RemoveFromGroup(const std::shared_ptr<CPVRChannel>& channel) in RemoveFromGroup()
173 …const std::shared_ptr<CPVRChannel> currentChannel = CServiceBroker::GetPVRManager().PlaybackState(… in RemoveFromGroup()
226 bool CPVRChannelGroupInternal::IsGroupMember(const std::shared_ptr<CPVRChannel>& channel) const in IsGroupMember()
281 std::vector<std::shared_ptr<CPVRChannel>> CPVRChannelGroupInternal::RemoveDeletedChannels(const CPV… in RemoveDeletedChannels()
283 …std::vector<std::shared_ptr<CPVRChannel>> removedChannels = CPVRChannelGroup::RemoveDeletedChannel… in RemoveDeletedChannels()
340 …pEntries(const CPVRChannelGroup& channels, std::vector<std::shared_ptr<CPVRChannel>>& channelsToRe… in UpdateGroupEntries()
[all …]
H A DPVRChannelGroup.cpp309 std::shared_ptr<CPVRChannel> CPVRChannelGroup::GetByChannelID(int iChannelID) const in GetByChannelID()
322 std::shared_ptr<CPVRChannel> CPVRChannelGroup::GetByChannelEpgID(int iEpgID) const in GetByChannelEpgID()
339 std::shared_ptr<CPVRChannel> returnChannel, channel; in GetLastPlayedChannel()
383 std::shared_ptr<CPVRChannel> CPVRChannelGroup::GetNextChannel(const std::shared_ptr<CPVRChannel>& c… in GetNextChannel()
385 std::shared_ptr<CPVRChannel> nextChannel; in GetNextChannel()
410 std::shared_ptr<CPVRChannel> CPVRChannelGroup::GetPreviousChannel(const std::shared_ptr<CPVRChannel in GetPreviousChannel()
412 std::shared_ptr<CPVRChannel> previousChannel; in GetPreviousChannel()
597 std::vector<std::shared_ptr<CPVRChannel>> removedChannels; in RemoveDeletedChannels()
603 const std::shared_ptr<CPVRChannel> channel = (*it)->channel; in RemoveDeletedChannels()
729 bool CPVRChannelGroup::AppendToGroup(const std::shared_ptr<CPVRChannel>& channel) in AppendToGroup()
[all …]
H A DPVRChannelGroups.h21 class CPVRChannel; variable
71 std::shared_ptr<CPVRChannel> GetByPath(const CPVRChannelsPath& path) const;
86 …shared_ptr<CPVRChannelGroup>> GetGroupsByChannel(const std::shared_ptr<CPVRChannel>& channel, bool…
230 void RemoveFromAllGroups(const std::vector<std::shared_ptr<CPVRChannel>>& channelsToRemove);
236 void RemoveFromAllGroups(const std::shared_ptr<CPVRChannel>& channel);
H A DPVRChannelGroups.cpp128 std::shared_ptr<CPVRChannel> CPVRChannelGroups::GetByPath(const CPVRChannelsPath& path) const in GetByPath()
154 …nelGroup>> CPVRChannelGroups::GetGroupsByChannel(const std::shared_ptr<CPVRChannel>& channel, bool… in GetGroupsByChannel()
195 void CPVRChannelGroups::RemoveFromAllGroups(const std::vector<std::shared_ptr<CPVRChannel>>& channe… in RemoveFromAllGroups()
204 void CPVRChannelGroups::RemoveFromAllGroups(const std::shared_ptr<CPVRChannel>& channel) in RemoveFromAllGroups()
241 std::vector<std::shared_ptr<CPVRChannel>> channelsToRemove; in Update()
311 std::vector<std::shared_ptr<CPVRChannel>> channelsToRemove; in LoadUserDefinedChannelGroups()
360 std::vector<std::shared_ptr<CPVRChannel>> channelsToRemove; in Load()
/dports/multimedia/kodi/xbmc-19.3-Matrix/xbmc/pvr/guilib/
H A DPVRGUIChannelNavigator.h23 class CPVRChannel; variable
78 void SetPlayingChannel(const std::shared_ptr<CPVRChannel>& channel);
91 std::shared_ptr<CPVRChannel> GetNextOrPrevChannel(bool bNext);
98 void SelectChannel(const std::shared_ptr<CPVRChannel>& channel, ChannelSwitchMode eSwitchMode);
107 std::shared_ptr<CPVRChannel> m_playingChannel;
108 std::shared_ptr<CPVRChannel> m_currentChannel;
H A DPVRGUIChannelNavigator.cpp97 const std::shared_ptr<CPVRChannel> nextChannel = GetNextOrPrevChannel(true); in SelectNextChannel()
111 const std::shared_ptr<CPVRChannel> prevChannel = GetNextOrPrevChannel(false); in SelectPreviousChannel()
116 std::shared_ptr<CPVRChannel> CPVRGUIChannelNavigator::GetNextOrPrevChannel(bool bNext) in GetNextOrPrevChannel()
133 void CPVRGUIChannelNavigator::SelectChannel(const std::shared_ptr<CPVRChannel>& channel, in SelectChannel()
257 void CPVRGUIChannelNavigator::SetPlayingChannel(const std::shared_ptr<CPVRChannel>& channel) in SetPlayingChannel()
H A DPVRGUIActions.cpp239 const std::shared_ptr<CPVRChannel> channel(CPVRItem(item).GetChannel()); in ShowEPGInfo()
265 const std::shared_ptr<CPVRChannel> channel(CPVRItem(item).GetChannel()); in ShowChannelEPG()
410 const std::shared_ptr<CPVRChannel> channel(CPVRItem(item).GetChannel()); in AddTimer()
1300 const std::shared_ptr<CPVRChannel> channelTag(CPVRItem(item).GetChannel()); in PlayEpgTag()
1331 const std::shared_ptr<CPVRChannel> channel(CPVRItem(item).GetChannel()); in SwitchToChannel()
1411 std::shared_ptr<CPVRChannel> channel; in SwitchToChannel()
1493 std::shared_ptr<CPVRChannel> channel = group->GetLastPlayedChannel(); in PlayChannelOnStartup()
1518 const std::shared_ptr<CPVRChannel> pvrChannel = in PlayMedia()
1544 const std::shared_ptr<CPVRChannel> channel(item->GetPVRChannelInfoTag()); in HideChannel()
2236 const std::shared_ptr<CPVRChannel> channel = in GetSelectedItemPath()
[all …]
/dports/multimedia/kodi/xbmc-19.3-Matrix/xbmc/pvr/
H A DPVRPlaybackState.h21 class CPVRChannel; variable
117 bool IsPlayingChannel(const std::shared_ptr<CPVRChannel>& channel) const;
137 std::shared_ptr<CPVRChannel> GetPlayingChannel() const;
228 void SetPlayingGroup(const std::shared_ptr<CPVRChannel>& channel);
235 void UpdateLastWatched(const std::shared_ptr<CPVRChannel>& channel, const CDateTime& time);
239 std::shared_ptr<CPVRChannel> m_playingChannel;
H A DPVRPlaybackState.cpp36 const std::shared_ptr<CPVRChannel>& channel, in CLastWatchedUpdateTimer()
55 const std::shared_ptr<CPVRChannel> m_channel;
119 const std::shared_ptr<CPVRChannel> channel = item->GetPVRChannelInfoTag(); in OnPlaybackStarted()
283 bool CPVRPlaybackState::IsPlayingChannel(const std::shared_ptr<CPVRChannel>& channel) const in IsPlayingChannel()
287 const std::shared_ptr<CPVRChannel> current = GetPlayingChannel(); in IsPlayingChannel()
323 std::shared_ptr<CPVRChannel> CPVRPlaybackState::GetPlayingChannel() const in GetPlayingChannel()
366 const std::shared_ptr<CPVRChannel> currentChannel = GetPlayingChannel(); in IsRecordingOnPlayingChannel()
378 const std::shared_ptr<CPVRChannel> currentChannel = GetPlayingChannel(); in CanRecordOnPlayingChannel()
388 void CPVRPlaybackState::SetPlayingGroup(const std::shared_ptr<CPVRChannel>& channel) in SetPlayingGroup()
435 void CPVRPlaybackState::UpdateLastWatched(const std::shared_ptr<CPVRChannel>& channel, const CDateT… in UpdateLastWatched()
H A DPVRDatabase.h19 class CPVRChannel; variable
117 bool Persist(CPVRChannel& channel, bool bCommit);
124 bool QueueDeleteQuery(const CPVRChannel& channel);
226 bool UpdateLastWatched(const CPVRChannel& channel);
H A DPVRItem.cpp52 …const std::shared_ptr<CPVRChannel> channel = CServiceBroker::GetPVRManager().ChannelGroups()->GetC… in GetNextEpgInfoTag()
62 const std::shared_ptr<CPVRChannel> channel = m_item->GetPVRTimerInfoTag()->Channel(); in GetNextEpgInfoTag()
73 std::shared_ptr<CPVRChannel> CPVRItem::GetChannel() const in GetChannel()
91 return std::shared_ptr<CPVRChannel>(); in GetChannel()
H A DPVRItem.h17 class CPVRChannel; variable
30 std::shared_ptr<CPVRChannel> GetChannel() const;
H A DPVRManager.h30 class CPVRChannel; variable
313 bool IsParentalLocked(const std::shared_ptr<CPVRChannel>& channel) const;
413 …bool IsCurrentlyParentalLocked(const std::shared_ptr<CPVRChannel>& channel, bool bGenerallyLocked)…
/dports/multimedia/kodi/xbmc-19.3-Matrix/xbmc/pvr/timers/
H A DPVRTimerInfoTag.h23 class CPVRChannel; variable
37 …CPVRTimerInfoTag(const PVR_TIMER& timer, const std::shared_ptr<CPVRChannel>& channel, unsigned int…
57 …ared_ptr<CPVRTimerInfoTag> CreateInstantTimerTag(const std::shared_ptr<CPVRChannel>& channel, int …
66 …static std::shared_ptr<CPVRTimerInfoTag> CreateTimerTag(const std::shared_ptr<CPVRChannel>& channe…
136 std::shared_ptr<CPVRChannel> Channel() const;
313 std::shared_ptr<CPVRChannel> UpdateChannel();
369 …static std::shared_ptr<CPVRTimerInfoTag> CreateFromDate(const std::shared_ptr<CPVRChannel>& channe…
387 mutable std::shared_ptr<CPVRChannel> m_channel;
H A DPVRTimers.h25 class CPVRChannel; variable
175 bool IsRecordingOnChannel(const CPVRChannel& channel) const;
182 …std::shared_ptr<CPVRTimerInfoTag> GetActiveTimerForChannel(const std::shared_ptr<CPVRChannel>& cha…
206 …bool DeleteTimersOnChannel(const std::shared_ptr<CPVRChannel>& channel, bool bDeleteTimerRules = t…
H A DPVRTimerRuleMatcher.h19 class CPVRChannel; variable
31 std::shared_ptr<CPVRChannel> GetChannel() const;
/dports/multimedia/kodi/xbmc-19.3-Matrix/xbmc/pvr/dialogs/
H A DGUIDialogPVRChannelGuide.h17 class CPVRChannel; variable
25 void Open(const std::shared_ptr<CPVRChannel>& channel);
32 std::shared_ptr<CPVRChannel> m_channel;
/dports/multimedia/kodi/xbmc-19.3-Matrix/xbmc/pvr/addons/
H A DPVRClient.h25 class CPVRChannel; variable
416 PVR_ERROR OpenDialogChannelAdd(const std::shared_ptr<CPVRChannel>& channel);
423 PVR_ERROR OpenDialogChannelSettings(const std::shared_ptr<CPVRChannel>& channel);
430 PVR_ERROR DeleteChannel(const std::shared_ptr<CPVRChannel>& channel);
437 PVR_ERROR RenameChannel(const std::shared_ptr<CPVRChannel>& channel);
716 PVR_ERROR OpenLiveStream(const std::shared_ptr<CPVRChannel>& channel);
778 PVR_ERROR GetChannelStreamProperties(const std::shared_ptr<CPVRChannel>& channel,
939 const std::shared_ptr<CPVRChannel>& channel);
1042 static void WriteClientChannelInfo(const std::shared_ptr<CPVRChannel>& xbmcChannel,
1060 bool CanPlayChannel(const std::shared_ptr<CPVRChannel>& channel) const;
/dports/multimedia/kodi/xbmc-19.3-Matrix/xbmc/pvr/epg/
H A DEpgChannelData.h16 class CPVRChannel; variable
23 explicit CPVREpgChannelData(const CPVRChannel& channel);

123