Home
last modified time | relevance | path

Searched refs:CFURLResponseRef (Results 1 – 25 of 31) sorted by relevance

12

/external/webkit/Source/WebCore/platform/network/mac/
DWebCoreURLResponse.h29 typedef struct _CFURLResponse* CFURLResponseRef; typedef
33 - (CFURLResponseRef)_CFURLResponse;
39 void adjustMIMETypeIfNecessary(CFURLResponseRef);
/external/webkit/Source/WebCore/platform/network/cf/
DResourceResponse.h33 typedef struct _CFURLResponse* CFURLResponseRef; typedef
52 ResourceResponse(CFURLResponseRef cfResponse) in ResourceResponse()
86 CFURLResponseRef cfURLResponse() const;
101 mutable RetainPtr<CFURLResponseRef> m_cfResponse;
DResourceHandleCFNet.cpp120 static void setDefaultMIMEType(CFURLResponseRef response) in setDefaultMIMEType()
132 …willSendRequest(CFURLConnectionRef conn, CFURLRequestRef cfRequest, CFURLResponseRef cfRedirectRes… in willSendRequest()
184 void didReceiveResponse(CFURLConnectionRef conn, CFURLResponseRef cfResponse, const void* clientInf… in didReceiveResponse()
715 CFURLResponseRef cfResponse = 0; in willLoadFromCache()
DResourceResponseCFNet.cpp50 CFURLResponseRef ResourceResponse::cfURLResponse() const in cfURLResponse()
DAuthenticationCF.cpp64 … (CFURLResponseRef)CFURLAuthChallengeGetFailureResponse(cfChallenge), in AuthenticationChallenge()
/external/webkit/Source/WebKit2/Shared/API/c/cf/
DWKURLResponseCF.cpp34 WKURLResponseRef WKURLResponseCreateWithCFURLResponse(CFURLResponseRef urlResponse) in WKURLResponseCreateWithCFURLResponse()
39 CFURLResponseRef copiedURLResponse = CFURLResponseCreateCopy(kCFAllocatorDefault, urlResponse); in WKURLResponseCreateWithCFURLResponse()
44 CFURLResponseRef WKURLResponseCopyCFURLResponse(CFAllocatorRef alloc, WKURLResponseRef urlResponse) in WKURLResponseCopyCFURLResponse()
DWKURLResponseCF.h36 WK_EXPORT WKURLResponseRef WKURLResponseCreateWithCFURLResponse(CFURLResponseRef urlResponse);
37 WK_EXPORT CFURLResponseRef WKURLResponseCopyCFURLResponse(CFAllocatorRef alloc, WKURLResponseRef ur…
/external/webkit/Source/WebKit2/WebProcess/Downloads/cfnet/
DDownloadCFNet.cpp46 …RequestCallback(CFURLDownloadRef download, CFURLRequestRef request, CFURLResponseRef redirectionRe…
48 static void didReceiveResponseCallback(CFURLDownloadRef download, CFURLResponseRef response, const …
49 static void willResumeWithResponseCallback(CFURLDownloadRef download, CFURLResponseRef response, UI…
150 CFURLRequestRef willSendRequestCallback(CFURLDownloadRef, CFURLRequestRef request, CFURLResponseRef in willSendRequestCallback()
163 void didReceiveResponseCallback(CFURLDownloadRef, CFURLResponseRef response, const void* clientInfo) in didReceiveResponseCallback()
168 void willResumeWithResponseCallback(CFURLDownloadRef, CFURLResponseRef response, UInt64 startingByt… in willResumeWithResponseCallback()
/external/webkit/Tools/DumpRenderTree/mac/
DWebArchiveDumpSupportMac.mm45 CFURLResponseRef CFURLResponseCreate(CFAllocatorRef alloc, CFURLRef URL, CFStringRef mimeType, SInt…
46 CFURLResponseRef CFURLResponseCreateWithHTTPResponse(CFAllocatorRef alloc, CFURLRef URL, CFHTTPMess…
47 void CFURLResponseSetExpectedContentLength(CFURLResponseRef response, SInt64 length);
48 void CFURLResponseSetMIMEType(CFURLResponseRef response, CFStringRef mimeType);
52 CFURLResponseRef createCFURLResponseFromResponseData(CFDataRef responseData)
/external/webkit/Tools/DumpRenderTree/cf/
DWebArchiveDumpSupport.h31 typedef struct _CFURLResponse* CFURLResponseRef; typedef
38 CFURLResponseRef createCFURLResponseFromResponseData(CFDataRef responseData);
DWebArchiveDumpSupport.cpp35 CFURLRef CFURLResponseGetURL(CFURLResponseRef response);
36 CFStringRef CFURLResponseGetMIMEType(CFURLResponseRef response);
37 CFStringRef CFURLResponseGetTextEncodingName(CFURLResponseRef response);
38 SInt64 CFURLResponseGetExpectedContentLength(CFURLResponseRef response);
39 CFHTTPMessageRef CFURLResponseGetHTTPResponse(CFURLResponseRef response);
112 … RetainPtr<CFURLResponseRef> response(AdoptCF, createCFURLResponseFromResponseData(responseData)); in convertWebResourceResponseToDictionary()
/external/webkit/Source/WebKit/win/
DWebDownloadCFNet.cpp62 …RequestCallback(CFURLDownloadRef download, CFURLRequestRef request, CFURLResponseRef redirectionRe…
64 static void didReceiveResponseCallback(CFURLDownloadRef download, CFURLResponseRef response, const …
65 static void willResumeWithResponseCallback(CFURLDownloadRef download, CFURLResponseRef response, UI…
362 CFURLRequestRef WebDownload::willSendRequest(CFURLRequestRef request, CFURLResponseRef response) in willSendRequest()
402 void WebDownload::didReceiveResponse(CFURLResponseRef response) in didReceiveResponse()
409 void WebDownload::willResumeWithResponse(CFURLResponseRef response, UInt64 fromByte) in willResumeWithResponse()
519 CFURLRequestRef willSendRequestCallback(CFURLDownloadRef, CFURLRequestRef request, CFURLResponseRef in willSendRequestCallback()
525 void didReceiveResponseCallback(CFURLDownloadRef, CFURLResponseRef response, const void *clientInfo) in didReceiveResponseCallback()
528 void willResumeWithResponseCallback(CFURLDownloadRef, CFURLResponseRef response, UInt64 startingByt… in willResumeWithResponseCallback()
DWebDownload.h112 CFURLRequestRef willSendRequest(CFURLRequestRef, CFURLResponseRef);
114 void didReceiveResponse(CFURLResponseRef);
115 void willResumeWithResponse(CFURLResponseRef, UInt64);
DWebURLResponse.cpp482 CFURLResponseRef cfResponse = m_response.cfURLResponse(); in certificateDictionary()
/external/webkit/Source/WebCore/platform/network/curl/
DResourceResponse.h31 typedef struct _CFURLResponse* CFURLResponseRef; typedef
52 CFURLResponseRef cfURLResponse() const { return 0; } in cfURLResponse()
/external/webkit/Source/WebCore/platform/mac/
DWebCoreSystemInterface.h89 typedef struct _CFURLResponse *CFURLResponseRef; typedef
270 extern CFStringRef (*wkGetCFURLResponseMIMEType)(CFURLResponseRef);
271 extern CFURLRef (*wkGetCFURLResponseURL)(CFURLResponseRef);
272 extern CFHTTPMessageRef (*wkGetCFURLResponseHTTPResponse)(CFURLResponseRef);
273 extern CFStringRef (*wkCopyCFURLResponseSuggestedFilename)(CFURLResponseRef);
274 extern void (*wkSetCFURLResponseMIMEType)(CFURLResponseRef, CFStringRef mimeType);
DWebCoreSystemInterface.mm189 CFStringRef (*wkGetCFURLResponseMIMEType)(CFURLResponseRef);
190 CFURLRef (*wkGetCFURLResponseURL)(CFURLResponseRef);
191 CFHTTPMessageRef (*wkGetCFURLResponseHTTPResponse)(CFURLResponseRef);
192 CFStringRef (*wkCopyCFURLResponseSuggestedFilename)(CFURLResponseRef);
193 void (*wkSetCFURLResponseMIMEType)(CFURLResponseRef, CFStringRef mimeType);
/external/webkit/WebKitLibraries/win/include/WebKitSystemInterface/
DWebKitSystemInterface.h48 typedef struct _CFURLResponse* CFURLResponseRef; typedef
88 CFDictionaryRef wkGetSSLCertificateInfo(CFURLResponseRef);
183 CFDictionaryRef wkCFURLResponseCreateSerializableRepresentation(CFURLResponseRef cfResponse, CFType…
184 CFURLResponseRef wkCFURLResponseCreateFromSerializableRepresentation(CFDictionaryRef representation…
/external/webkit/WebKitLibraries/
DWebKitSystemInterface.h18 typedef struct _CFURLResponse* CFURLResponseRef; typedef
403 CFStringRef WKGetCFURLResponseMIMEType(CFURLResponseRef);
404 CFURLRef WKGetCFURLResponseURL(CFURLResponseRef);
405 CFHTTPMessageRef WKGetCFURLResponseHTTPResponse(CFURLResponseRef);
406 CFStringRef WKCopyCFURLResponseSuggestedFilename(CFURLResponseRef);
407 void WKSetCFURLResponseMIMEType(CFURLResponseRef, CFStringRef mimeType);
/external/webkit/Tools/TestWebKitAPI/Tests/WebKit2/win/
DDoNotCopyANullCFURLResponse.cpp38 …RetainPtr<CFURLResponseRef> nullCFResponse(AdoptCF, WKURLResponseCopyCFURLResponse(kCFAllocatorDef… in TEST()
/external/webkit/Source/WebCore/loader/cf/
DResourceLoaderCFNet.cpp41 CFURLResponseRef response = CFCachedURLResponseGetWrappedResponse(cachedResponse); in shouldCacheResponse()
/external/webkit/Source/WebKit2/Shared/
DWebURLResponse.h36 typedef CFURLResponseRef PlatformResponse;
/external/webkit/Tools/TestWebKitAPI/win/
DPlatformUtilitiesWin.cpp109 RetainPtr<CFURLResponseRef> response(AdoptCF, WKURLResponseCopyCFURLResponse(0, wkResponse)); in MIMETypeForWKURLResponse()
/external/webkit/Source/WebKit2/Shared/win/
DPlatformCertificateInfo.cpp47 CFURLResponseRef cfResponse = response.cfURLResponse(); in PlatformCertificateInfo()
DWebCoreArgumentCodersWin.cpp111CFURLResponseRef cfURLResponse = wkCFURLResponseCreateFromSerializableRepresentation(dictionary.ge… in decodeResourceResponse()

12