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

/external/webkit/WebCore/plugins/
H A DPluginStream.cpp142 long long expectedContentLength = m_resourceResponse.expectedContentLength(); local
164 // <rdar://problem/4470599> tracks a request for -[NSURLResponse expectedContentLength] to incorporate this logic.
167 expectedContentLength = -1;
173 m_stream.end = max(expectedContentLength, 0LL);
/external/webkit/WebKit/chromium/src/
H A DWebURLResponse.cpp106 long long WebURLResponse::expectedContentLength() const function in class:WebKit::WebURLResponse
108 return m_private->m_resourceResponse->expectedContentLength();
111 void WebURLResponse::setExpectedContentLength(long long expectedContentLength) argument
113 m_private->m_resourceResponse->setExpectedContentLength(expectedContentLength);
/external/webkit/WebKit/win/
H A DWebURLResponse.cpp286 HRESULT STDMETHODCALLTYPE WebURLResponse::expectedContentLength( function in class:WebURLResponse
289 *result = m_response.expectedContentLength();
296 /* [in] */ int expectedContentLength,
299 m_response = ResourceResponse(MarshallingHelpers::BSTRToKURL(url), String(mimeType), expectedContentLength, String(textEncodingName), String());
293 initWithURL( BSTR url, BSTR mimeType, int expectedContentLength, BSTR textEncodingName) argument
/external/webkit/WebCore/platform/network/
H A DResourceResponseBase.cpp112 data->m_expectedContentLength = expectedContentLength();
161 long long ResourceResponseBase::expectedContentLength() const function in class:WebCore::ResourceResponseBase
168 void ResourceResponseBase::setExpectedContentLength(long long expectedContentLength) argument
173 m_expectedContentLength = expectedContentLength;
468 if (a.expectedContentLength() != b.expectedContentLength())

Completed in 29 milliseconds