Home
last modified time | relevance | path

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

/dports/net-p2p/libtorrent/libtorrent-0.13.8/src/protocol/
H A Dpeer_chunks.h87 ThrottleNode* upload_throttle() { return &m_uploadThrottle; } in upload_throttle() function
88 const ThrottleNode* upload_throttle() const { return &m_uploadThrottle; } in upload_throttle() function
H A Dpeer_connection_base.cc164 m_peerChunks.upload_throttle()->set_list_iterator(m_up->throttle()->end()); in initialize()
165 …m_peerChunks.upload_throttle()->slot_activate() = std::bind(&SocketBase::receive_throttle_up_activ… in initialize()
240 m_up->throttle()->erase(m_peerChunks.upload_throttle()); in cleanup()
409 …m_peerChunks.upload_throttle()->rate()->rate() < cm->preload_required_rate() * ((preloadSize + (2 … in load_up_chunk()
764 if (!m_up->throttle()->is_throttled(m_peerChunks.upload_throttle())) in up_chunk()
770 uint32_t quota = m_up->throttle()->node_quota(m_peerChunks.upload_throttle()); in up_chunk()
774 m_up->throttle()->node_deactivate(m_peerChunks.upload_throttle()); in up_chunk()
802 m_up->throttle()->node_used(m_peerChunks.upload_throttle(), bytesTransfered); in up_chunk()
H A Dpeer_connection_leech.cc502 m_up->throttle()->erase(m_peerChunks.upload_throttle()); in fill_write_buffer()
515 m_up->throttle()->insert(m_peerChunks.upload_throttle()); in fill_write_buffer()
H A Dhandshake.cc88 m_uploadThrottle(manager->upload_throttle()->throttle_list()), in Handshake()
/dports/net-p2p/libtorrent/libtorrent-0.13.8/src/torrent/
H A Dtorrent.cc153 Throttle* up_throttle_global() { return manager->upload_throttle(); } in up_throttle_global()
156 const Rate* up_rate() { return manager->upload_throttle()->rate(); } in up_rate()
/dports/net-p2p/libtorrent/libtorrent-0.13.8/src/torrent/peer/
H A Dpeer.cc72 const Rate* Peer::up_rate() const { return c_ptr()->c_peer_chunks()->upload_throttle()->ra… in up_rate()
/dports/net-p2p/libtorrent/libtorrent-0.13.8/src/
H A Dmanager.h90 Throttle* upload_throttle() { return m_uploadThrottle; } in upload_throttle() function
/dports/net-p2p/libtorrent/libtorrent-0.13.8/src/download/
H A Ddownload_main.h113 ThrottleList* upload_throttle() { return m_uploadThrottle; } in upload_throttle() function
H A Ddownload_main.cc163 return std::make_pair(pair.first == NULL ? upload_throttle() : pair.first->throttle_list(), in throttles()
/dports/net-p2p/libtorrent/libtorrent-0.13.8/src/torrent/download/
H A Dchoke_queue.cc682 uint32_t upload_rate = first->connection->peer_chunks()->upload_throttle()->rate()->rate() / 16; in calculate_upload_choke_seed()
719 …uint32_t upload_rate = first->connection->peer_chunks()->upload_throttle()->rate()->rate() / (64… in calculate_choke_upload_leech_experimental()
/dports/net-p2p/libtorrent/libtorrent-0.13.8/src/dht/
H A Ddht_server.cc118 m_uploadThrottle(manager->upload_throttle()->throttle_list()), in accessor_wrapper()