| /solaris-userland-s11u3/components/visual-panels/core/src/java/vpanels/panel/com/oracle/solaris/vp/panel/common/ |
| 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...] |
| 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 | LoginInfo.java | 34 * Gets the host for this login. 66 boolean matches(String host, String user, String role, String zone, argument
|
| /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/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/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 | 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...] |
| H A D | LoginPane.java | 305 Finder.getString("login.label.host"); 398 final LoginProperty<String> host = request.getHost(); 415 setHostInUI(host, false); 449 final LoginProperty<String> host = request.getHost(); 477 setHostInUI(host, false); 492 boolean editable = host.isEditable() || user.isEditable() || 569 final LoginProperty<String> host = request.getHost(); 588 if (host.getValue() != null) { 589 setHostInUI(host, false); 617 final LoginProperty<String> host [all...] |
| 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 | AppInstance.java | 438 LoginProperty<String> host = 461 request = new LoginRequest(host, user, role, zonePrompt, zone, 472 // Open new instance (window) if changing host/zone
|
| /solaris-userland-s11u3/components/python/amqp/ |
| H A D | Makefile | 46 COMPONENT_TEST_ARGS= funtests/run_all.py --host=localhost
|
| /solaris-userland-s11u3/components/ruby/puppet/files/solaris/lib/puppet/type/ |
| H A D | nsswitch.rb | 39 newproperty(:host) do 40 desc "The host database lookup override"
|
| /solaris-userland-s11u3/components/visual-panels/core/src/java/vpanels/client/com/oracle/solaris/vp/client/common/ |
| 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...] |
| H A D | LoginHistoryManager.java | 41 // Used to format logins as host:user:role 248 String host = null; 256 host = nullIfEmpty(fields[0]); 265 if (host != null && user != null) { 267 host, user, role, zone, zoneUser, zoneRole, null);
|
| H A D | ConnectionManager.java | 346 public synchronized List<ConnectionInfo> getDepChain(String host, argument 353 if (cNode.isHealthy() && info.matches(host, user, role, zone,
|
| /solaris-userland-s11u3/components/visual-panels/core/src/java/vpanels/panel/com/oracle/solaris/vp/panel/swing/control/ |
| H A D | PanelFrameControl.java | 513 // If not logged in with default host/user/role... 532 LoginProperty<String> host = 547 return new LoginRequest(host, user, role, zonePrompt, zone, zoneUser, 554 LoginProperty<String> host = 571 return new LoginRequest(host, user, role, zonePrompt, zone, zoneUser, 578 LoginProperty<String> host = 593 host.setEditableOnError(true); 601 return new LoginRequest(host, user, role, zonePrompt, zone, zoneUser, 608 LoginProperty<String> host = 623 return new LoginRequest(host, use [all...] |
| /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/panel/com/oracle/solaris/vp/panel/common/action/ |
| H A D | DefaultStructuredAction.java | 141 LoginProperty<String> host = 153 request = new LoginRequest(host, user, role, message);
|
| /solaris-userland-s11u3/components/openstack/common/files/ |
| H A D | openstack_common.py | 74 db = MySQLdb.connect(host=engine.url.host,
|
| /solaris-userland-s11u3/components/net-snmp/sun/agent/modules/healthMonitor/ |
| H A D | healthMonitor.h | 77 void send_trap(u_char *host , u_char *mod , u_char* con, oid *asdf, int size, u_char *stat , u_char *desc , u_char* dvalue, int dtype);
|
| /solaris-userland-s11u3/components/openstack/cinder/files/solaris/ |
| H A D | zfs.py | 63 def connect_tls(host, port=12302, locale=None, ca_certs=None): 67 host string, target host 87 sock.connect((host, port)) 254 """Callback for volume attached to instance or host.""" 291 """Piped execute on a remote host.""" 292 LOG.debug(_("Piping cmd1='%s' into cmd='%s' on host '%s'") % 305 LOG.error(_("_remote_piped_execute: failed to host '%s' with " 308 msg = (_("Remote piped execution failed to host '%s'.") % ip) 450 LOG.debug(("Transfered src stream'%s' to dst'%s' on the host' [all...] |
| /solaris-userland-s11u3/components/openstack/neutron/files/services/vpn/device_drivers/ |
| H A D | solaris_ipsec.py | 1108 def get_vpn_services_on_host(self, context, host): 1112 ikepolicy and ipsecpolicy on this host 1116 return cctxt.call(context, 'get_vpn_services_on_host', host=host) 1162 def __init__(self, vpn_service, host): 1164 self.host = host 1168 node_topic = '%s.%s' % (self.topic, self.host) 1482 context, self.host) 1494 context, self.host) [all...] |
| /solaris-userland-s11u3/components/openstack/neutron/files/evs/migrate/ |
| H A D | evs-neutron-migration.py | 188 host = [] 203 host.append(d) 233 'host_routes': host
|
| /solaris-userland-s11u3/components/openstack/neutron/files/agent/ |
| H A D | evs_l3_agent.py | 580 def __init__(self, host, conf=None): 583 super(EVSL3NATAgent, self).__init__(host=host, conf=conf) 586 self.device_drivers = self.service.load_device_drivers(host)
|
| /solaris-userland-s11u3/components/net-snmp/ |
| H A D | Makefile | 74 MIB_MODULES = host disman/event-mib ucd-snmp/diskio udp-mib tcp-mib if-mib
|