Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/sun/nio/ch/
DFileChannelImpl.java159 } while ((n == IOStatus.INTERRUPTED) && isOpen()); in read()
189 } while ((n == IOStatus.INTERRUPTED) && isOpen()); in read()
215 } while ((n == IOStatus.INTERRUPTED) && isOpen()); in write()
245 } while ((n == IOStatus.INTERRUPTED) && isOpen()); in write()
274 } while ((p == IOStatus.INTERRUPTED) && isOpen()); in position()
299 } while ((p == IOStatus.INTERRUPTED) && isOpen()); in position()
321 } while ((s == IOStatus.INTERRUPTED) && isOpen()); in size()
355 } while ((p == IOStatus.INTERRUPTED) && isOpen()); in truncate()
366 } while ((rv == IOStatus.INTERRUPTED) && isOpen()); in truncate()
377 } while ((rv == IOStatus.INTERRUPTED) && isOpen()); in truncate()
[all …]
DSocketChannelImpl.java383 if ((n == IOStatus.INTERRUPTED) && isOpen()) { in read()
453 if ((n == IOStatus.INTERRUPTED) && isOpen()) in read()
491 if ((n == IOStatus.INTERRUPTED) && isOpen()) in write()
528 if ((n == IOStatus.INTERRUPTED) && isOpen()) in write()
560 if ((n == IOStatus.INTERRUPTED) && isOpen()) in sendOutOfBandData()
672 if ( (n == IOStatus.INTERRUPTED) in connect()
744 if ( (n == IOStatus.INTERRUPTED) in finishConnect()
758 if ( (n == IOStatus.INTERRUPTED) in finishConnect()
DIOStatus.java37 static final int INTERRUPTED = -3; // System call interrupted field in IOStatus
DFileDispatcher.java35 public static final int INTERRUPTED = 2; // Request interrupted field in FileDispatcher
DSourceChannelImpl.java173 } while ((n == IOStatus.INTERRUPTED) && isOpen()); in read()
204 } while ((n == IOStatus.INTERRUPTED) && isOpen()); in read()
DSinkChannelImpl.java169 } while ((n == IOStatus.INTERRUPTED) && isOpen()); in write()
192 } while ((n == IOStatus.INTERRUPTED) && isOpen()); in write()
DDatagramChannelImpl.java359 } while ((n == IOStatus.INTERRUPTED) && isOpen()); in receive()
367 } while ((n == IOStatus.INTERRUPTED) && isOpen()); in receive()
480 } while ((n == IOStatus.INTERRUPTED) && isOpen()); in send()
567 } while ((n == IOStatus.INTERRUPTED) && isOpen()); in read()
596 } while ((n == IOStatus.INTERRUPTED) && isOpen()); in read()
623 } while ((n == IOStatus.INTERRUPTED) && isOpen()); in write()
652 } while ((n == IOStatus.INTERRUPTED) && isOpen()); in write()
DServerSocketChannelImpl.java242 if ((n == IOStatus.INTERRUPTED) && isOpen()) in accept()
/libcore/luni/src/main/java/java/util/concurrent/
DFutureTask.java71 private static final int INTERRUPTED = 6; field in FutureTask
148 U.putOrderedInt(this, STATE, INTERRUPTED); in cancel()
/libcore/luni/src/main/java/java/util/concurrent/locks/
DStampedLock.java268 private static final long INTERRUPTED = 1L; field in StampedLock
361 if ((next = acquireWrite(true, deadline)) != INTERRUPTED) in tryWriteLock()
380 (next = acquireWrite(true, 0L)) != INTERRUPTED) in writeLockInterruptibly()
448 if ((next = acquireRead(true, deadline)) != INTERRUPTED) in tryReadLock()
467 (next = acquireRead(true, 0L)) != INTERRUPTED) in readLockInterruptibly()
1368 return (interrupted || Thread.interrupted()) ? INTERRUPTED : 0L; in cancelWaiter()