HomeSort by relevance Sort by last modified time
    Searched defs:connectEnd (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/page/
PerformanceResourceTiming.cpp 140 double PerformanceResourceTiming::connectEnd() const
146 if (!m_timing || m_timing->connectEnd == 0.0 || m_didReuseConnection)
149 return monotonicTimeToDocumentMilliseconds(m_requestingDocument.get(), m_timing->connectEnd);
169 return connectEnd();
PerformanceTiming.cpp 177 unsigned long long PerformanceTiming::connectEnd() const
187 // connectEnd will be zero when a network request is not made.
189 double connectEnd = timing->connectEnd;
190 if (connectEnd == 0.0 || loader->response().connectionReused())
193 return monotonicTimeToIntegerMilliseconds(connectEnd);
218 return connectEnd();
  /external/chromium_org/third_party/WebKit/Source/core/platform/network/
ResourceLoadTiming.h 53 timing->connectEnd = connectEnd;
70 && connectEnd == other.connectEnd
94 double connectEnd;
111 , connectEnd(0)
  /external/chromium_org/third_party/WebKit/Source/web/
WebPerformance.cpp 116 double WebPerformance::connectEnd() const
118 return millisecondsToSeconds(m_private->timing()->connectEnd());
WebURLLoadTiming.cpp 116 double WebURLLoadTiming::connectEnd() const
118 return m_private->connectEnd;
123 m_private->connectEnd = end;

Completed in 185 milliseconds