Home | History | Annotate | Download | only in connectivity

Lines Matching refs:hostname

82  *         programmed, and strict mode hostname resolution (if applicable) is
96 * [5] Upon a successful hostname resolution NetworkMonitor initiates a
97 * validation attempt in the form of a lookup for a one-time hostname
129 public final String hostname;
138 this.hostname = "";
142 public PrivateDnsConfig(String hostname, InetAddress[] ips) {
143 this.useTls = !TextUtils.isEmpty(hostname);
144 this.hostname = useTls ? hostname : "";
150 hostname = cfg.hostname;
155 return useTls && !TextUtils.isEmpty(hostname);
160 "{" + useTls + ":" + hostname + "/" + Arrays.toString(ips) + "}";
197 final public String hostname;
201 String hostname, boolean validated) {
204 this.hostname = hostname;
216 // Validation statuses of <hostname, ipAddress> pairs for a single netId
234 private void updateTrackedDnses(String[] ipAddresses, String hostname) {
238 latestDnses.add(new Pair(hostname,
242 // Remove <hostname, ipAddress> pairs that should not be tracked.
250 // Add new <hostname, ipAddress> pairs that should be tracked.
259 Pair<String, InetAddress> p = new Pair(update.hostname,
337 final String tlsHostname = strictMode ? privateDnsCfg.hostname : null;
376 final String tlsHostname = strictMode ? privateDnsCfg.hostname : "";