Home
last modified time | relevance | path

Searched refs:Rto (Results 1 – 10 of 10) sorted by relevance

/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Tcp4Dxe/
DTcp4Timer.c188 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()
DTcp4Input.c231 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()
DTcp4Proto.h227 UINT32 Rto; ///< Current RTO, not scaled member
DTcp4Dispatcher.c437 Tcb->Rto = 3 * TCP_TICK_HZ; in Tcp4ConfigurePcb()
DTcp4Output.c876 TcpSetTimer (Tcb, TCP_TIMER_REXMIT, Tcb->Rto); in TcpToSendData()
/device/linaro/bootloader/edk2/NetworkPkg/TcpDxe/
DTcpTimer.c133 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()
DTcpInput.c251 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()
DTcpProto.h304 UINT32 Rto; ///< Current RTO, not scaled. member
DTcpOutput.c920 TcpSetTimer (Tcb, TCP_TIMER_REXMIT, Tcb->Rto); in TcpToSendData()
DTcpDispatcher.c587 Tcb->Rto = 3 * TCP_TICK_HZ; in TcpConfigurePcb()