Searched defs:entry (Results 1 - 5 of 5) sorted by relevance

/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/misc/event/
H A DEventListeners.java61 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/visual-panels/firewall/src/java/vpanels/app/firewall/com/oracle/solaris/vp/panels/firewall/client/swing/
H A DOpenPortsTablePanel.java229 "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 DPolicyTablePanel.java68 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/net-snmp/sun/agent/modules/healthMonitor/
H A Ddsr.c234 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/components/openssl/common/engines/pkcs11/
H A De_pk11_pub.c221 * 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...]

Completed in 55 milliseconds