Home
last modified time | relevance | path

Searched refs:GetPauseDownload (Results 1 – 14 of 14) sorted by relevance

/dports/news/nzbget/nzbget-21.1/tests/main/
H A DCommandLineParserTest.cpp52 REQUIRE(commandLineParser.GetPauseDownload() == false);
60 REQUIRE(commandLineParser.GetPauseDownload() == true);
/dports/news/nzbget/nzbget-21.1/daemon/connect/
H A DWebDownloader.cpp76 && !IsStopped() && !(!m_force && g_WorkState->GetPauseDownload())) in Run()
81 !(!m_force && g_WorkState->GetPauseDownload())) in Run()
88 if (IsStopped() || (!m_force && g_WorkState->GetPauseDownload())) in Run()
/dports/news/nzbget/nzbget-21.1/daemon/main/
H A DWorkState.h35 bool GetPauseDownload() const { return m_pauseDownload; } in GetPauseDownload() function
H A DCommandLineParser.h104 bool GetPauseDownload() const { return m_pauseDownload; } in GetPauseDownload() function
H A DScheduler.cpp260 info("Scheduler: %s download", g_WorkState->GetPauseDownload() ? "pausing" : "unpausing"); in PrintLog()
H A Dnzbget.cpp424 m_workState->SetPauseDownload(m_commandLineParser->GetPauseDownload()); in BootConfig()
/dports/news/nzbget/nzbget-21.1/daemon/windows/
H A DWinConsole.cpp291 g_WorkState->SetPauseDownload(!g_WorkState->GetPauseDownload()); in TrayWndProc()
292 g_WorkState->SetPausePostProcess(g_WorkState->GetPauseDownload()); in TrayWndProc()
293 g_WorkState->SetPauseScan(g_WorkState->GetPauseDownload()); in TrayWndProc()
763 if (g_WorkState->GetPauseDownload()) in UpdateTrayIcon()
/dports/news/nzbget/nzbget-21.1/daemon/nntp/
H A DArticleDownloader.cpp106 …if (IsStopped() || ((g_WorkState->GetPauseDownload() || g_WorkState->GetQuotaReached()) && !force)… in Run()
198 …if (IsStopped() || ((g_WorkState->GetPauseDownload() || g_WorkState->GetQuotaReached()) && !force)… in Run()
/dports/news/nzbget/nzbget-21.1/daemon/frontend/
H A DFrontend.cpp76 m_pauseDownload = g_WorkState->GetPauseDownload(); in PrepareData()
/dports/news/nzbget/nzbget-21.1/daemon/queue/
H A DUrlCoordinator.cpp103 if (nzbInfo && (!g_WorkState->GetPauseDownload() || g_Options->GetUrlForce())) in Run()
H A DQueueCoordinator.cpp536 …(!(g_WorkState->GetPauseDownload() || g_WorkState->GetQuotaReached()) || nzbInfo->GetForcePriority… in GetNextArticle()
1039 …(g_WorkState->GetPauseDownload() ? "paused" : g_WorkState->GetTempPauseDownload() ? "temp-paused" … in LogDebugInfo()
/dports/news/nzbget/nzbget-21.1/daemon/feed/
H A DFeedCoordinator.cpp105 if (!g_WorkState->GetPauseDownload() || m_force || g_Options->GetUrlForce()) in Run()
/dports/news/nzbget/nzbget-21.1/daemon/remote/
H A DBinRpc.cpp679 ListResponse.m_downloadPaused = htonl(g_WorkState->GetPauseDownload()); in Execute()
H A DXmlRpc.cpp1325 bool downloadPaused = g_WorkState->GetPauseDownload(); in Execute()