HomeSort by relevance Sort by last modified time
    Searched defs:connectStart (Results 1 - 4 of 4) 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...]
  /external/webkit/Source/WebKit/chromium/src/
WebPerformance.cpp 111 double WebPerformance::connectStart() const
113 return millisecondsToSeconds(m_private->timing()->connectStart());
WebURLLoadTiming.cpp 106 int WebURLLoadTiming::connectStart() const
108 return m_private->connectStart;
113 m_private->connectStart = start;

Completed in 240 milliseconds