Searched defs:expectedContentLength (Results 1 - 6 of 6) sorted by relevance

/external/webkit/Tools/DumpRenderTree/cf/
H A DWebArchiveDumpSupport.cpp130 SInt64 expectedContentLength = CFURLResponseGetExpectedContentLength(response.get()); local
131 RetainPtr<CFNumberRef> expectedContentLengthNumber(AdoptCF, CFNumberCreate(kCFAllocatorDefault, kCFNumberSInt64Type, &expectedContentLength));
132 CFDictionarySetValue(responseDictionary.get(), CFSTR("expectedContentLength"), expectedContentLengthNumber.get());
/external/webkit/Source/WebCore/plugins/
H A DPluginStream.cpp139 long long expectedContentLength = m_resourceResponse.expectedContentLength(); local
160 // <rdar://problem/4470599> tracks a request for -[NSURLResponse expectedContentLength] to incorporate this logic.
163 expectedContentLength = -1;
169 m_stream.end = max(expectedContentLength, 0LL);
/external/webkit/Source/WebKit/win/
H A DWebURLResponse.cpp284 HRESULT STDMETHODCALLTYPE WebURLResponse::expectedContentLength( function in class:WebURLResponse
287 *result = m_response.expectedContentLength();
294 /* [in] */ int expectedContentLength,
297 m_response = ResourceResponse(MarshallingHelpers::BSTRToKURL(url), String(mimeType), expectedContentLength, String(textEncodingName), String());
291 initWithURL( BSTR url, BSTR mimeType, int expectedContentLength, BSTR textEncodingName) argument
/external/webkit/Source/WebKit/chromium/src/
H A DWebURLResponse.cpp162 long long WebURLResponse::expectedContentLength() const function in class:WebKit::WebURLResponse
164 return m_private->m_resourceResponse->expectedContentLength();
167 void WebURLResponse::setExpectedContentLength(long long expectedContentLength) argument
169 m_private->m_resourceResponse->setExpectedContentLength(expectedContentLength);
/external/webkit/Source/WebCore/platform/network/
H A DResourceResponseBase.cpp124 data->m_expectedContentLength = expectedContentLength();
175 long long ResourceResponseBase::expectedContentLength() const function in class:WebCore::ResourceResponseBase
182 void ResourceResponseBase::setExpectedContentLength(long long expectedContentLength) argument
187 m_expectedContentLength = expectedContentLength;
574 if (a.expectedContentLength() != b.expectedContentLength())
/external/webkit/Source/WebKit2/WebProcess/Plugins/
H A DPluginView.cpp149 static String buildHTTPHeaders(const ResourceResponse& response, long long& expectedContentLength) argument
174 // <rdar://problem/4470599> tracks a request for -[NSURLResponse expectedContentLength] to incorporate this logic.
177 expectedContentLength = -1;
187 long long expectedContentLength = response.expectedContentLength(); local
189 String headers = buildHTTPHeaders(response, expectedContentLength);
192 if (expectedContentLength > 0)
193 streamLength = expectedContentLength;
316 long long expectedContentLength = response.expectedContentLength(); local
[all...]

Completed in 236 milliseconds