HomeSort by relevance Sort by last modified time
    Searched refs:connectStart (Results 1 - 11 of 11) sorted by null

  /external/webkit/Source/WebCore/platform/network/
ResourceLoadTiming.h 50 timing->connectStart = connectStart;
67 && connectStart == other.connectStart
86 int connectStart;
101 , connectStart(-1)
  /external/webkit/Source/WebCore/page/
PerformanceTiming.cpp 187 unsigned long long PerformanceTiming::connectStart() const
197 // connectStart will be -1 when a network request is not made.
199 int connectStart = timing->connectStart;
200 if (connectStart < 0 || loader->response().connectionReused())
205 if (timing->dnsEnd >= 0 && timing->dnsEnd > connectStart)
206 connectStart = timing->dnsEnd;
208 return resourceLoadTimeRelativeToAbsolute(connectStart);
215 return connectStart();
219 return connectStart();
    [all...]
PerformanceTiming.h 62 unsigned long long connectStart() const;
PerformanceTiming.idl 43 readonly attribute unsigned long long connectStart;
  /external/webkit/Source/WebKit/chromium/src/
WebURLLoadTiming.cpp 106 int WebURLLoadTiming::connectStart() const
108 return m_private->connectStart;
113 m_private->connectStart = start;
WebPerformance.cpp 111 double WebPerformance::connectStart() const
113 return millisecondsToSeconds(m_private->timing()->connectStart());
  /external/webkit/Source/WebCore/inspector/front-end/
ResourceTimingView.js 93 if (resource.timing.connectStart !== -1) {
95 addRow(WebInspector.UIString("Blocking"), "connecting", resource.timing.connectStart, resource.timing.connectEnd);
97 var connectStart = resource.timing.connectStart;
100 connectStart += resource.timing.dnsEnd - resource.timing.dnsStart;
101 addRow(WebInspector.UIString("Connecting"), "connecting", connectStart, resource.timing.connectEnd);
  /external/webkit/Source/WebKit/chromium/public/
WebPerformance.h 71 WEBKIT_API double connectStart() const;
WebURLLoadTiming.h 75 WEBKIT_API int connectStart() const;
  /external/webkit/Source/WebKit/chromium/src/js/
Tests.js 603 test.assertTrue(resource.timing.receiveHeadersEnd - resource.timing.connectStart >= 100,
604 "Time between receiveHeadersEnd and connectStart should be >=100ms, but was " +
605 "receiveHeadersEnd=" + resource.timing.receiveHeadersEnd + ", connectStart=" + resource.timing.connectStart + ".");
  /external/webkit/Source/WebCore/inspector/
InspectorResourceAgent.cpp 209 timingObject->setNumber("connectStart", timing.connectStart);

Completed in 375 milliseconds