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

/openjdk7/jdk/src/share/sample/jmx/jmx-scandir/test/com/sun/jmx/examples/scandir/
H A DScanManagerTest.java300 public static void assertContained(EnumSet<ScanState> allowed, argument
302 final String msg = String.valueOf(state) + " is not one of " + allowed;
303 assertTrue(msg,allowed.contains(state));
/openjdk7/jdk/src/share/classes/sun/nio/fs/
H A DAbstractBasicFileAttributeView.java96 private AttributesBuilder(Set<String> allowed, String[] requested) { argument
101 if (!allowed.contains(name))
111 static AttributesBuilder create(Set<String> allowed, String[] requested) { argument
112 return new AttributesBuilder(allowed, requested);
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DCipherSuite.java64 * . if the member variable allowed is false, the given algorithm is either
90 // contains only supported CipherSuites (i.e. allowed == true)
118 final boolean allowed; field in class:CipherSuite
131 boolean allowed, int obsoleted, int supported, PRF prfAlg) {
155 allowed &= keyExchange.allowed;
156 allowed &= cipher.allowed;
157 this.allowed = allowed;
129 CipherSuite(String name, int id, int priority, KeyExchange keyExchange, BulkCipher cipher, boolean allowed, int obsoleted, int supported, PRF prfAlg) argument
265 add(String name, int id, int priority, KeyExchange keyExchange, BulkCipher cipher, boolean allowed, int obsoleted, int supported, PRF prf) argument
290 add(String name, int id, int priority, KeyExchange keyExchange, BulkCipher cipher, boolean allowed, int obsoleted) argument
308 add(String name, int id, int priority, KeyExchange keyExchange, BulkCipher cipher, boolean allowed) argument
356 final boolean allowed; field in class:CipherSuite.KeyExchange
359 KeyExchange(String name, boolean allowed) argument
408 final boolean allowed; field in class:CipherSuite.BulkCipher
426 BulkCipher(String transformation, int keySize, int expandedKeySize, int ivSize, boolean allowed) argument
442 BulkCipher(String transformation, int keySize, int ivSize, boolean allowed) argument
[all...]
/openjdk7/jdk/src/share/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/
H A DScanManager.java542 * Checks that the current state is allowed for the given operation,
552 * Checks that the current state is one of the allowed states,
557 private ScanState switchState(ScanState desired,EnumSet<ScanState> allowed) { argument
563 if (!allowed.contains(state))
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpngset.c1243 png_set_benign_errors(png_structp png_ptr, int allowed) argument
1247 if (allowed)

Completed in 47 milliseconds