Searched defs:valid (Results 1 - 8 of 8) sorted by relevance

/libcore/ojluni/src/main/java/java/nio/channels/spi/
H A DAbstractSelectionKey.java50 private volatile boolean valid = true; field in class:AbstractSelectionKey
53 return valid;
57 valid = false;
71 if (valid) {
72 valid = false;
/libcore/include/
H A DScopedIcuLocale.h45 bool valid() const { function in class:ScopedIcuLocale
H A DScopedJavaUnicodeString.h44 bool valid() const { function in class:ScopedJavaUnicodeString
/libcore/ojluni/src/main/java/java/io/
H A DFileDescriptor.java92 * Tests if this file descriptor object is valid.
95 * valid, open file, socket, or other active I/O connection;
98 public boolean valid() { method in class:FileDescriptor
/libcore/ojluni/src/main/java/sun/nio/ch/
H A DFileLockImpl.java34 private volatile boolean valid = true; field in class:FileLockImpl
42 return valid;
47 valid = false;
54 if (valid) {
58 valid = false;
/libcore/ojluni/src/main/java/sun/security/x509/
H A DCertificateValidity.java36 * This class defines the interval for which the certificate is valid.
60 // Returns the first time the certificate is valid.
65 // Returns the last time the certificate is valid.
111 * is not valid.
113 * not valid.
242 * yet valid.
244 public void valid() method in class:CertificateValidity
247 valid(now);
258 * yet valid with respect to the <code>Date</code> supplied.
261 public void valid(Dat method in class:CertificateValidity
[all...]
H A DPrivateKeyUsageExtension.java190 * yet valid.
192 public void valid() method in class:PrivateKeyUsageExtension
195 valid(now);
204 * yet valid with respect to the <code>Date</code> supplied.
207 public void valid(Date now) method in class:PrivateKeyUsageExtension
/libcore/ojluni/src/main/java/java/util/
H A DCalendar.java780 * True if then the value of <code>time</code> is valid.
1584 * have valid values that have been set by internal time calculation
2240 * <p>If {@code weekOfYear} is out of the valid week-of-year range
2553 private static final void appendValue(StringBuilder sb, String item, boolean valid, long value) { argument
2555 if (valid) {

Completed in 310 milliseconds