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

  /external/webkit/Source/WebCore/loader/
DocumentLoadTiming.h 39 , fetchStart(0.0)
54 double fetchStart;
MainResourceLoader.cpp 178 ASSERT(documentLoader()->timing()->fetchStart);
189 documentLoadTiming->redirectStart = documentLoadTiming->fetchStart;
191 documentLoadTiming->fetchStart = documentLoadTiming->redirectEnd;
588 ASSERT(!documentLoader()->timing()->fetchStart);
589 documentLoader()->timing()->fetchStart = currentTime();
  /external/webkit/Source/WebCore/page/
PerformanceTiming.h 59 unsigned long long fetchStart() const;
PerformanceTiming.cpp 148 unsigned long long PerformanceTiming::fetchStart() const
154 return toIntegerMilliseconds(timing->fetchStart);
161 return fetchStart();
164 // Rather than exposing a special value that indicates no DNS, we "backfill" with fetchStart.
167 return fetchStart();
286 return fetchStart();
397 double baseTime = getPossiblySkewedTimeInKnownRange(resourceTiming->requestTime, documentTiming->fetchStart, documentTiming->responseEnd);
PerformanceTiming.idl 40 readonly attribute unsigned long long fetchStart;
  /external/webkit/Source/WebKit/chromium/src/
WebPerformance.cpp 96 double WebPerformance::fetchStart() const
98 return millisecondsToSeconds(m_private->timing()->fetchStart());
  /external/webkit/Source/WebKit/chromium/public/
WebPerformance.h 68 WEBKIT_API double fetchStart() const;

Completed in 128 milliseconds