/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/misc/ |
H A D | NetUtil.java | 33 public static InetAddress[] getAllByName(final String host) argument 43 return InetAddress.getAllByName(host); 59 * Gets the name of the local host. 61 * @return the hostname, or {@code null} if no IP address for the host 78 public static boolean isLoopbackAddress(final String host) { argument 84 InetAddress addr = InetAddress.getByName(host); 93 public static boolean isLocalAddress(final String host) { argument 99 InetAddress[] addrs = InetAddress.getAllByName(host);
|
/solaris-userland-s11u3/components/visual-panels/core/src/java/vpanels/client/com/oracle/solaris/vp/client/swing/ |
H A D | CertificatePane.java | 66 public void promptForCertificate(String host, Certificate certificate) argument 70 "certificate.message", host), JOptionPane.WARNING_MESSAGE);
|
H A D | AppLoginManager.java | 154 String host, Certificate certificate) throws ActionAbortedException { 156 dialog.getCertificatePane().promptForCertificate(host, certificate); 153 promptForCertificate( String host, Certificate certificate) argument
|
H A D | App.java | 57 private String host = RadLoginManager.LOCAL_HOST; field in class:App.CommandLineOptionsBean 86 return host; 163 public void setHost(String host) { argument 164 this.host = host; 217 public String host; field in class:App.InstanceInfo 228 public InstanceInfo(String address, Properties properties, String host, argument 234 this.host = host; 249 ", host [all...] |
/solaris-userland-s11u3/components/visual-panels/core/src/java/vpanels/panel/com/oracle/solaris/vp/panel/common/ |
H A D | LoginInfo.java | 34 * Gets the host for this login. 66 boolean matches(String host, String user, String role, String zone, argument
|
H A D | LoginRequest.java | 37 private LoginProperty<String> host; field in class:LoginRequest 51 * the given host. Each editable {@code LoginProperty} may be changed by 57 * @param host 58 * the host property 68 * zone once a connection to {@code host} is established 82 public LoginRequest(LoginProperty<String> host, LoginProperty<String> user, argument 87 this.host = createIfNeeded(host); 102 * on the given host. Each editable {@code LoginProperty} may be changed by 108 * @param host 120 LoginRequest(LoginProperty<String> host, LoginProperty<String> user, LoginProperty<String> role, DialogMessage... messages) argument [all...] |
H A D | ConnectionInfo.java | 41 private String host; field in class:ConnectionInfo 55 public ConnectionInfo(String host, String user, String role, argument 58 this.host = host; 67 public ConnectionInfo(String host, String user, String role, argument 70 this(host, user, role, null, null, null, connection); 79 return host; 108 public boolean matches(String host, String user, String role, String zone, argument 115 matchesHost(host); 140 buffer.append(toString(host, use 163 matchesHost(String host) argument 217 toString(String host, String user, String role) argument [all...] |
/solaris-userland-s11u3/components/visual-panels/core/src/java/vpanels/panel/com/oracle/solaris/vp/panel/swing/view/ |
H A D | AuthPanel.java | 104 public static String toString(String host, String user, String role, argument 107 if (NetUtil.isLoopbackAddress(host)) { 108 host = NetUtil.getHostName(); 116 resource.append(".host.user"); 128 return Finder.getString(resource.toString(), host, user, role, zone,
|
/solaris-userland-s11u3/components/openssh/sources/ |
H A D | audit-solaris.c | 130 __auditd_debug("tid type-%d (remote,local,host)= %u,%u,%s\n", 173 audit_connection_from(const char *host, int port) argument 184 "for %s:%d:%s", host, port, strerror(errno)); 189 "for %s:%d:%s", host, port, strerror(errno)); 195 "for %s:%d:%s", host, port, strerror(errno)); 198 debug("adt audit_connection_from(%s, %d): peerfd=%d", host, port, 201 "peerfd=%d\n", getpid(), getuid(), geteuid(), host, port,
|
/solaris-userland-s11u3/components/visual-panels/core/src/java/vpanels/client/com/oracle/solaris/vp/client/common/ |
H A D | ConnectionManager.java | 346 public synchronized List<ConnectionInfo> getDepChain(String host, argument 353 if (cNode.isHealthy() && info.matches(host, user, role, zone,
|
H A D | RadLoginManager.java | 436 protected boolean handleCertFailure(String host, File truststore, argument 457 if (NetUtil.isLocalAddress(host)) { 476 promptForCertificate(host, certificate); 523 * if the chooses to re-edit the host or user fields 546 * @param host 555 protected abstract void promptForCertificate(String host, argument 568 * Prompt the user to enter host/user data, subject to the editability and 569 * preset values of the host and user {@link LoginProperty}s of the given 600 * if the chooses to re-edit the host or user fields 616 * a list of valid zones for the selected host 770 createConnector(String host) argument [all...] |