Searched refs:httpResponse (Results 1 - 13 of 13) sorted by relevance

/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
H A DHTTPProxyException.java23 public final String httpResponse; field in class:HTTPProxyException
26 public HTTPProxyException(String httpResponse, int httpErrorCode) argument
28 super("HTTP Proxy Error (" + httpErrorCode + " " + httpResponse + ")");
29 this.httpResponse = httpResponse;
/external/webkit/Source/WebCore/platform/network/cf/
H A DResourceResponseCFNet.cpp104 CFHTTPMessageRef httpResponse = CFURLResponseGetHTTPResponse(m_cfResponse.get()); local
105 if (httpResponse) {
106 m_httpStatusCode = CFHTTPMessageGetResponseStatusCode(httpResponse);
108 RetainPtr<CFDictionaryRef> headers(AdoptCF, CFHTTPMessageCopyAllHeaderFields(httpResponse));
120 CFHTTPMessageRef httpResponse = CFURLResponseGetHTTPResponse(m_cfResponse.get()); local
121 if (httpResponse) {
122 RetainPtr<CFStringRef> statusLine(AdoptCF, CFHTTPMessageCopyResponseStatusLine(httpResponse));
125 RetainPtr<CFDictionaryRef> headers(AdoptCF, CFHTTPMessageCopyAllHeaderFields(httpResponse));
/external/webkit/Tools/DumpRenderTree/mac/
H A DWebArchiveDumpSupportMac.mm46 CFURLResponseRef CFURLResponseCreateWithHTTPResponse(CFAllocatorRef alloc, CFURLRef URL, CFHTTPMessageRef httpResponse, CFURLCacheStoragePolicy recommendedPolicy);
62 NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse *)response;
65 RetainPtr<CFHTTPMessageRef> httpMessage(AdoptCF, CFHTTPMessageCreateResponse(kCFAllocatorDefault, [httpResponse statusCode], 0, kCFHTTPVersion1_1));
67 NSDictionary *headerFields = [httpResponse allHeaderFields];
H A DHistoryDelegate.mm44 NSHTTPURLResponse *httpResponse = [[navigationData response] isKindOfClass:[NSHTTPURLResponse class]] ? (NSHTTPURLResponse *)[navigationData response] : nil;
45 bool wasFailure = [navigationData hasSubstituteData] || (httpResponse && [httpResponse statusCode] >= 400);
/external/oauth/core/src/main/java/net/oauth/client/httpclient4/
H A DHttpMethodResponse.java56 this.httpResponse = response;
63 private final HttpResponse httpResponse; field in class:HttpMethodResponse
70 return httpResponse.getStatusLine().getStatusCode();
76 return httpResponse.getEntity().getContent();
82 Header[] allHeaders = httpResponse.getAllHeaders();
122 String value = httpResponse.getStatusLine().toString();
124 for (Header header : httpResponse.getAllHeaders()) {
H A DHttpClient4.java90 HttpResponse httpResponse = client.execute(httpRequest);
91 return new HttpMethodResponse(httpRequest, httpResponse, excerpt, request.getContentCharset());
/external/webkit/Source/WebCore/platform/network/mac/
H A DResourceResponseMac.mm97 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/webkit/Tools/DumpRenderTree/win/
H A DHistoryDelegate.cpp118 COMPtr<IWebHTTPURLResponse> httpResponse;
119 if (FAILED(response->QueryInterface(&httpResponse)))
123 if (FAILED(httpResponse->statusCode(&statusCode)))
139 bool wasFailure = hasSubstituteData || (httpResponse && statusCode >= 400);
H A DResourceLoadDelegate.cpp114 COMPtr<IWebHTTPURLResponse> httpResponse; local
115 if (response && SUCCEEDED(response->QueryInterface(&httpResponse)))
116 httpResponse->statusCode(&statusCode);
/external/oauth/core/src/main/java/net/oauth/client/
H A DOAuthClient.java316 HttpResponseMessage httpResponse = http.execute(httpRequest);
317 httpResponse = HttpMessageDecoder.decode(httpResponse);
318 OAuthMessage response = new OAuthResponseMessage(httpResponse);
319 if (httpResponse.getStatusCode() != HttpResponseMessage.STATUS_OK) {
/external/webkit/Source/WebKit/mac/Plugins/Hosted/
H A DHostedNetscapePluginStream.mm139 NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse *)r;
150 long statusCode = [httpResponse statusCode];
162 NSDictionary *headerDict = [httpResponse allHeaderFields];
/external/webkit/Source/WebKit/mac/Plugins/
H A DWebNetscapePluginStream.mm305 NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse *)r;
316 long statusCode = [httpResponse statusCode];
328 NSDictionary *headerDict = [httpResponse allHeaderFields];
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.mortbay.jetty.util_6.1.23.v201004211559.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 149 milliseconds