Home
last modified time | relevance | path

Searched refs:torrent_paused_alert (Results 1 – 24 of 24) sorted by relevance

/dports/net-p2p/py-libtorrent-rasterbar/libtorrent-1.2.13/simulation/
H A Dtest_pause.cpp203 TORRENT_TEST(torrent_paused_alert) in TORRENT_TEST() argument
229 if (lt::alert_cast<torrent_paused_alert>(a)) ++num_paused; in TORRENT_TEST()
264 if (lt::alert_cast<torrent_paused_alert>(a)) ++num_paused; in TORRENT_TEST()
303 if (lt::alert_cast<torrent_paused_alert>(a)) ++num_paused; in TORRENT_TEST()
H A Dtest_auto_manage.cpp236 TEST_CHECK(alert_cast<torrent_paused_alert>(a) == nullptr); in TORRENT_TEST()
284 TEST_CHECK(alert_cast<torrent_paused_alert>(a) == nullptr); in TORRENT_TEST()
340 else if (alert_cast<torrent_paused_alert>(a)) in TORRENT_TEST()
429 else if (alert_cast<torrent_paused_alert>(a)) in TORRENT_TEST()
618 if (alert_cast<torrent_paused_alert>(a)) in TORRENT_TEST()
885 if (alert_cast<torrent_paused_alert>(a)) in TORRENT_TEST()
H A Dtest_swarm.cpp277 if (auto tp = lt::alert_cast<lt::torrent_paused_alert>(a)) in test_stop_start_download()
344 if (auto tp = lt::alert_cast<lt::torrent_paused_alert>(a)) in TORRENT_TEST()
/dports/net-p2p/py-libtorrent-rasterbar/libtorrent-1.2.13/test/
H A Dtest_alert_manager.cpp276 TEST_CHECK(mgr.should_post<torrent_paused_alert>()); in TORRENT_TEST()
281 TEST_CHECK(!mgr.should_post<torrent_paused_alert>()); in TORRENT_TEST()
H A Dtest_alert_types.cpp112 TEST_ALERT_TYPE(torrent_paused_alert, 39, 1, alert_category::status); in TORRENT_TEST()
H A Dtest_priority.cpp247 wait_for_alert(ses2, torrent_paused_alert::alert_type, "ses2"); in test_transfer()
/dports/net-p2p/libtorrent-rasterbar/libtorrent-rasterbar-1.2.14/test/
H A Dtest_alert_manager.cpp276 TEST_CHECK(mgr.should_post<torrent_paused_alert>()); in TORRENT_TEST()
281 TEST_CHECK(!mgr.should_post<torrent_paused_alert>()); in TORRENT_TEST()
H A Dtest_alert_types.cpp112 TEST_ALERT_TYPE(torrent_paused_alert, 39, 1, alert_category::status); in TORRENT_TEST()
H A Dtest_priority.cpp247 wait_for_alert(ses2, torrent_paused_alert::alert_type, "ses2"); in test_transfer()
/dports/net-p2p/libtorrent-rasterbar/libtorrent-rasterbar-1.2.14/include/libtorrent/
H A Dfwd.hpp89 struct torrent_paused_alert;
H A Dalert_types.hpp1206 struct TORRENT_EXPORT torrent_paused_alert final : torrent_alert struct
1209 torrent_paused_alert(aux::stack_allocator& alloc, torrent_handle const& h);
1211 TORRENT_DEFINE_ALERT_PRIO(torrent_paused_alert, 39, alert_priority_high)
/dports/net-p2p/py-libtorrent-rasterbar/libtorrent-1.2.13/include/libtorrent/
H A Dfwd.hpp89 struct torrent_paused_alert;
H A Dalert_types.hpp1206 struct TORRENT_EXPORT torrent_paused_alert final : torrent_alert struct
1209 torrent_paused_alert(aux::stack_allocator& alloc, torrent_handle const& h);
1211 TORRENT_DEFINE_ALERT_PRIO(torrent_paused_alert, 39, alert_priority_high)
/dports/net-p2p/qbittorrent/qbittorrent-4.3.9/src/base/bittorrent/
H A Dtorrentimpl.h283 void handleTorrentPausedAlert(const lt::torrent_paused_alert *p);
H A Dtorrentimpl.cpp1760 void TorrentImpl::handleTorrentPausedAlert(const lt::torrent_paused_alert *p) in handleTorrentPausedAlert()
1985 case lt::torrent_paused_alert::alert_type: in handleAlert()
1986 handleTorrentPausedAlert(static_cast<const lt::torrent_paused_alert*>(a)); in handleAlert()
H A Dsession.cpp4494 case lt::torrent_paused_alert::alert_type: in handleAlert()
/dports/net-p2p/py-libtorrent-rasterbar/libtorrent-1.2.13/bindings/python/src/
H A Dalert.cpp207 POLY(torrent_paused_alert)
582 class_<torrent_paused_alert, bases<torrent_alert>, noncopyable>( in bind_alert()
/dports/net-p2p/libtorrent-rasterbar/libtorrent-rasterbar-1.2.14/bindings/python/src/
H A Dalert.cpp209 POLY(torrent_paused_alert)
584 class_<torrent_paused_alert, bases<torrent_alert>, noncopyable>( in bind_alert()
/dports/net-p2p/libtorrent-rasterbar/libtorrent-rasterbar-1.2.14/src/
H A Dalert.cpp918 torrent_paused_alert::torrent_paused_alert(aux::stack_allocator& alloc in torrent_paused_alert() function in libtorrent::torrent_paused_alert
923 std::string torrent_paused_alert::message() const in message()
3057 constexpr alert_category_t torrent_paused_alert::static_category;
H A Dtorrent.cpp2600 if (alerts().should_post<torrent_paused_alert>()) in on_piece_hashed()
2601 alerts().emplace_alert<torrent_paused_alert>(get_handle()); in on_piece_hashed()
4687 if (alerts().should_post<torrent_paused_alert>()) in on_torrent_paused()
4688 alerts().emplace_alert<torrent_paused_alert>(get_handle()); in on_torrent_paused()
8803 if (alerts().should_post<torrent_paused_alert>())
8804 alerts().emplace_alert<torrent_paused_alert>(get_handle());
8822 if (alerts().should_post<torrent_paused_alert>())
8823 alerts().emplace_alert<torrent_paused_alert>(get_handle());
/dports/net-p2p/py-libtorrent-rasterbar/libtorrent-1.2.13/src/
H A Dalert.cpp918 torrent_paused_alert::torrent_paused_alert(aux::stack_allocator& alloc in torrent_paused_alert() function in libtorrent::torrent_paused_alert
923 std::string torrent_paused_alert::message() const in message()
3057 constexpr alert_category_t torrent_paused_alert::static_category;
H A Dtorrent.cpp2600 if (alerts().should_post<torrent_paused_alert>()) in on_piece_hashed()
2601 alerts().emplace_alert<torrent_paused_alert>(get_handle()); in on_piece_hashed()
4687 if (alerts().should_post<torrent_paused_alert>()) in on_torrent_paused()
4688 alerts().emplace_alert<torrent_paused_alert>(get_handle()); in on_torrent_paused()
8797 if (alerts().should_post<torrent_paused_alert>())
8798 alerts().emplace_alert<torrent_paused_alert>(get_handle());
8816 if (alerts().should_post<torrent_paused_alert>())
8817 alerts().emplace_alert<torrent_paused_alert>(get_handle());
/dports/net-p2p/py-libtorrent-rasterbar/libtorrent-1.2.13/examples/
H A Dclient_test.cpp984 else if (torrent_paused_alert* p = alert_cast<torrent_paused_alert>(a)) in handle_alert()
/dports/net-p2p/libtorrent-rasterbar/libtorrent-rasterbar-1.2.14/examples/
H A Dclient_test.cpp984 else if (torrent_paused_alert* p = alert_cast<torrent_paused_alert>(a)) in handle_alert()