Home
last modified time | relevance | path

Searched refs:ProbeTime (Results 1 – 4 of 4) sorted by relevance

/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Tcp4Dxe/
DTcp4Timer.c392 Tcb->ProbeTime = Tcb->Rto; in TcpSetProbeTimer()
396 Tcb->ProbeTime <<= 1; in TcpSetProbeTimer()
399 if (Tcb->ProbeTime < TCP_RTO_MIN) { in TcpSetProbeTimer()
401 Tcb->ProbeTime = TCP_RTO_MIN; in TcpSetProbeTimer()
402 } else if (Tcb->ProbeTime > TCP_RTO_MAX) { in TcpSetProbeTimer()
404 Tcb->ProbeTime = TCP_RTO_MAX; in TcpSetProbeTimer()
407 TcpSetTimer (Tcb, TCP_TIMER_PROBE, Tcb->ProbeTime); in TcpSetProbeTimer()
DTcp4Proto.h208 UINT32 ProbeTime; ///< The time out value for current window prober member
/device/linaro/bootloader/edk2/NetworkPkg/TcpDxe/
DTcpTimer.c434 Tcb->ProbeTime = Tcb->Rto; in TcpSetProbeTimer()
438 Tcb->ProbeTime <<= 1; in TcpSetProbeTimer()
441 if (Tcb->ProbeTime < TCP_RTO_MIN) { in TcpSetProbeTimer()
443 Tcb->ProbeTime = TCP_RTO_MIN; in TcpSetProbeTimer()
444 } else if (Tcb->ProbeTime > TCP_RTO_MAX) { in TcpSetProbeTimer()
446 Tcb->ProbeTime = TCP_RTO_MAX; in TcpSetProbeTimer()
449 TcpSetTimer (Tcb, TCP_TIMER_PROBE, Tcb->ProbeTime); in TcpSetProbeTimer()
DTcpProto.h285 UINT32 ProbeTime; ///< The time out value for current window prober. member