/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/misc/event/ |
H A D | EventListeners.java | 61 private Entry<L> entry = first; field in class:EventListeners.EntryIterator 71 return entry.next != null; 79 entry = entry.next; 80 return entry.data; 88 if (EventListeners.this.remove(entry.data)) { 133 for (Entry<L> entry = first; ; entry = entry.next) { 134 if (entry [all...] |
/solaris-userland-s11u3/components/net-snmp/sun/agent/modules/healthMonitor/ |
H A D | dsr.c | 234 nms_t *entry; local 236 entry = (nms_t *)malloc(sizeof (nms_t)); 237 if (entry != (nms_t *)NULL) { 244 entry->real = (char *)malloc(len); 245 if (entry->real) { 246 (void) strcpy(entry->real, nlnm); 249 entry->dsk = (char *)malloc(len); 250 if (entry->dsk) { 251 (void) strcpy(entry->dsk, shortnm); 252 entry 319 nms_t *entry; local 484 disk_list_t *entry; local [all...] |
/solaris-userland-s11u3/tools/ |
H A D | build-watch.d | 32 syscall::open:entry, syscall::open64:entry 37 syscall::openat:entry
|
H A D | userland-unpack | 73 for entry in os.listdir(dir): 76 path = "%s/%s" % (dir, entry) 140 for entry in os.listdir(tempdir): 141 path= "%s/%s" % (tempdir, entry) 142 os.renames(path, entry)
|
/solaris-userland-s11u3/components/ruby/puppet/files/solaris/lib/puppet/provider/ipmp_interface/ |
H A D | solaris.rb | 64 for entry in current - value 65 remove_list << "-i" << entry 69 for entry in value - current 70 add_list << "-i" << entry
|
/solaris-userland-s11u3/components/visual-panels/time/src/java/vpanels/app/time/com/oracle/solaris/vp/panels/time/client/swing/ |
H A D | ServersPropertySynchronizer.java | 104 ServerInfo entry = value[row]; 105 String server = entry.getServer(); 106 Boolean enabled = entry.isEnabled();
|
/solaris-userland-s11u3/components/visual-panels/usermgr/src/java/vpanels/app/usermgr/com/oracle/solaris/vp/panels/usermgr/client/swing/ |
H A D | AuthAttrMgmt.java | 45 * principal running User Manager. The authorization rights entry for the 149 * user. Each entry object represents an authorization right or an 150 * authorization header (if its name ends in a period). Each entry is 156 * table, a dummy header entry is created. Header entries are used 166 AuthAttrModelEntry entry; 184 // Create a vector of auth model entry objects, one for each auth 189 // next entry is not a header entry, create a dummy header entry for 200 // Create a new auth model entry objec [all...] |
/solaris-userland-s11u3/components/visual-panels/firewall/src/java/vpanels/app/firewall/com/oracle/solaris/vp/panels/firewall/client/swing/ |
H A D | OpenPortsTablePanel.java | 229 "port.entry.invalid", in)); 305 Finder.getString("dialog.add.entry.label"); 307 Finder.getString("dialog.edit.entry.label"); 399 // Add new entry to table 401 String entry = e.getEntry(); 402 if (entry == null || entry.isEmpty()) 411 model.setValueAt(entry, index); 423 // Don't allow to edit malformed entry. 424 // User should delete and add new entry instea 455 validateEntry(String entry) argument [all...] |
H A D | PolicyTablePanel.java | 68 Finder.getString("dialog.add.entry.label"); 70 Finder.getString("dialog.edit.entry.label"); 281 "host.entry.invalid", in)); 287 "network.entry.invalid", in)); 360 // If this is a host entry, try to get a hostname 467 // Add new entry to table 469 List<String> entry = e.getEntry(); 470 if (entry.size() == 0) 477 for (int i = 0; i < entry.size(); i++) { 483 table.setValueAt(entry 576 validateEntry(String entry) argument [all...] |
/solaris-userland-s11u3/components/ruby/puppet/files/solaris/lib/puppet/provider/link_aggregation/ |
H A D | solaris.rb | 82 for entry in current - value 83 remove_list << "-l" << entry 87 for entry in value - current 88 add_list << "-l" << entry
|
/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/swing/tree/ |
H A D | TreeTable.java | 105 ? extends TreeTableModelAdapter, ? extends Integer> entry) { 111 int index = entry.getIdentifier(); 112 ModelRowData row = entry.getModel().getRow(index); 123 ? extends TreeTableModelAdapter, ? extends Integer> entry) { 125 TreeTableModelAdapter adapter = entry.getModel(); 126 int index = entry.getIdentifier(); 206 ? extends Integer> entry) { 212 if (!filter.include(entry)) {
|
/solaris-userland-s11u3/components/openssl/common/engines/pkcs11/ |
H A D | e_pk11_pub.c | 221 * Find active list entry according to object handle and return pointer to the 222 * entry otherwise return NULL. 229 PK11_active *entry; local 231 for (entry = active_list[type]; entry != NULL; entry = entry->next) 232 if (entry->h == h) 233 return (entry); 239 * Search for an entry i 249 PK11_active *entry = NULL; local 294 pk11_active_remove(PK11_active *entry, PK11_OPTYPE type) argument 324 PK11_active *entry; local 357 PK11_active *entry = NULL; local [all...] |
/solaris-userland-s11u3/components/ruby/puppet/files/solaris/lib/puppet/provider/dns/ |
H A D | solaris.rb | 63 for entry in should 64 values += "\"#{entry}\" "
|
/solaris-userland-s11u3/components/ruby/puppet/files/solaris/lib/puppet/provider/ldap/ |
H A D | solaris.rb | 89 for entry in should 90 values += "\"#{entry}\" "
|
/solaris-userland-s11u3/components/visual-panels/core/src/java/vpanels/client/com/oracle/solaris/vp/client/common/ |
H A D | ConnectionManager.java | 474 for (Map.Entry<Object, DependencyTreeNode> entry : nodeMap.entrySet()) { 475 Object key = entry.getKey(); 477 return entry.getValue();
|
H A D | RadLoginManager.java | 481 KeyStore.Entry entry = 483 keyStore.setEntry(alias, entry, null);
|
/solaris-userland-s11u3/components/ruby/puppet/files/solaris/lib/puppet/provider/nis/ |
H A D | solaris.rb | 111 for entry in should 112 values += "\"#{entry}\" "
|
/solaris-userland-s11u3/components/openstack/nova/files/solariszones/ |
H A D | sysconfig.py | 126 for entry in nameservers: 127 etree.SubElement(proplist, "value_node", value=entry)
|
H A D | driver.py | 577 # New HBA port entry 834 for entry in bdms: 835 if entry['connection_info'] is None: 838 if entry['device_name'] == rootmp: 839 root_ci = jsonutils.loads(entry['connection_info']) 843 ci = jsonutils.loads(entry['connection_info']) 844 self.detach_volume(ci, instance, entry['device_name']) 967 for entry in bdms: 968 if (entry['connection_info'] is None or 969 rootmp == entry['device_nam [all...] |
/solaris-userland-s11u3/components/texinfo/ |
H A D | texi2html.pl | 1016 $entry = $what; 1017 $entry =~ tr/A-Z/a-z/ unless $entry =~ /^[A-Z\s]+$/; 1018 $gloss2href{$entry} = "$docu_doc#$id"; 1019 print "# found glossary for '$entry' id $id\n" 1287 $entry = $what; 1288 $entry =~ tr/A-Z/a-z/ unless $entry =~ /^[A-Z\s]+$/; 1289 $href = $gloss2href{$entry}; 1733 local($entry, [all...] |
/solaris-userland-s11u3/components/visual-panels/core/src/java/vpanels/client/com/oracle/solaris/vp/client/swing/ |
H A D | LoginPane.java | 538 for (Map.Entry<LoginProperty, JTextComponent> entry : 541 JTextComponent field = entry.getValue(); 547 (LoginProperty<char[]>)entry.getKey(); 553 (LoginProperty<String>)entry.getKey();
|
/solaris-userland-s11u3/components/openstack/horizon/files/branding/css/ |
H A D | solaris1.css | 10986 .search-bar .search-entry { 10989 .search-bar .search-entry .search-input { 11046 .search-bar .search-entry {
|