OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:httpHost
(Results
1 - 3
of
3
) sorted by null
/packages/apps/Browser/src/com/android/browser/
FetchUrlMimeType.java
20
import org.apache.http.
HttpHost
;
67
HttpHost
httpHost
= Proxy.getPreferredHttpHost(mContext, mUri);
68
if (
httpHost
!= null) {
69
ConnRouteParams.setDefaultProxy(client.getParams(),
httpHost
);
DownloadTouchIcon.java
20
import org.apache.http.
HttpHost
;
118
HttpHost
httpHost
= Proxy.getPreferredHttpHost(mContext, url);
119
if (
httpHost
!= null) {
120
ConnRouteParams.setDefaultProxy(client.getParams(),
httpHost
);
/frameworks/base/core/java/android/net/http/
RequestQueue.java
45
import org.apache.http.
HttpHost
;
54
* Requests, indexed by
HttpHost
(scheme, host, port)
56
private final LinkedHashMap<
HttpHost
, LinkedList<Request>> mPending;
61
private
HttpHost
mProxyHost = null;
142
public
HttpHost
getProxyHost() {
158
private HashMap<
HttpHost
, LinkedList<ConnectionThread>> mActiveMap;
160
ConnectionThread getThread(
HttpHost
host) {
173
public Connection getConnection(Context context,
HttpHost
host) {
215
mPending = new LinkedHashMap<
HttpHost
, LinkedList<Request>>(32);
273
mProxyHost = new
HttpHost
(host, Proxy.getPort(mContext), "http")
[
all
...]
Completed in 204 milliseconds