Lines Matching refs:check

291      * Utility routine to check if the InetAddress is an
302 * Utility routine to check if the InetAddress in a wildcard address.
312 * Utility routine to check if the InetAddress is a loopback address.
323 * Utility routine to check if the InetAddress is an link local address.
334 * Utility routine to check if the InetAddress is a site local address.
345 * Utility routine to check if the multicast address has global scope.
357 * Utility routine to check if the multicast address has node scope.
369 * Utility routine to check if the multicast address has link scope.
381 * Utility routine to check if the multicast address has site scope.
393 * Utility routine to check if the multicast address has organization scope.
490 * is not allowed by the security check, the textual
505 * here without a security check.
516 * is not allowed by the security check, the textual
519 * @param check make security check if true
523 String getHostName(boolean check) {
525 holder().hostName = InetAddress.getHostFromNameService(this, check);
544 * or if the operation is not allowed by the security check,
571 * is not allowed by the security check, the textual
574 * @param check make security check if true
578 private static String getHostFromNameService(InetAddress addr, boolean check) {
585 /* check to see if calling code is allowed to know
588 if (check) {
600 InetAddress[] arr = InetAddress.getAllByName0(host, check);
786 // don't need to explicitly check if there is
810 // check if entry has expired
1175 * check if the literal address string has %nn appended
1214 static InetAddress[] getAllByName0 (String host, boolean check)
1216 return getAllByName0 (host, null, check);
1219 private static InetAddress[] getAllByName0 (String host, InetAddress reqAddr, boolean check)
1228 if (check) {