Searched defs:keys (Results 51 - 75 of 116) sorted by relevance

12345

/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/keys/storage/
H A DStorageResolver.java21 package com.sun.org.apache.xml.internal.security.keys.storage;
29 import com.sun.org.apache.xml.internal.security.keys.storage.implementations.KeyStoreResolver;
30 import com.sun.org.apache.xml.internal.security.keys.storage.implementations.SingleCertificateResolver;
195 "Can't remove keys from KeyStore");
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/keys/storage/implementations/
H A DCertsInFilesystemDirectoryResolver.java21 package com.sun.org.apache.xml.internal.security.keys.storage.implementations;
36 import com.sun.org.apache.xml.internal.security.keys.storage.StorageResolverException;
37 import com.sun.org.apache.xml.internal.security.keys.storage.StorageResolverSpi;
42 * which reside as files in a single directory available to the {@link com.sun.org.apache.xml.internal.security.keys.storage.StorageResolver}.
193 "Can't remove keys from KeyStore");
212 com.sun.org.apache.xml.internal.security.keys.content.x509.XMLX509SKI
H A DKeyStoreResolver.java21 package com.sun.org.apache.xml.internal.security.keys.storage.implementations;
29 import com.sun.org.apache.xml.internal.security.keys.storage.StorageResolverException;
30 import com.sun.org.apache.xml.internal.security.keys.storage.StorageResolverSpi;
35 * {@link com.sun.org.apache.xml.internal.security.keys.storage.StorageResolver}.
117 "Can't remove keys from KeyStore");
141 com.sun.org.apache.xml.internal.security.keys.content.x509.XMLX509SKI
/openjdk7/jdk/src/share/classes/com/sun/script/util/
H A DBindingsEntrySet.java38 private String[] keys; field in class:BindingsEntrySet
42 keys = base.getNames();
46 return keys.length;
79 return (current < keys.length);
84 return new BindingsEntry(keys[current++]);
93 base.remove(keys[current - 1]);
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DDESedeCrypt.java61 void init(boolean decrypting, String algorithm, byte[] keys) argument
68 if (keys.length != DES_BLOCK_SIZE * 3) {
76 System.arraycopy(keys, 0, keybuf, 0, DES_BLOCK_SIZE);
81 if (keyEquals(keybuf, 0, keys, DES_BLOCK_SIZE*2, DES_BLOCK_SIZE)) {
85 System.arraycopy(keys, DES_BLOCK_SIZE*2, keybuf, 0,
93 System.arraycopy(keys, DES_BLOCK_SIZE, keybuf, 0, DES_BLOCK_SIZE);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/dtdparser/
H A DSimpleHashtable.java46 * <LI> The keys () enumerator allocates no memory, with live
50 * load factor, no JDK 1.2 collection support, only keys can be
111 * Returns the number of keys in this hashtable.
113 * @return the number of keys in this hashtable.
120 * Returns an enumeration of the keys in this hashtable.
122 * @return an enumeration of the keys in this hashtable.
125 public Enumeration keys() { method in class:SimpleHashtable
133 * are more keys to be enumerated.
194 * number of keys in the hashtable exceeds this hashtable's capacity
/openjdk7/jdk/src/solaris/native/sun/awt/
H A DMouseInfo.c56 uint32_t keys; local
76 &xr, &yr, &xw, &yw, &keys);
103 uint32_t keys = 0; local
131 &rootWindow, &siblingWindow, &xr, &yr, &xw, &yw, &keys);
/openjdk7/jdk/src/windows/native/sun/windows/
H A DHashtable.h41 BOOL keys; member in class:HashtableEnumerator
47 HashtableEnumerator(HashtableEntry* table[], int size, BOOL keys);
53 * Hashtable class. Maps keys to values. Any object can be used as
125 * Returns an enumeration of the hashtable's keys.
127 INLINE HashtableEnumerator* keys() { function in class:Hashtable
H A DHashtable.cpp201 BOOL keys)
204 this->keys = keys;
228 return keys ? e->key : e->value;
200 HashtableEnumerator(HashtableEntry* table[], int size, BOOL keys) argument
/openjdk7/jdk/test/javax/swing/JColorChooser/
H A DTest6524757.java126 private static Object[] convert(Locale locale, String[] keys) { argument
127 int count = keys.length;
130 array[i] = convert(locale, keys[i]);
/openjdk7/jdk/src/share/classes/sun/misc/
H A DCache.java45 * The Cache class. Maps keys to values. Any object can be used as
58 * the numbers as keys:
162 * Returns an enumeration of the Cache's keys.
166 public synchronized Enumeration keys() { method in class:Cache
173 * @see Cache#keys
309 boolean keys; field in class:CacheEnumerator
314 CacheEnumerator (CacheEntry table[], boolean keys) { argument
316 this.keys = keys;
340 return keys
[all...]
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DSelectorImpl.java44 // The set of keys with data ready for an operation
47 // The set of keys registered with this Selector
48 protected HashSet<SelectionKey> keys; field in class:SelectorImpl
56 keys = new HashSet<SelectionKey>();
59 publicKeys = keys;
62 publicKeys = Collections.unmodifiableSet(keys);
67 public Set<SelectionKey> keys() { method in class:SelectorImpl
142 // Precondition: Synchronized on this, keys, and selectedKeys
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/runtime/
H A DHashtable.java94 * Returns the number of keys in this hashtable.
101 * Tests if this hashtable maps no keys to values.
108 * Returns an enumeration of the keys in this hashtable.
110 public Enumeration keys() { method in class:Hashtable
181 * number of keys in the hashtable exceeds this hashtable's capacity
273 * Clears this hashtable so that it contains no keys.
290 Enumeration k = keys();
309 boolean keys; field in class:Hashtable.HashtableEnumerator
314 HashtableEnumerator(HashtableEntry table[], boolean keys) { argument
316 this.keys
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DAugmentationsImpl.java86 * Returns an enumeration of the keys in the Augmentations structure
89 public Enumeration keys (){ method in class:AugmentationsImpl
90 return fAugmentationsContainer.keys();
108 abstract public Enumeration keys(); method in class:AugmentationsImpl.AugmentationsItemsContainer
119 public Enumeration keys() { method in class:AugmentationsImpl.SmallContainer
257 public Enumeration keys() { method in class:AugmentationsImpl.LargeContainer
258 return fAugmentations.keys();
276 Enumeration keys = fAugmentations.keys();
278 while (keys
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/util/
H A DIdentityHashtable.java118 * Returns the number of keys in this hashtable.
120 * @return the number of keys in this hashtable.
128 * Tests if this hashtable maps no keys to values.
130 * @return <code>true</code> if this hashtable maps no keys to values;
139 * Returns an enumeration of the keys in this hashtable.
141 * @return an enumeration of the keys in this hashtable.
146 public Enumeration keys() { method in class:IdentityHashtable
157 * @see java.util.Hashtable#keys()
239 * number of keys in the hashtable exceeds this hashtable's capacity
348 * Clears this hashtable so that it contains no keys
[all...]
/openjdk7/corba/src/share/classes/sun/rmi/rmic/iiop/
H A DStaticStringsHash.java53 * The <code>keys</code> array will contain the full set of unique keys.
56 * each key in the <code>keys</code>, where <code>buckets[x][y]</code>
65 /** Unique hash keys */
66 public int[] keys = null; field in class:StaticStringsHash
170 // Reset keys if needed...
190 keys = new int[bucketCount];
191 System.arraycopy(tempKeys,0,keys,0,bucketCount);
193 // Sort keys and bucketSizes arrays...
199 if (keys[
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DRowSorter.java160 * Sets the current sort keys.
162 * @param keys the new <code>SortKeys</code>; <code>null</code>
166 public abstract void setSortKeys(List<? extends SortKey> keys); argument
169 * Returns the current sort keys. This must return a {@code
171 * you need to change the sort keys, make a copy of the returned
/openjdk7/jdk/src/share/classes/java/nio/channels/spi/
H A DAbstractSelectableChannel.java37 * blocking mode of this channel as well as its current set of selection keys.
58 // They are saved because if this channel is closed the keys must be
61 private SelectionKey[] keys = null; field in class:AbstractSelectableChannel
95 if ((keys != null) && (keyCount < keys.length)) {
97 for (i = 0; i < keys.length; i++)
98 if (keys[i] == null)
100 } else if (keys == null) {
101 keys = new SelectionKey[3];
104 int n = keys
[all...]
/openjdk7/jdk/src/share/classes/com/sun/management/
H A DGcInfo.java253 public Object[] getAll(String[] keys) { argument
254 return cdata.getAll(keys);
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/keys/keyresolver/
H A DKeyResolverSpi.java21 package com.sun.org.apache.xml.internal.security.keys.keyresolver;
29 import com.sun.org.apache.xml.internal.security.keys.storage.StorageResolver;
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/keys/keyresolver/implementations/
H A DRetrievalMethodResolver.java21 package com.sun.org.apache.xml.internal.security.keys.keyresolver.implementations;
42 import com.sun.org.apache.xml.internal.security.keys.content.RetrievalMethod;
43 import com.sun.org.apache.xml.internal.security.keys.content.x509.XMLX509Certificate;
44 import com.sun.org.apache.xml.internal.security.keys.keyresolver.KeyResolver;
45 import com.sun.org.apache.xml.internal.security.keys.keyresolver.KeyResolverException;
46 import com.sun.org.apache.xml.internal.security.keys.keyresolver.KeyResolverSpi;
47 import com.sun.org.apache.xml.internal.security.keys.storage.StorageResolver;
60 * The RetrievalMethodResolver can retrieve public keys and certificates from
/openjdk7/jdk/make/tools/src/build/tools/hasher/
H A DHasher.java54 List keys = new ArrayList(); // Key strings field in class:Hasher
116 // Read keys and values
124 if (keys.contains(w))
126 keys.add(w);
153 int nw = keys.size();
156 String w = (String)keys.get(i);
214 // Test that all input keys can be found in the table
219 for (int i = 0, n = keys.size(); i < n; i++) {
220 String w = (String)keys.get(i);
280 + keys
[all...]
/openjdk7/jdk/make/tools/src/build/tools/spp/
H A DSpp.java39 * Meaningful only at beginning of line, works with any number of keys:
68 Set<String> keys = new HashSet<String>();
76 keys.add(arg.substring(2));
88 keys, vars, be,
111 Set<String> keys, Map<String, String> vars) {
118 boolean test = keys.contains(vardef.group(GN_KEY));
137 Set<String> keys, Map<String, String> vars,
154 boolean test = keys.contains(k);
158 if (!spp(in, buf, k, keys, vars, be, skip || !test)) {
159 spp(in, buf, k, keys, var
110 append(StringBuffer buf, String ln, Set<String> keys, Map<String, String> vars) argument
136 spp(Scanner in, StringBuffer buf, String key, Set<String> keys, Map<String, String> vars, boolean be, boolean skip) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/security/ssl/krb5/
H A DKerberosClientKeyExchangeImpl.java368 * findKey(etype, version, keys). Always returns true if either input
384 KerberosKey[] keys) throws KrbException {
387 for (int i = 0; i < keys.length; i++) {
388 ktype = keys[i].getKeyType();
391 if (versionMatches(version, keys[i].getVersionNumber())) {
392 return keys[i];
397 // %%% kludge to allow DES keys to be used for diff etypes
400 for (int i = 0; i < keys.length; i++) {
401 ktype = keys[i].getKeyType();
405 if (versionMatches(version, keys[
383 findKey(int etype, Integer version, KerberosKey[] keys) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/security/validator/
H A DPKIXValidator.java102 List<PublicKey> keys;
104 keys = trustedSubjects.get(dn);
106 keys = new ArrayList<PublicKey>();
107 trustedSubjects.put(dn, keys);
109 keys.add(cert.getPublicKey());
141 List<PublicKey> keys;
143 keys = trustedSubjects.get(dn);
145 keys = new ArrayList<PublicKey>();
146 trustedSubjects.put(dn, keys);
148 keys
295 isSignatureValid(List<PublicKey> keys, X509Certificate sub) argument
[all...]

Completed in 287 milliseconds

12345