HomeSort by relevance Sort by last modified time
    Searched refs:connectEnd (Results 1 - 10 of 10) 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/WebKit/chromium/src/
WebURLLoadTiming.cpp 116 int WebURLLoadTiming::connectEnd() const
118 return m_private->connectEnd;
123 m_private->connectEnd = end;
WebPerformance.cpp 116 double WebPerformance::connectEnd() const
118 return millisecondsToSeconds(m_private->timing()->connectEnd());
  /external/webkit/Source/WebCore/page/
PerformanceTiming.h 63 unsigned long long connectEnd() const;
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();
PerformanceTiming.idl 44 readonly attribute unsigned long long connectEnd;
  /external/webkit/Source/WebKit/chromium/public/
WebPerformance.h 72 WEBKIT_API double connectEnd() const;
WebURLLoadTiming.h 78 WEBKIT_API int connectEnd() const;
  /external/webkit/Source/WebCore/inspector/front-end/
ResourceTimingView.js 95 addRow(WebInspector.UIString("Blocking"), "connecting", resource.timing.connectStart, resource.timing.connectEnd);
101 addRow(WebInspector.UIString("Connecting"), "connecting", connectStart, resource.timing.connectEnd);
  /external/webkit/Source/WebCore/inspector/
InspectorResourceAgent.cpp 210 timingObject->setNumber("connectEnd", timing.connectEnd);

Completed in 1426 milliseconds