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

  /external/webkit/Source/WebCore/platform/network/
ResourceLoadTiming.h 51 timing->connectEnd = connectEnd;
68 && connectEnd == other.connectEnd
87 int connectEnd;
102 , connectEnd(-1)
  /external/webkit/Source/WebCore/page/
PerformanceTiming.cpp 211 unsigned long long PerformanceTiming::connectEnd() const
221 // connectEnd will be -1 when a network request is not made.
223 int connectEnd = timing->connectEnd;
224 if (connectEnd < 0 || loader->response().connectionReused())
227 return resourceLoadTimeRelativeToAbsolute(connectEnd);
251 return connectEnd();
  /external/webkit/Source/WebKit/chromium/src/
WebPerformance.cpp 116 double WebPerformance::connectEnd() const
118 return millisecondsToSeconds(m_private->timing()->connectEnd());
WebURLLoadTiming.cpp 116 int WebURLLoadTiming::connectEnd() const
118 return m_private->connectEnd;
123 m_private->connectEnd = end;

Completed in 546 milliseconds