Searched defs:host (Results 1 - 25 of 80) sorted by relevance

1234

/frameworks/base/core/java/android/net/http/
H A DRequestFeeder.java31 Request getRequest(HttpHost host); argument
34 * @return true if a request for this host is available
36 boolean haveRequest(HttpHost host); argument
H A DHttpConnection.java35 HttpConnection(Context context, HttpHost host, argument
37 super(context, host, requestFeeder);
H A DX509TrustManagerExtensions.java60 * description of the chain and authType parameters. The final parameter, host, should be the
67 String host) throws CertificateException {
68 return mDelegate.checkServerTrusted(chain, authType, host);
66 checkServerTrusted(X509Certificate[] chain, String authType, String host) argument
H A DHttpsConnection.java141 HttpsConnection(Context context, HttpHost host, HttpHost proxy, argument
143 super(context, host, requestFeeder);
209 // to add 'host' header unless we want proxy to answer us with a
214 || headerName.equals("host")) {
290 // if we do not have a proxy, we simply connect to the host
H A DIdleCache.java67 HttpHost host, Connection connection) {
72 HttpLog.v("IdleCache size " + mCount + " host " + host);
80 entry.mHost = host;
97 synchronized Connection getConnection(HttpHost host) { argument
104 if (eHost != null && eHost.equals(host)) {
66 cacheConnection( HttpHost host, Connection connection) argument
/frameworks/base/core/jni/android/graphics/
H A DNinePatchPeeker.h27 // the host lives longer than we do, so a raw ptr is safe
30 NinePatchPeeker(SkImageDecoder* host) argument
31 : mHost(host)
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DObscureSpeechDelegate.java49 public void sendAccessibilityEvent(View host, int eventType) { argument
50 super.sendAccessibilityEvent(host, eventType);
57 host.announceForAccessibility(host.getContext().getString(
63 public void onPopulateAccessibilityEvent(View host, AccessibilityEvent event) { argument
64 super.onPopulateAccessibilityEvent(host, event);
69 event.setContentDescription(host.getContext().getString(
75 public void onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfo info) { argument
76 super.onInitializeAccessibilityNodeInfo(host, info);
79 final Context ctx = host
[all...]
/frameworks/base/packages/services/PacProcessor/src/com/android/pacprocessor/
H A DPacNative.java36 private native String makeProxyRequestNativeLocked(String url, String host); argument
74 public synchronized String makeProxyRequest(String url, String host) { argument
75 String ret = makeProxyRequestNativeLocked(url, host);
H A DPacService.java73 public String resolvePacFile(String host, String url) throws RemoteException { argument
77 for (char c : host.toCharArray()) {
79 throw new RemoteException("Invalid host was passed");
82 return mPacNative.makeProxyRequest(url, host);
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerViewAccessibilityDelegate.java39 public boolean performAccessibilityAction(View host, int action, Bundle args) { argument
40 if (super.performAccessibilityAction(host, action, args)) {
51 public void onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfoCompat info) { argument
52 super.onInitializeAccessibilityNodeInfo(host, info);
60 public void onInitializeAccessibilityEvent(View host, AccessibilityEvent event) { argument
61 super.onInitializeAccessibilityEvent(host, event);
63 if (host instanceof RecyclerView) {
64 RecyclerView rv = (RecyclerView) host;
77 public void onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfoCompat info) {
78 super.onInitializeAccessibilityNodeInfo(host, inf
[all...]
/frameworks/base/core/java/android/net/
H A DSntpClient.java66 * Sends an SNTP request to the given host and processes the response.
68 * @param host host name of the server.
72 public boolean requestTime(String host, int timeout) { argument
77 InetAddress address = InetAddress.getByName(host);
H A DProxy.java52 * though if the proxy is undefined the host string
105 * @param ctx A Context used to get the settings for the proxy host.
107 * @return Proxy (java.net) object containing the host name. If the
108 * user did not set a hostname it returns the default host.
109 * A null value means that no host is to be used.
113 String host = "";
114 if ((url != null) && !isLocalHost(host)) {
129 * Return the proxy host set by the user.
130 * @param ctx A Context used to get the settings for the proxy host.
131 * @return String containing the host nam
220 isLocalHost(String host) argument
281 setHttpProxySystemProperty(String host, String port, String exclList, Uri pacFileUrl) argument
[all...]
H A DProxyInfo.java69 * on the specified host and port.
71 public static ProxyInfo buildDirectProxy(String host, int port) { argument
72 return new ProxyInfo(host, port, null);
77 * on the specified host and port.
79 * The proxy will not be used to access any host in exclusion list, exclList.
84 public static ProxyInfo buildDirectProxy(String host, int port, List<String> exclList) { argument
86 return new ProxyInfo(host, port, TextUtils.join(",", array), array);
101 public ProxyInfo(String host, int port, String exclList) { argument
102 mHost = host;
147 private ProxyInfo(String host, in argument
[all...]
H A DWebAddress.java63 /* host */ "([" + GOOD_IRI_CHAR + "%_-][" + GOOD_IRI_CHAR + "%_\\.-]*|\\[[0-9a-fA-F:\\.]+\\])?" +
155 public void setHost(String host) { argument
156 mHost = host;
/frameworks/base/core/java/android/view/
H A DInputFilter.java134 * @param host The input filter host environment.
136 public final void install(IInputFilterHost host) { argument
137 mH.obtainMessage(MSG_INSTALL, host).sendToTarget();
H A DGhostView.java92 public static void calculateMatrix(View view, ViewGroup host, Matrix matrix) { argument
97 host.transformMatrixToLocal(matrix);
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
H A DAirplaneModeTile.java40 public AirplaneModeTile(Host host) { argument
41 super(host);
H A DColorInversionTile.java38 public ColorInversionTile(Host host) { argument
39 super(host);
53 mUsageTracker = new UsageTracker(host.getContext(), ColorInversionTile.class,
H A DFlashlightTile.java41 public FlashlightTile(Host host) { argument
42 super(host);
43 mFlashlightController = host.getFlashlightController();
H A DLocationTile.java37 public LocationTile(Host host) { argument
38 super(host);
39 mController = host.getLocationController();
40 mKeyguard = host.getKeyguardMonitor();
H A DRotationLockTile.java40 public RotationLockTile(Host host) { argument
41 super(host);
42 mController = host.getRotationLockController();
/frameworks/support/v4/ics/android/support/v4/view/
H A DAccessibilityDelegateCompatIcs.java31 public boolean dispatchPopulateAccessibilityEvent(View host, AccessibilityEvent event); argument
32 public void onInitializeAccessibilityEvent(View host, AccessibilityEvent event); argument
33 public void onInitializeAccessibilityNodeInfo(View host, Object info); argument
34 public void onPopulateAccessibilityEvent(View host, AccessibilityEvent event); argument
35 public boolean onRequestSendAccessibilityEvent(ViewGroup host, View child, argument
37 public void sendAccessibilityEvent(View host, int eventType); argument
38 public void sendAccessibilityEventUnchecked(View host, AccessibilityEvent event); argument
48 public boolean dispatchPopulateAccessibilityEvent(View host, AccessibilityEvent event) {
49 return bridge.dispatchPopulateAccessibilityEvent(host, event);
53 public void onInitializeAccessibilityEvent(View host, AccessibilityEven
85 dispatchPopulateAccessibilityEvent(Object delegate, View host, AccessibilityEvent event) argument
90 onInitializeAccessibilityEvent(Object delegate, View host, AccessibilityEvent event) argument
95 onInitializeAccessibilityNodeInfo(Object delegate, View host, Object info) argument
100 onPopulateAccessibilityEvent(Object delegate, View host, AccessibilityEvent event) argument
105 onRequestSendAccessibilityEvent(Object delegate, ViewGroup host, View child, AccessibilityEvent event) argument
111 sendAccessibilityEvent(Object delegate, View host, int eventType) argument
115 sendAccessibilityEventUnchecked(Object delegate, View host, AccessibilityEvent event) argument
[all...]
/frameworks/support/v4/jellybean/android/support/v4/view/
H A DAccessibilityDelegateCompatJellyBean.java33 public boolean dispatchPopulateAccessibilityEvent(View host, AccessibilityEvent event); argument
34 public void onInitializeAccessibilityEvent(View host, AccessibilityEvent event); argument
35 public void onInitializeAccessibilityNodeInfo(View host, Object info); argument
36 public void onPopulateAccessibilityEvent(View host, AccessibilityEvent event); argument
37 public boolean onRequestSendAccessibilityEvent(ViewGroup host, View child, argument
39 public void sendAccessibilityEvent(View host, int eventType); argument
40 public void sendAccessibilityEventUnchecked(View host, AccessibilityEvent event); argument
41 public Object getAccessibilityNodeProvider(View host); argument
42 public boolean performAccessibilityAction(View host, int action, Bundle args); argument
50 public boolean dispatchPopulateAccessibilityEvent(View host, AccessibilityEven
97 getAccessibilityNodeProvider(Object delegate, View host) argument
102 performAccessibilityAction(Object delegate, View host, int action, Bundle args) argument
[all...]
/frameworks/av/media/libmediaplayerservice/
H A DHDCP.cpp83 status_t HDCP::initAsync(const char *host, unsigned port) { argument
90 return mHDCPModule->initAsync(host, port);
/frameworks/base/core/java/android/widget/
H A DShareActionProvider.java334 public boolean onChooseActivity(ActivityChooserModel host, Intent intent) { argument

Completed in 437 milliseconds

1234