HomeSort by relevance Sort by last modified time
    Searched refs:expectedContentLength (Results 1 - 25 of 28) sorted by null

1 2

  /external/webkit/Source/WebKit/win/Interfaces/
IWebURLResponse.idl 43 - (long long)expectedContentLength
45 HRESULT expectedContentLength([out, retval] long long *result);
48 - (id)initWithURL:(NSURL *)URL MIMEType:(NSString *)MIMEType expectedContentLength:(int)length textEncodingName:(NSString *)name
50 HRESULT initWithURL([in] BSTR url, [in] BSTR mimeType, [in] int expectedContentLength, [in] BSTR textEncodingName);
  /external/webkit/Source/WebCore/platform/network/mac/
ResourceResponseMac.mm 60 NSInteger expectedContentLength;
62 expectedContentLength = -1;
64 expectedContentLength = static_cast<NSInteger>(m_expectedContentLength);
65 const_cast<ResourceResponse*>(this)->m_nsResponse.adoptNS([[NSURLResponse alloc] initWithURL:m_url MIMEType:m_mimeType expectedContentLength:expectedContentLength textEncodingName:m_textEncodingName]);
86 m_expectedContentLength = [m_nsResponse.get() expectedContentLength];
  /external/webkit/Source/WebKit/win/
WebURLResponse.h 48 virtual HRESULT STDMETHODCALLTYPE expectedContentLength(
54 /* [in] */ int expectedContentLength,
WebURLResponse.cpp 284 HRESULT STDMETHODCALLTYPE WebURLResponse::expectedContentLength(
287 *result = m_response.expectedContentLength();
294 /* [in] */ int expectedContentLength,
297 m_response = ResourceResponse(MarshallingHelpers::BSTRToKURL(url), String(mimeType), expectedContentLength, String(textEncodingName), String());
  /external/webkit/Source/WebKit/mac/Plugins/Hosted/
HostedNetscapePluginStream.mm 94 void HostedNetscapePluginStream::startStream(NSURL *responseURL, long long expectedContentLength, NSDate *lastModifiedDate, NSString *mimeType, NSData *headers)
109 expectedContentLength,
136 long long expectedContentLength = [r expectedContentLength];
176 // <rdar://problem/4470599> tracks a request for -[NSURLResponse expectedContentLength] to incorporate this logic.
179 expectedContentLength = -1;
184 startStream([r URL], expectedContentLength, WKGetNSURLResponseLastModifiedDate(r), [r MIMEType], theHeaders);
HostedNetscapePluginStream.h 82 void startStream(NSURL *, long long expectedContentLength, NSDate *lastModifiedDate, NSString *mimeType, NSData *headers);
WebKitPluginHost.defs 142 expectedContentLength :int64_t;
  /external/webkit/Tools/DumpRenderTree/mac/
WebArchiveDumpSupportMac.mm 45 CFURLResponseRef CFURLResponseCreate(CFAllocatorRef alloc, CFURLRef URL, CFStringRef mimeType, SInt64 expectedContentLength, CFStringRef textEncodingName, CFURLCacheStoragePolicy recommendedPolicy);
60 return CFURLResponseCreate(kCFAllocatorDefault, (CFURLRef)[response URL], (CFStringRef)[response MIMEType], [response expectedContentLength], (CFStringRef)[response textEncodingName], kCFURLCacheStorageAllowed);
  /external/webkit/Source/WebCore/platform/network/
ResourceResponseBase.h 65 long long expectedContentLength() const;
66 void setExpectedContentLength(long long expectedContentLength);
ResourceResponseBase.cpp 124 data->m_expectedContentLength = expectedContentLength();
175 long long ResourceResponseBase::expectedContentLength() const
182 void ResourceResponseBase::setExpectedContentLength(long long expectedContentLength)
187 m_expectedContentLength = expectedContentLength;
574 if (a.expectedContentLength() != b.expectedContentLength())
BlobResourceHandle.cpp 103 if (response.expectedContentLength() > intMaxForLength) {
111 m_data.resize(static_cast<size_t>(response.expectedContentLength()));
  /external/webkit/Source/WebKit/chromium/src/
WebURLResponse.cpp 162 long long WebURLResponse::expectedContentLength() const
164 return m_private->m_resourceResponse->expectedContentLength();
167 void WebURLResponse::setExpectedContentLength(long long expectedContentLength)
169 m_private->m_resourceResponse->setExpectedContentLength(expectedContentLength);
  /external/webkit/Tools/WebKitLauncher/
WebKitLauncherURLProtocol.m 92 NSURLResponse *response = [[NSURLResponse alloc] initWithURL:[[self request] URL] MIMEType:@"text/javascript" expectedContentLength:0 textEncodingName:@"utf-8"];
105 NSURLResponse *response = [[NSURLResponse alloc] initWithURL:[[self request] URL] MIMEType:@"text/plain" expectedContentLength:0 textEncodingName:@"utf-8"];
  /external/webkit/Source/WebKit/mac/Plugins/
WebNetscapePluginStream.mm 213 void WebNetscapePluginStream::startStream(NSURL *url, long long expectedContentLength, NSDate *lastModifiedDate, const String& mimeType, NSData *headers)
224 m_stream.end = expectedContentLength > 0 ? (uint32_t)expectedContentLength : 0;
302 long long expectedContentLength = [r expectedContentLength];
342 // <rdar://problem/4470599> tracks a request for -[NSURLResponse expectedContentLength] to incorporate this logic.
345 expectedContentLength = -1;
350 startStream([r URL], expectedContentLength, WKGetNSURLResponseLastModifiedDate(r), response.mimeType(), theHeaders);
WebNetscapePluginStream.h 93 void startStream(NSURL *, long long expectedContentLength, NSDate *lastModifiedDate, const WTF::String& mimeType, NSData *headers);
  /external/webkit/Source/WebKit2/WebProcess/Plugins/
PluginView.cpp 149 static String buildHTTPHeaders(const ResourceResponse& response, long long& expectedContentLength)
174 // <rdar://problem/4470599> tracks a request for -[NSURLResponse expectedContentLength] to incorporate this logic.
177 expectedContentLength = -1;
187 long long expectedContentLength = response.expectedContentLength();
189 String headers = buildHTTPHeaders(response, expectedContentLength);
192 if (expectedContentLength > 0)
193 streamLength = expectedContentLength;
316 long long expectedContentLength = response.expectedContentLength();
    [all...]
  /external/webkit/Source/WebCore/plugins/
PluginStream.cpp 139 long long expectedContentLength = m_resourceResponse.expectedContentLength();
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/chromium/public/
WebURLResponse.h 96 WEBKIT_API long long expectedContentLength() const;
  /external/webkit/Tools/DumpRenderTree/cf/
WebArchiveDumpSupport.cpp 130 SInt64 expectedContentLength = CFURLResponseGetExpectedContentLength(response.get());
131 RetainPtr<CFNumberRef> expectedContentLengthNumber(AdoptCF, CFNumberCreate(kCFAllocatorDefault, kCFNumberSInt64Type, &expectedContentLength));
132 CFDictionarySetValue(responseDictionary.get(), CFSTR("expectedContentLength"), expectedContentLengthNumber.get());
  /external/webkit/Source/WebCore/fileapi/
FileReaderLoader.cpp 133 unsigned long long length = response.expectedContentLength();
  /external/webkit/Source/WebCore/loader/
ProgressTracker.cpp 165 long long estimatedLength = response.expectedContentLength();
  /external/chromium/webkit/glue/media/
simple_data_source.cc 174 size_ = response.expectedContentLength();
buffered_resource_loader.cc 322 content_length_ = response.expectedContentLength();
  /external/webkit/Source/WebCore/platform/graphics/gstreamer/
WebKitWebSourceGStreamer.cpp 729 long long length = response.expectedContentLength();
  /external/webkit/Source/WebCore/xml/
XMLHttpRequest.cpp     [all...]

Completed in 668 milliseconds

1 2