Home
last modified time | relevance | path

Searched refs:INTERRUPTED (Results 1 – 13 of 13) sorted by relevance

/libcore/ojluni/src/main/java/sun/nio/ch/
DSimpleAsynchronousFileChannelImpl.java114 } while ((n == IOStatus.INTERRUPTED) && isOpen()); in size()
137 } while ((n == IOStatus.INTERRUPTED) && isOpen()); in truncate()
143 } while ((n == IOStatus.INTERRUPTED) && isOpen()); in truncate()
163 } while ((n == IOStatus.INTERRUPTED) && isOpen()); in force()
207 } while ((n == FileDispatcher.INTERRUPTED) && isOpen()); in implLock()
263 } while ((n == FileDispatcher.INTERRUPTED) && isOpen()); in tryLock()
270 if (n == FileDispatcher.INTERRUPTED) in tryLock()
321 } while ((n == IOStatus.INTERRUPTED) && isOpen()); in implRead()
375 } while ((n == IOStatus.INTERRUPTED) && isOpen()); in implWrite()
DFileChannelImpl.java195 } while ((n == IOStatus.INTERRUPTED) && isOpen()); in read()
223 } while ((n == IOStatus.INTERRUPTED) && isOpen()); in read()
247 } while ((n == IOStatus.INTERRUPTED) && isOpen()); in write()
275 } while ((n == IOStatus.INTERRUPTED) && isOpen()); in write()
308 } while ((p == IOStatus.INTERRUPTED) && isOpen()); in position()
336 } while ((p == IOStatus.INTERRUPTED) && isOpen()); in position()
358 } while ((s == IOStatus.INTERRUPTED) && isOpen()); in size()
389 } while ((size == IOStatus.INTERRUPTED) && isOpen()); in truncate()
396 } while ((p == IOStatus.INTERRUPTED) && isOpen()); in truncate()
405 } while ((rv == IOStatus.INTERRUPTED) && isOpen()); in truncate()
[all …]
DIOStatus.java38 @Native public static final int INTERRUPTED = -3; // System call interrupted field in IOStatus
89 return (n == IOStatus.UNAVAILABLE) || (n == IOStatus.INTERRUPTED); in okayToRetry()
DSocketChannelImpl.java422 if ((n == IOStatus.INTERRUPTED) && isOpen()) { in read()
482 if ((n == IOStatus.INTERRUPTED) && isOpen()) in read()
513 if ((n == IOStatus.INTERRUPTED) && isOpen()) in write()
546 if ((n == IOStatus.INTERRUPTED) && isOpen()) in write()
576 if ((n == IOStatus.INTERRUPTED) && isOpen()) in sendOutOfBandData()
692 if ( (n == IOStatus.INTERRUPTED) in connect()
764 if ( (n == IOStatus.INTERRUPTED) in finishConnect()
778 if ( (n == IOStatus.INTERRUPTED) in finishConnect()
DSinkChannelImpl.java168 } while ((n == IOStatus.INTERRUPTED) && isOpen()); in write()
191 } while ((n == IOStatus.INTERRUPTED) && isOpen()); in write()
DSourceChannelImpl.java173 } while ((n == IOStatus.INTERRUPTED) && isOpen()); in read()
204 } while ((n == IOStatus.INTERRUPTED) && isOpen()); in read()
DFileDispatcher.java37 public static final int INTERRUPTED = 2; // Request interrupted field in FileDispatcher
DDatagramChannelImpl.java384 } while ((n == IOStatus.INTERRUPTED) && isOpen()); in receive()
392 } while ((n == IOStatus.INTERRUPTED) && isOpen()); in receive()
507 } while ((n == IOStatus.INTERRUPTED) && isOpen()); in send()
594 } while ((n == IOStatus.INTERRUPTED) && isOpen()); in read()
623 } while ((n == IOStatus.INTERRUPTED) && isOpen()); in read()
650 } while ((n == IOStatus.INTERRUPTED) && isOpen()); in write()
679 } while ((n == IOStatus.INTERRUPTED) && isOpen()); in write()
DServerSocketChannelImpl.java251 if ((n == IOStatus.INTERRUPTED) && isOpen()) in accept()
/libcore/ojluni/src/main/java/java/util/concurrent/
DFutureTask.java99 private static final int INTERRUPTED = 6; field in FutureTask
175 STATE.setRelease(this, INTERRUPTED); in cancel()
506 case INTERRUPTED: in toString()
DSubmissionPublisher.java1081 static final long INTERRUPTED = -1L; // timeout vs interrupt sentinel field in SubmissionPublisher.BufferedSubscription
1464 timeout = INTERRUPTED; in awaitSpace()
1466 if (timeout == INTERRUPTED) in awaitSpace()
1482 timeout = INTERRUPTED; in block()
/libcore/ojluni/src/main/java/java/util/concurrent/locks/
DStampedLock.java342 private static final long INTERRUPTED = 1L; field in StampedLock
516 if (nextState != INTERRUPTED) in tryWriteLock()
536 (nextState = acquireWrite(true, false, 0L)) != INTERRUPTED)) in writeLockInterruptibly()
590 if (nextState != INTERRUPTED) in tryReadLock()
610 (nextState = acquireRead(true, false, 0L)) != INTERRUPTED)) in readLockInterruptibly()
1464 return (interrupted || Thread.interrupted()) ? INTERRUPTED : 0L; in cancelAcquire()
1483 return (interrupted || Thread.interrupted()) ? INTERRUPTED : 0L; in cancelCowaiter()
/libcore/ojluni/annotations/hiddenapi/java/util/concurrent/
DFutureTask.java120 private static final int INTERRUPTED = 6; // 0x6 field in FutureTask