Home
last modified time | relevance | path

Searched refs:dnsEnd (Results 1 – 7 of 7) sorted by relevance

/external/webkit/Source/WebCore/platform/network/
DResourceLoadTiming.h49 timing->dnsEnd = dnsEnd; in deepCopy()
66 && dnsEnd == other.dnsEnd
85 int dnsEnd; variable
100 , dnsEnd(-1) in ResourceLoadTiming()
/external/webkit/Source/WebCore/page/
DPerformanceTiming.cpp180 int dnsEnd = timing->dnsEnd; in domainLookupEnd() local
181 if (dnsEnd < 0) in domainLookupEnd()
184 return resourceLoadTimeRelativeToAbsolute(dnsEnd); in domainLookupEnd()
205 if (timing->dnsEnd >= 0 && timing->dnsEnd > connectStart) in connectStart()
206 connectStart = timing->dnsEnd; in connectStart()
/external/webkit/Source/WebKit/chromium/src/
DWebURLLoadTiming.cpp96 int WebURLLoadTiming::dnsEnd() const in dnsEnd() function in WebKit::WebURLLoadTiming
98 return m_private->dnsEnd; in dnsEnd()
103 m_private->dnsEnd = end; in setDNSEnd()
/external/webkit/Source/WebCore/inspector/front-end/
DResourceTimingView.js91 …dRow(WebInspector.UIString("DNS Lookup"), "dns", resource.timing.dnsStart, resource.timing.dnsEnd);
100 connectStart += resource.timing.dnsEnd - resource.timing.dnsStart;
/external/webkit/Source/WebKit/chromium/public/
DWebURLLoadTiming.h72 WEBKIT_API int dnsEnd() const;
/external/webkit/Source/WebCore/inspector/
DInspectorResourceAgent.cpp208 timingObject->setNumber("dnsEnd", timing.dnsEnd); in buildObjectForTiming()
/external/webkit/Source/WebKit/chromium/
DChangeLog-2011-02-1614235 (WebKit::WebURLLoadTiming::dnsEnd):