Home
last modified time | relevance | path

Searched refs:TimeDiff32 (Results 1 – 3 of 3) sorted by relevance

/external/webrtc/p2p/base/
Dpseudo_tcp.cc288 if (m_rto_base && (rtc::TimeDiff32(m_rto_base + m_rx_rto, now) <= 0)) { in NotifyClock()
319 if ((m_snd_wnd == 0) && (rtc::TimeDiff32(m_lastsend + m_rx_rto, now) <= 0)) { in NotifyClock()
320 if (rtc::TimeDiff32(now, m_lastrecv) >= 15000) { in NotifyClock()
334 if (m_t_ack && (rtc::TimeDiff32(m_t_ack + m_ack_delay, now) <= 0)) { in NotifyClock()
341 (TimeDiff32(m_lastrecv + IDLE_TIMEOUT, now) <= 0)) { in NotifyClock()
348 (TimeDiff32(m_lasttraffic + (m_bOutgoing ? IDLE_PING * 3 / 2 : IDLE_PING), in NotifyClock()
621 rtc::TimeDiff32(m_t_ack + m_ack_delay, now)); in clock_check()
625 rtc::TimeDiff32(m_rto_base + m_rx_rto, now)); in clock_check()
629 rtc::TimeDiff32(m_lastsend + m_rx_rto, now)); in clock_check()
635 rtc::TimeDiff32( in clock_check()
[all …]
/external/webrtc/rtc_base/
Dtime_utils.h93 int32_t TimeDiff32(uint32_t later, uint32_t earlier);
Dtime_utils.cc227 int32_t TimeDiff32(uint32_t later, uint32_t earlier) { in TimeDiff32() function