Searched defs:connectEnd (Results 1 - 4 of 4) sorted by relevance

/external/webkit/Source/WebCore/platform/network/
H A DResourceLoadTiming.h51 timing->connectEnd = connectEnd;
68 && connectEnd == other.connectEnd
87 int connectEnd; member in class:WebCore::ResourceLoadTiming
102 , connectEnd(-1)
/external/webkit/Source/WebKit/chromium/src/
H A DWebPerformance.cpp116 double WebPerformance::connectEnd() const function in class:WebKit::WebPerformance
118 return millisecondsToSeconds(m_private->timing()->connectEnd());
H A DWebURLLoadTiming.cpp116 int WebURLLoadTiming::connectEnd() const function in class:WebKit::WebURLLoadTiming
118 return m_private->connectEnd;
123 m_private->connectEnd = end;
/external/webkit/Source/WebCore/page/
H A DPerformanceTiming.cpp211 unsigned long long PerformanceTiming::connectEnd() const function in class:WebCore::PerformanceTiming
221 // connectEnd will be -1 when a network request is not made.
223 int connectEnd = timing->connectEnd; local
224 if (connectEnd < 0 || loader->response().connectionReused())
227 return resourceLoadTimeRelativeToAbsolute(connectEnd);
251 return connectEnd();

Completed in 6401 milliseconds