/frameworks/base/packages/SystemUI/src/com/android/systemui/media/ |
D | MediaHierarchyManager.kt | 338 val host = getHost(desiredLocation) in updateDesiredLocation() 350 val currentHost = getHost(desiredLocation) in performTransitionToNewLocation() 351 val previousHost = getHost(previousLocation) in performTransitionToNewLocation() 450 var endHost = getHost(desiredLocation)!! in updateTargetState() 451 var starthost = getHost(previousLocation)!! in updateTargetState() 464 val bounds = getHost(desiredLocation)?.currentBounds ?: return in updateTargetState() 508 val currentHost = getHost(desiredLocation) in getQSTransformationProgress() 509 val previousHost = getHost(previousLocation) in getQSTransformationProgress() 520 private fun getHost(@MediaLocation location: Int): MediaHost? { in getHost() method 529 getHost(desiredLocation)?.let { in cancelAnimationAndApplyDesiredState() [all …]
|
/frameworks/base/core/java/android/view/ |
D | ImeInsetsSourceConsumer.java | 126 return getImm().requestImeShow(mController.getHost().getWindowToken()) in requestShow() 135 getImm().notifyImeHidden(mController.getHost().getWindowToken()); in notifyHidden() 140 final IBinder window = mController.getHost().getWindowToken(); in removeSurface() 164 final IBinder window = mController.getHost().getWindowToken(); in onPerceptible() 231 return mController.getHost().getInputMethodManager(); in getImm()
|
D | InsetsSourceConsumer.java | 114 mController.getHost().getRootViewTitle())); in setControl() 138 mController.getHost().getRootViewTitle(), requestedVisible)); in setControl() 202 InsetsState.typeToString(mType), mController.getHost().getRootViewTitle())); in hide() 242 + mController.getHost().getRootViewTitle() in applyLocalVisibilityOverride() 250 mController.getHost().getRootViewTitle(), mRequestedVisible)); in applyLocalVisibilityOverride()
|
D | InputMonitor.java | 111 public @NonNull IInputMonitorHost getHost() { in getHost() method in InputMonitor
|
/frameworks/base/core/java/android/net/ |
D | PacProxySelector.java | 75 uri = new URI(uri.getScheme(), null, uri.getHost(), uri.getPort(), "/", null, null); in select() 79 urlString = uri.getHost(); in select() 81 urlString = uri.getHost(); in select() 84 response = mProxyService.resolvePacFile(uri.getHost(), urlString); in select()
|
D | ProxyInfo.java | 177 mHost = source.getHost(); in ProxyInfo() 214 public String getHost() { in getHost() method in ProxyInfo 304 if (mHost != null && p.getHost() != null && mHost.equals(p.getHost()) == false) { in equals()
|
D | Proxy.java | 137 public static final String getHost(Context ctx) { in getHost() method in Proxy 251 host = p.getHost(); in setHttpProxySystemProperty()
|
D | WebAddress.java | 171 public String getHost() { in getHost() method in WebAddress
|
/frameworks/base/core/tests/coretests/src/android/net/ |
D | WebAddressTest.java | 29 assertEquals("google.com.", webAddress.getHost()); in testHostWithTrailingDot() 37 assertEquals("www.myspace.com", webAddress.getHost()); in testPathWithoutLeadingSlash()
|
D | UriTest.java | 87 assertNull(u.getHost()); in testBuildUponOpaqueStringUri() 174 assertEquals("localhost", uri.getHost()); in testAuthorityParsing() 179 assertEquals("localhost", uri.getHost()); in testAuthorityParsing() 188 assertEquals("localhost:42", uri.getHost()); in testAuthorityParsing() 191 assertEquals("localhost", uri.getHost()); in testAuthorityParsing() 196 assertEquals("example2.com", uri.getHost()); in testAuthorityParsing() 201 assertEquals("a.foo.com", uri.getHost()); in testAuthorityParsing() 306 assertEquals("google.com.", uri.getHost()); in testHostWithTrailingDot() 403 assertNull(uri.getHost()); in testOpaqueUri()
|
/frameworks/base/services/core/java/com/android/server/connectivity/ |
D | ProxyTracker.java | 91 if (proxy != null && TextUtils.isEmpty(proxy.getHost()) in canonicalizeProxyInfo() 112 return Objects.equals(pa, pb) && (pa == null || Objects.equals(pa.getHost(), pb.getHost())); in proxyInfoEqual() 243 if (proxyInfo != null && (!TextUtils.isEmpty(proxyInfo.getHost()) || in setGlobalProxy() 250 host = mGlobalProxy.getHost(); in setGlobalProxy()
|
/frameworks/base/packages/OsuLogin/src/com/android/hotspot2/osulogin/ |
D | OsuLoginActivity.java | 101 mHostName = getHost(mUrl); in onCreate() 216 private String getHost(String url) { in getHost() method in OsuLoginActivity 218 return new URL(url).getHost(); in getHost() 228 return url.getProtocol() + "://" + url.getHost(); in getHeaderSubtitle()
|
/frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/ |
D | WebAsset.java | 49 mUrl = new URL(url.getProtocol().toLowerCase(), url.getHost().toLowerCase(), port, ""); in WebAsset() 57 return mUrl.getHost(); in getDomain()
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/soap/ |
D | HttpsServiceConnection.java | 121 public String getHost() { in getHost() method in HttpsServiceConnection 122 return mConnection.getURL().getHost(); in getHost()
|
/frameworks/base/packages/PrintRecommendationService/src/com/android/printservice/recommendation/plugin/google/ |
D | CloudPrintPlugin.java | 97 Log.i(LOG_TAG, "host: " + nsdServiceInfo.getHost()); in CloudPrintPlugin() 140 InetAddress address = nsdServiceInfo.getHost(); in CloudPrintPlugin()
|
/frameworks/base/core/java/android/webkit/ |
D | ClientCertRequest.java | 62 public abstract String getHost(); in getHost() method in ClientCertRequest
|
D | URLUtil.java | 82 if (webAddress.getHost().indexOf('.') == -1) { in guessUrl() 84 webAddress.setHost("www." + webAddress.getHost() + ".com"); in guessUrl()
|
/frameworks/base/media/java/android/media/ |
D | MediaHTTPConnection.java | 207 String host = url.getHost(); in isLocalHost() 320 boolean sameHost = mURL.getHost().equals(url.getHost()); in seekTo()
|
/frameworks/base/tests/net/java/android/net/nsd/ |
D | NsdServiceInfoTest.java | 169 assertEquals(original.getHost(), result.getHost()); in checkParcelable()
|
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/hotspot2/soap/ |
D | HttpsServiceConnectionTest.java | 189 assertEquals(mUrl.getHost(), mHttpsServiceConnection.getHost()); in verifyGetHost()
|
/frameworks/base/packages/PrintRecommendationService/src/com/android/printservice/recommendation/util/ |
D | PrinterHashMap.java | 72 printerAddressess.add(mPrinters.valueAt(i).getHost()); in getPrinterAddresses()
|
/frameworks/opt/net/voip/src/java/android/net/sip/ |
D | SipProfile.java | 130 mProfile.mDomain = mUri.getHost(); in Builder() 288 mProfile.mProxyAddress = uri.getHost(); in build()
|
/frameworks/base/services/core/java/com/android/server/pm/ |
D | InstantAppResolver.java | 129 if (origIntent.getData() != null && !TextUtils.isEmpty(origIntent.getData().getHost())) { in parseDigest() 130 return new InstantAppResolveInfo.InstantAppDigest(origIntent.getData().getHost(), in parseDigest() 288 intent.putExtra(Intent.EXTRA_INSTANT_APP_HOSTNAME, origIntent.getData().getHost()); in buildEphemeralInstallerIntent()
|
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/ |
D | IpConfigStoreTestWriter.java | 98 out.writeUTF(proxyProperties.getHost()); in writeConfig()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/ |
D | ScreenRecordTile.java | 117 getHost().collapsePanels(); in showPrompt()
|