HomeSort by relevance Sort by last modified time
    Searched refs:httpClient (Results 1 - 8 of 8) sorted by null

  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/
UrlOpener.java 78 * - {@code http://hc.apache.org/httpcomponents-client-ga/httpclient/apidocs/org/apache/http/impl/conn/ProxySelectorRoutePlanner.html}
100 // If the protocol is not supported by HttpClient (e.g. file:///),
114 final DefaultHttpClient httpClient = new DefaultHttpClient();
123 httpClient.getConnectionManager().getSchemeRegistry(),
125 httpClient.setRoutePlanner(routePlanner);
131 HttpResponse response = httpClient.execute(httpget, localContext);
189 httpClient.getCredentialsProvider().setCredentials(authScope, credentials);
218 httpClient.getConnectionManager().shutdown();
226 httpClient.getConnectionManager().shutdown();
  /frameworks/base/core/tests/bandwidthtests/src/com/android/bandwidthtest/util/
BandwidthTestUtil.java 27 import org.apache.http.client.HttpClient;
130 HttpClient httpClient = new DefaultHttpClient();
145 HttpResponse res = httpClient.execute(postRequest);
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/client/
NetworkUtilities.java 25 import org.apache.http.client.HttpClient;
85 * Configures the httpClient to connect to the URL provided.
87 public static HttpClient getHttpClient() {
88 HttpClient httpClient = new DefaultHttpClient();
89 final HttpParams params = httpClient.getParams();
93 return httpClient;
  /frameworks/base/core/tests/coretests/src/android/net/http/
AbstractProxyTest.java 33 import org.apache.http.client.HttpClient;
45 protected abstract HttpClient newHttpClient();
68 HttpClient httpClient = newHttpClient();
72 httpClient.getConnectionManager().getSchemeRegistry()
75 HttpResponse response = httpClient.execute(
119 HttpClient httpProxyClient = newHttpClient();
160 HttpClient httpProxyClient = newHttpClient();
196 HttpClient client = newHttpClient();
212 HttpClient client = newHttpClient()
    [all...]
  /cts/tests/tests/net/src/android/net/http/cts/
ApacheHttpClientTest.java 20 import org.apache.http.client.HttpClient;
106 HttpClient httpClient = new DefaultHttpClient();
108 HttpResponse response = httpClient.execute(request);
  /packages/experimental/AndroidVendorSecurityTool/src/com/android/vending/sectool/v1/
PostNotification.java 138 DefaultHttpClient httpClient = new SectoolHttpsClient();
140 StatusLine response = httpClient.execute(httpGet).getStatusLine();
  /packages/experimental/StrictModeTest/src/com/android/strictmodetest/
StrictModeActivity.java 185 DefaultHttpClient httpClient = new DefaultHttpClient();
186 HttpResponse res = httpClient.execute(
  /packages/apps/Settings/src/com/android/settings/
RadioInfo.java 64 import org.apache.http.client.HttpClient;
696 HttpClient client = new DefaultHttpClient();
751 Thread httpClient = new Thread() {
758 httpClient.start();
    [all...]

Completed in 897 milliseconds