Home
last modified time | relevance | path

Searched refs:CLOSED (Results 1 – 4 of 4) sorted by relevance

/libcore/ojluni/src/main/java/java/util/concurrent/
DSubmissionPublisher.java1073 static final int CLOSED = 0x01; // if set, other bits ignored field in SubmissionPublisher.BufferedSubscription
1121 return (ctl & CLOSED) != 0; in isClosed()
1130 return ((c & CLOSED) != 0) ? -1 : (n < 0) ? 0 : n; in estimateLag()
1211 ((c = getAndBitwiseOrCtl(RUN | ACTIVE)) & (RUN | CLOSED)) == 0) in startOnOffer()
1213 else if ((c & CLOSED) != 0) in startOnOffer()
1228 getAndBitwiseOrCtl(ERROR | CLOSED); in tryStart()
1241 (getAndBitwiseOrCtl(bits) & (RUN | CLOSED)) == 0) in startOnSignal()
1257 if (((c = getAndBitwiseOrCtl(ERROR | RUN | ACTIVE)) & CLOSED) == 0) { in onError()
1396 if ((getAndBitwiseOrCtl(CLOSED) & CLOSED) == 0) in closeOnComplete()
1412 if ((getAndBitwiseOrCtl(ERROR | CLOSED) & CLOSED) == 0) { in closeOnError()
[all …]
/libcore/ojluni/src/main/java/javax/net/ssl/
DSSLEngineResult.java98 CLOSED; enumConstant
/libcore/ojluni/src/main/java/java/lang/
DStackStreamFactory.java106 CLOSED; // the stream is closed when the stack walking is done enumConstant
224 case CLOSED: in checkState()
/libcore/api/
Dcurrent.txt19566 enum_constant public static final javax.net.ssl.SSLEngineResult.Status CLOSED;