Searched refs:Rto (Results 1 – 10 of 10) sorted by relevance
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Tcp4Dxe/ |
D | Tcp4Timer.c | 188 TcpSetTimer (Tcb, TCP_TIMER_REXMIT, Tcb->Rto); in TcpRexmitTimeout() 392 Tcb->ProbeTime = Tcb->Rto; in TcpSetProbeTimer() 468 Tcb->Rto <<= 1; in TcpBackoffRto() 470 if (Tcb->Rto < TCP_RTO_MIN) { in TcpBackoffRto() 472 Tcb->Rto = TCP_RTO_MIN; in TcpBackoffRto() 473 } else if (Tcb->Rto > TCP_RTO_MAX) { in TcpBackoffRto() 475 Tcb->Rto = TCP_RTO_MAX; in TcpBackoffRto()
|
D | Tcp4Input.c | 231 Tcb->Rto = (Tcb->SRtt + MAX (8, 4 * Tcb->RttVar)) >> TCP_RTT_SHIFT; in TcpComputeRtt() 238 if (Tcb->Rto < TCP_RTO_MIN) { in TcpComputeRtt() 239 Tcb->Rto = TCP_RTO_MIN; in TcpComputeRtt() 241 } else if (Tcb->Rto > TCP_RTO_MAX) { in TcpComputeRtt() 242 Tcb->Rto = TCP_RTO_MAX; in TcpComputeRtt() 248 Tcb, Tcb->SRtt, Tcb->RttVar, Tcb->Rto)); in TcpComputeRtt() 1101 TcpSetTimer (Tcb, TCP_TIMER_REXMIT, Tcb->Rto); in TcpInput()
|
D | Tcp4Proto.h | 227 UINT32 Rto; ///< Current RTO, not scaled member
|
D | Tcp4Dispatcher.c | 437 Tcb->Rto = 3 * TCP_TICK_HZ; in Tcp4ConfigurePcb()
|
D | Tcp4Output.c | 876 TcpSetTimer (Tcb, TCP_TIMER_REXMIT, Tcb->Rto); in TcpToSendData()
|
/device/linaro/bootloader/edk2/NetworkPkg/TcpDxe/ |
D | TcpTimer.c | 133 Tcb->Rto <<= 1; in TcpBackoffRto() 135 if (Tcb->Rto < TCP_RTO_MIN) { in TcpBackoffRto() 137 Tcb->Rto = TCP_RTO_MIN; in TcpBackoffRto() 138 } else if (Tcb->Rto > TCP_RTO_MAX) { in TcpBackoffRto() 140 Tcb->Rto = TCP_RTO_MAX; in TcpBackoffRto() 231 TcpSetTimer (Tcb, TCP_TIMER_REXMIT, Tcb->Rto); in TcpRexmitTimeout() 434 Tcb->ProbeTime = Tcb->Rto; in TcpSetProbeTimer()
|
D | TcpInput.c | 251 Tcb->Rto = (Tcb->SRtt + MAX (8, 4 * Tcb->RttVar)) >> TCP_RTT_SHIFT; in TcpComputeRtt() 258 if (Tcb->Rto < TCP_RTO_MIN) { in TcpComputeRtt() 259 Tcb->Rto = TCP_RTO_MIN; in TcpComputeRtt() 261 } else if (Tcb->Rto > TCP_RTO_MAX) { in TcpComputeRtt() 262 Tcb->Rto = TCP_RTO_MAX; in TcpComputeRtt() 272 Tcb->Rto) in TcpComputeRtt() 1210 TcpSetTimer (Tcb, TCP_TIMER_REXMIT, Tcb->Rto); in TcpInput()
|
D | TcpProto.h | 304 UINT32 Rto; ///< Current RTO, not scaled. member
|
D | TcpOutput.c | 920 TcpSetTimer (Tcb, TCP_TIMER_REXMIT, Tcb->Rto); in TcpToSendData()
|
D | TcpDispatcher.c | 587 Tcb->Rto = 3 * TCP_TICK_HZ; in TcpConfigurePcb()
|