Home
last modified time | relevance | path

Searched refs:hostName (Results 1 – 12 of 12) sorted by relevance

/frameworks/base/core/java/android/content/pm/
DInstantAppResolveInfo.java67 public InstantAppResolveInfo(@NonNull String hostName, @Nullable String packageName, in InstantAppResolveInfo() argument
69 this(new InstantAppDigest(hostName), packageName, filters, -1 /*versionCode*/); in InstantAppResolveInfo()
144 public InstantAppDigest(@NonNull String hostName) { in InstantAppDigest() argument
145 this(hostName, -1 /*maxDigests*/); in InstantAppDigest()
149 public InstantAppDigest(@NonNull String hostName, int maxDigests) { in InstantAppDigest() argument
150 if (hostName == null) { in InstantAppDigest()
153 mDigestBytes = generateDigest(hostName.toLowerCase(Locale.ENGLISH), maxDigests); in InstantAppDigest()
165 private static byte[][] generateDigest(String hostName, int maxDigests) { in generateDigest() argument
170 final byte[] hostBytes = hostName.getBytes(); in generateDigest()
173 int prevDot = hostName.lastIndexOf('.'); in generateDigest()
[all …]
DEphemeralResolveInfo.java77 public EphemeralResolveInfo(@NonNull String hostName, @Nullable String packageName, in EphemeralResolveInfo() argument
79 this(new EphemeralDigest(hostName), packageName, filters); in EphemeralResolveInfo()
175 public EphemeralDigest(@NonNull String hostName) { in EphemeralDigest() argument
176 this(hostName, -1 /*maxDigests*/); in EphemeralDigest()
180 public EphemeralDigest(@NonNull String hostName, int maxDigests) { in EphemeralDigest() argument
181 mInstantAppDigest = new InstantAppDigest(hostName, maxDigests); in EphemeralDigest()
/frameworks/base/core/java/android/app/
DInstantAppResolverService.java108 int digestPrefix[], String token, String hostName, IRemoteCallback callback) { in onBind() argument
116 args.arg4 = hostName; in onBind()
155 void _onGetInstantAppIntentFilter(int digestPrefix[], String token, String hostName,
193 final String hostName = (String) args.arg4;
195 digestPrefix, token, hostName,
DEphemeralResolverService.java79 public EphemeralResolveInfo onGetEphemeralIntentFilter(String hostName) { in onGetEphemeralIntentFilter() argument
106 String hostName, InstantAppResolutionCallback callback) { in _onGetInstantAppIntentFilter() argument
111 final EphemeralResolveInfo response = onGetEphemeralIntentFilter(hostName); in _onGetInstantAppIntentFilter()
DIEphemeralResolver.aidl26 void getEphemeralIntentFilterList(IRemoteCallback callback, String hostName, in getEphemeralIntentFilterList() argument
DIInstantAppResolver.aidl27 String token, String hostName, IRemoteCallback callback); in getInstantAppIntentFilterList() argument
/frameworks/base/core/java/org/apache/http/conn/ssl/
DAbstractVerifier.java154 String hostName = host.trim().toLowerCase(Locale.ENGLISH); in verify() local
177 match = hostName.endsWith(cn.substring(1)); in verify()
181 match = countDots(hostName) == countDots(cn); in verify()
184 match = hostName.equals(cn); in verify()
/frameworks/base/services/core/java/com/android/server/pm/
DEphemeralResolverConnection.java115 String hostName, PhaseTwoCallback callback, Handler callbackHandler, in getInstantAppIntentFilterList() argument
133 .getInstantAppIntentFilterList(hashPrefix, token, hostName, remoteCallback); in getInstantAppIntentFilterList()
DInstantAppResolver.java152 final String hostName = intent.getData().getHost(); in doInstantAppResolutionPhaseTwo() local
153 final InstantAppDigest digest = new InstantAppDigest(hostName, 5 /*maxDigests*/); in doInstantAppResolutionPhaseTwo()
212 shaPrefix, token, hostName, callback, callbackHandler, startTime); in doInstantAppResolutionPhaseTwo()
/frameworks/base/services/net/java/android/net/dhcp/
DDhcpPacket.java751 String hostName = null; in decodeFullPacket() local
945 hostName = readAsciiString(packet, optionLen, false); in decodeFullPacket()
1080 newPacket.mHostName = hostName; in decodeFullPacket()
1241 Inet4Address serverIdentifier, byte[] requestedParams, String hostName) { in buildRequestPacket() argument
1246 pkt.mHostName = hostName; in buildRequestPacket()
/frameworks/base/core/java/android/net/
DSSLCertificateSocketFactory.java403 public void setHostname(Socket socket, String hostName) { in setHostname() argument
404 castToOpenSSLSocket(socket).setHostname(hostName); in setHostname()
/frameworks/base/core/java/android/app/admin/
DDevicePolicyManager.java3208 String hostName = sa.getHostName(); in setGlobalProxy() local
3211 hostSpec = hostBuilder.append(hostName) in setGlobalProxy()
3228 if (android.net.Proxy.validate(hostName, Integer.toString(port), exclSpec) in setGlobalProxy()