Searched refs:httpResponse (Results 1 – 11 of 11) sorted by relevance
/external/webkit/Source/WebCore/platform/network/cf/ |
D | ResourceResponseCFNet.cpp | 104 CFHTTPMessageRef httpResponse = CFURLResponseGetHTTPResponse(m_cfResponse.get()); in platformLazyInit() local 105 if (httpResponse) { in platformLazyInit() 106 m_httpStatusCode = CFHTTPMessageGetResponseStatusCode(httpResponse); in platformLazyInit() 108 … RetainPtr<CFDictionaryRef> headers(AdoptCF, CFHTTPMessageCopyAllHeaderFields(httpResponse)); in platformLazyInit() 120 CFHTTPMessageRef httpResponse = CFURLResponseGetHTTPResponse(m_cfResponse.get()); in platformLazyInit() local 121 if (httpResponse) { in platformLazyInit() 122 … RetainPtr<CFStringRef> statusLine(AdoptCF, CFHTTPMessageCopyResponseStatusLine(httpResponse)); in platformLazyInit() 125 … RetainPtr<CFDictionaryRef> headers(AdoptCF, CFHTTPMessageCopyAllHeaderFields(httpResponse)); in platformLazyInit()
|
/external/oauth/core/src/main/java/net/oauth/client/httpclient4/ |
D | HttpMethodResponse.java | 56 this.httpResponse = response; in HttpMethodResponse() 63 private final HttpResponse httpResponse; field in HttpMethodResponse 70 return httpResponse.getStatusLine().getStatusCode(); in getStatusCode() 76 return httpResponse.getEntity().getContent(); in openBody() 82 Header[] allHeaders = httpResponse.getAllHeaders(); in getHeaders() 122 String value = httpResponse.getStatusLine().toString(); in dump() 124 for (Header header : httpResponse.getAllHeaders()) { in dump()
|
D | HttpClient4.java | 90 HttpResponse httpResponse = client.execute(httpRequest); in execute() local 91 … return new HttpMethodResponse(httpRequest, httpResponse, excerpt, request.getContentCharset()); in execute()
|
/external/webkit/Tools/DumpRenderTree/win/ |
D | HistoryDelegate.cpp | 118 COMPtr<IWebHTTPURLResponse> httpResponse; in didNavigateWithNavigationData() local 119 if (FAILED(response->QueryInterface(&httpResponse))) in didNavigateWithNavigationData() 123 if (FAILED(httpResponse->statusCode(&statusCode))) in didNavigateWithNavigationData() 139 bool wasFailure = hasSubstituteData || (httpResponse && statusCode >= 400); in didNavigateWithNavigationData()
|
D | ResourceLoadDelegate.cpp | 114 COMPtr<IWebHTTPURLResponse> httpResponse; in descriptionSuitableForTestResult() local 115 if (response && SUCCEEDED(response->QueryInterface(&httpResponse))) in descriptionSuitableForTestResult() 116 httpResponse->statusCode(&statusCode); in descriptionSuitableForTestResult()
|
/external/webkit/Tools/DumpRenderTree/mac/ |
D | WebArchiveDumpSupportMac.mm | 46 …WithHTTPResponse(CFAllocatorRef alloc, CFURLRef URL, CFHTTPMessageRef httpResponse, CFURLCacheStor… 62 NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse *)response; 65 …ttpMessage(AdoptCF, CFHTTPMessageCreateResponse(kCFAllocatorDefault, [httpResponse statusCode], 0,… 67 NSDictionary *headerFields = [httpResponse allHeaderFields];
|
D | HistoryDelegate.mm | 44 …NSHTTPURLResponse *httpResponse = [[navigationData response] isKindOfClass:[NSHTTPURLResponse clas… 45 …bool wasFailure = [navigationData hasSubstituteData] || (httpResponse && [httpResponse statusCode]…
|
/external/webkit/Source/WebCore/platform/network/mac/ |
D | ResourceResponseMac.mm | 97 NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse *)m_nsResponse.get(); 99 m_httpStatusCode = [httpResponse statusCode]; 101 NSDictionary *headers = [httpResponse allHeaderFields]; 116 NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse *)m_nsResponse.get(); 124 NSDictionary *headers = [httpResponse allHeaderFields];
|
/external/oauth/core/src/main/java/net/oauth/client/ |
D | OAuthClient.java | 316 HttpResponseMessage httpResponse = http.execute(httpRequest); in invoke() local 317 httpResponse = HttpMessageDecoder.decode(httpResponse); in invoke() 318 OAuthMessage response = new OAuthResponseMessage(httpResponse); in invoke() 319 if (httpResponse.getStatusCode() != HttpResponseMessage.STATUS_OK) { in invoke()
|
/external/webkit/Source/WebKit/mac/Plugins/Hosted/ |
D | HostedNetscapePluginStream.mm | 139 NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse *)r; 150 long statusCode = [httpResponse statusCode]; 162 NSDictionary *headerDict = [httpResponse allHeaderFields];
|
/external/webkit/Source/WebKit/mac/Plugins/ |
D | WebNetscapePluginStream.mm | 305 NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse *)r; 316 long statusCode = [httpResponse statusCode]; 328 NSDictionary *headerDict = [httpResponse allHeaderFields];
|