OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:quictcpcongestionwindow
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/net/quic/congestion_control/
cubic.h
20
typedef uint32
QuicTcpCongestionWindow
;
32
QuicTcpCongestionWindow
CongestionWindowAfterPacketLoss(
33
QuicTcpCongestionWindow
current);
39
QuicTcpCongestionWindow
CongestionWindowAfterAck(
40
QuicTcpCongestionWindow
current,
49
void UpdateCongestionControlStats(
QuicTcpCongestionWindow
new_cubic_mode_cwnd,
50
QuicTcpCongestionWindow
new_reno_mode_cwnd);
60
QuicTcpCongestionWindow
last_congestion_window_;
65
QuicTcpCongestionWindow
last_max_congestion_window_;
71
QuicTcpCongestionWindow
estimated_tcp_congestion_window_
[
all
...]
cubic.cc
74
QuicTcpCongestionWindow
new_cubic_mode_cwnd,
75
QuicTcpCongestionWindow
new_reno_mode_cwnd) {
77
QuicTcpCongestionWindow
highest_new_cwnd = std::max(new_cubic_mode_cwnd,
91
QuicTcpCongestionWindow
Cubic::CongestionWindowAfterPacketLoss(
92
QuicTcpCongestionWindow
current_congestion_window) {
105
QuicTcpCongestionWindow
Cubic::CongestionWindowAfterAck(
106
QuicTcpCongestionWindow
current_congestion_window,
145
QuicTcpCongestionWindow
delta_congestion_window = (kCubeCongestionWindowScale
148
QuicTcpCongestionWindow
target_congestion_window =
tcp_cubic_sender.h
36
QuicTcpCongestionWindow
max_tcp_congestion_window,
122
QuicTcpCongestionWindow
congestion_window_;
128
QuicTcpCongestionWindow
slowstart_threshold_;
131
QuicTcpCongestionWindow
previous_slowstart_threshold_;
138
QuicTcpCongestionWindow
max_tcp_congestion_window_;
tcp_cubic_sender_test.cc
27
const
QuicTcpCongestionWindow
kDefaultMaxCongestionWindowTCP = 10000;
33
QuicTcpCongestionWindow
max_tcp_congestion_window)
38
QuicTcpCongestionWindow
congestion_window() {
42
QuicTcpCongestionWindow
slowstart_threshold() {
474
const
QuicTcpCongestionWindow
kMaxCongestionWindowTCP = 50;
490
const
QuicTcpCongestionWindow
kMaxCongestionWindowTCP = 50;
512
const
QuicTcpCongestionWindow
kMaxCongestionWindowTCP = 50;
564
QuicTcpCongestionWindow
congestion_window = sender_->congestion_window();
tcp_cubic_sender.cc
22
const
QuicTcpCongestionWindow
kMinimumCongestionWindow = 2;
32
QuicTcpCongestionWindow
max_tcp_congestion_window,
Completed in 607 milliseconds