/frameworks/base/core/tests/coretests/src/android/net/ |
H A D | WebAddressTest.java | 29 assertEquals("google.com.", webAddress.getHost()); 37 assertEquals("www.myspace.com", webAddress.getHost());
|
H A D | UriTest.java | 83 assertNull(u.getHost()); 170 assertEquals("localhost", uri.getHost()); 175 assertEquals("localhost", uri.getHost()); 184 assertEquals("localhost", uri.getHost()); 188 assertEquals("localhost", uri.getHost()); 193 assertEquals("example2.com", uri.getHost()); 198 assertEquals("a.foo.com", uri.getHost()); 303 assertEquals("google.com.", uri.getHost()); 400 assertNull(uri.getHost());
|
/frameworks/base/core/java/android/content/pm/ |
H A D | InstantAppRequest.java | 58 if (origIntent.getData() != null && !TextUtils.isEmpty(origIntent.getData().getHost())) { 60 origIntent.getData().getHost(), 5 /*maxDigests*/);
|
/frameworks/base/core/java/android/webkit/ |
H A D | ClientCertRequest.java | 62 public abstract String getHost(); method in class:ClientCertRequest
|
/frameworks/support/leanback/src/main/java/androidx/leanback/media/ |
H A D | PlaybackBaseControlGlue.java | 299 if (!mFadeWhenPlaying && getHost() != null) { 300 getHost().setControlsOverlayAutoHideEnabled(false); 506 if (getHost() != null) { 507 getHost().notifyPlaybackRowChanged(); 528 if (getHost() != null) { 529 getHost().notifyPlaybackRowChanged(); 549 if (getHost() != null) { 550 getHost().notifyPlaybackRowChanged(); 575 if (getHost() != null) { 576 getHost() [all...] |
H A D | PlaybackTransportControlGlue.java | 180 if (getHost() instanceof PlaybackSeekUi) { 181 ((PlaybackSeekUi) getHost()).setPlaybackSeekUiClient(null); 307 if (mFadeWhenPlaying && getHost() != null) { 308 getHost().setControlsOverlayAutoHideEnabled(isPlaying);
|
H A D | PlaybackGlue.java | 276 public PlaybackGlueHost getHost() { method in class:PlaybackGlue
|
H A D | PlaybackControlGlue.java | 329 if (!mFadeWhenPlaying && getHost() != null) { 330 getHost().setControlsOverlayAutoHideEnabled(false); 616 if (getHost() != null) { 617 getHost().notifyPlaybackRowChanged(); 707 if (mFadeWhenPlaying && getHost() != null) { 708 getHost().setControlsOverlayAutoHideEnabled(playbackSpeed == PLAYBACK_SPEED_NORMAL);
|
/frameworks/base/core/java/android/net/ |
H A D | PacProxySelector.java | 75 uri = new URI(uri.getScheme(), null, uri.getHost(), uri.getPort(), "/", null, null); 79 urlString = uri.getHost(); 81 urlString = uri.getHost(); 84 response = mProxyService.resolvePacFile(uri.getHost(), urlString);
|
H A D | ProxyInfo.java | 154 mHost = source.getHost(); 187 public String getHost() { method in class:ProxyInfo 286 if (mHost != null && p.getHost() != null && mHost.equals(p.getHost()) == false) {
|
H A D | WebAddress.java | 160 public String getHost() { method in class:WebAddress
|
H A D | Proxy.java | 135 public static final String getHost(Context ctx) { method in class:Proxy 248 host = p.getHost();
|
/frameworks/support/leanback/src/androidTest/java/androidx/leanback/media/ |
H A D | PlaybackControlGlueTest.java | 110 assertSame(host, mGlue.getHost()); 136 assertSame(host, mGlue.getHost()); 158 assertSame(host, mGlue.getHost()); 187 assertSame(host, mGlue.getHost());
|
H A D | PlaybackGlueTest.java | 58 assertSame(host, glue.getHost()); 77 assertSame(host, glue2.getHost()); 78 assertNull(glue.getHost()); 81 assertNull(glue2.getHost());
|
H A D | PlaybackBannerControlGlueTest.java | 84 assertSame(host, mGlue.getHost()); 109 assertSame(host, mGlue.getHost()); 130 assertSame(host, mGlue.getHost()); 158 assertSame(host, mGlue.getHost());
|
H A D | PlaybackTransportControlGlueTest.java | 121 assertSame(host, mGlue.getHost()); 146 assertSame(host, mGlue.getHost()); 167 assertSame(host, mGlue.getHost()); 195 assertSame(host, mGlue.getHost());
|
/frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/ |
H A D | WebAsset.java | 49 mUrl = new URL(url.getProtocol().toLowerCase(), url.getHost().toLowerCase(), port, ""); 57 return mUrl.getHost();
|
/frameworks/base/packages/PrintRecommendationService/src/com/android/printservice/recommendation/plugin/google/ |
H A D | CloudPrintPlugin.java | 97 Log.i(LOG_TAG, "host: " + nsdServiceInfo.getHost()); 140 InetAddress address = nsdServiceInfo.getHost();
|
/frameworks/base/packages/PrintRecommendationService/src/com/android/printservice/recommendation/util/ |
H A D | MDNSFilteredDiscovery.java | 172 boolean added = mPrinters.add(serviceInfo.getHost()); 196 boolean removed = mPrinters.remove(serviceInfo.getHost());
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/doze/ |
H A D | DozeFactory.java | 49 DozeHost host = getHost(dozeService); 102 public static DozeHost getHost(DozeService service) { method in class:DozeFactory
|
H A D | DozeService.java | 52 if (DozeFactory.getHost(this) == null) {
|
/frameworks/base/media/java/android/media/ |
H A D | Media2HTTPConnection.java | 154 String host = url.getHost(); 242 boolean sameHost = mURL.getHost().equals(url.getHost());
|
H A D | MediaHTTPConnection.java | 159 String host = url.getHost(); 247 boolean sameHost = mURL.getHost().equals(url.getHost());
|
/frameworks/base/tests/net/java/android/net/nsd/ |
H A D | NsdServiceInfoTest.java | 171 assertEquals(original.getHost(), result.getHost());
|
/frameworks/opt/net/voip/src/java/android/net/sip/ |
H A D | SipProfile.java | 129 mProfile.mDomain = mUri.getHost(); 287 mProfile.mProxyAddress = uri.getHost();
|