OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:httpRequest
(Results
1 - 4
of
4
) sorted by null
/external/oauth/core/src/main/java/net/oauth/client/httpclient4/
HttpClient4.java
68
HttpRequestBase
httpRequest
;
79
httpRequest
= entityEnclosingMethod;
81
httpRequest
= new HttpDelete(url);
83
httpRequest
= new HttpGet(url);
86
httpRequest
.addHeader(header.getKey(), header.getValue());
88
HttpClient client = clientPool.getHttpClient(new URL(
httpRequest
.getURI().toString()));
90
HttpResponse httpResponse = client.execute(
httpRequest
);
91
return new HttpMethodResponse(
httpRequest
, httpResponse, excerpt, request.getContentCharset());
HttpMethodResponse.java
55
this.
httpRequest
= request;
62
private final HttpRequestBase
httpRequest
;
97
StringBuilder request = new StringBuilder(
httpRequest
.getMethod());
98
request.append(" ").append(
httpRequest
.getURI().getPath());
99
String query =
httpRequest
.getURI().getQuery();
104
for (Header header :
httpRequest
.getAllHeaders()) {
107
if (
httpRequest
instanceof HttpEntityEnclosingRequest) {
108
HttpEntityEnclosingRequest r = (HttpEntityEnclosingRequest)
httpRequest
;
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
FsUtils.java
159
HttpGet
httpRequest
= new HttpGet(mUrl.toString());
181
mBytes = getHttpClient().execute(
httpRequest
, handler);
222
HttpGet
httpRequest
= new HttpGet(url.toString());
255
return getHttpClient().execute(
httpRequest
, handler);
/external/oauth/core/src/main/java/net/oauth/client/
OAuthClient.java
314
final HttpMessage
httpRequest
= new HttpMessage(request.method, new URL(url), body);
315
httpRequest
.headers.addAll(headers);
316
HttpResponseMessage httpResponse = http.execute(
httpRequest
);
Completed in 327 milliseconds