/libcore/luni/src/main/java/java/util/concurrent/ |
D | BlockingDeque.java | 288 boolean offerFirst(E e, long timeout, TimeUnit unit) in offerFirst() 310 boolean offerLast(E e, long timeout, TimeUnit unit) in offerLast() 344 E pollFirst(long timeout, TimeUnit unit) in pollFirst() 360 E pollLast(long timeout, TimeUnit unit) in pollLast() 477 boolean offer(E e, long timeout, TimeUnit unit) in offer() 528 E poll(long timeout, TimeUnit unit) in poll()
|
D | ExecutorService.java | 170 boolean awaitTermination(long timeout, TimeUnit unit) in awaitTermination() 275 long timeout, TimeUnit unit) in invokeAll() 322 long timeout, TimeUnit unit) in invokeAny()
|
D | BlockingQueue.java | 223 boolean offer(E e, long timeout, TimeUnit unit) in offer() 247 E poll(long timeout, TimeUnit unit) in poll()
|
D | Future.java | 138 V get(long timeout, TimeUnit unit) in get()
|
D | TransferQueue.java | 105 boolean tryTransfer(E e, long timeout, TimeUnit unit) in tryTransfer()
|
D | CompletionService.java | 94 Future<V> poll(long timeout, TimeUnit unit) throws InterruptedException; in poll()
|
D | AbstractExecutorService.java | 192 long timeout, TimeUnit unit) in invokeAny() 229 long timeout, TimeUnit unit) in invokeAll()
|
D | LinkedBlockingDeque.java | 374 public boolean offerFirst(E e, long timeout, TimeUnit unit) in offerFirst() 397 public boolean offerLast(E e, long timeout, TimeUnit unit) in offerLast() 480 public E pollFirst(long timeout, TimeUnit unit) in pollFirst() 498 public E pollLast(long timeout, TimeUnit unit) in pollLast() 625 public boolean offer(E e, long timeout, TimeUnit unit) in offer() 652 public E poll(long timeout, TimeUnit unit) throws InterruptedException { in poll()
|
D | CountDownLatch.java | 246 public boolean await(long timeout, TimeUnit unit) in await()
|
D | Semaphore.java | 378 public boolean tryAcquire(long timeout, TimeUnit unit) in tryAcquire() 550 public boolean tryAcquire(int permits, long timeout, TimeUnit unit) in tryAcquire()
|
D | DelayQueue.java | 143 public boolean offer(E e, long timeout, TimeUnit unit) { in offer() 219 public E poll(long timeout, TimeUnit unit) throws InterruptedException { in poll()
|
D | ExecutorCompletionService.java | 171 public Future<V> poll(long timeout, TimeUnit unit) in poll()
|
D | CyclicBarrier.java | 397 public int await(long timeout, TimeUnit unit) in await()
|
D | LinkedTransferQueue.java | 1021 public boolean offer(E e, long timeout, TimeUnit unit) { in offer() 1097 public boolean tryTransfer(E e, long timeout, TimeUnit unit) in tryTransfer() 1114 public E poll(long timeout, TimeUnit unit) throws InterruptedException { in poll()
|
D | TimeUnit.java | 288 public void timedWait(Object obj, long timeout) in timedWait() 308 public void timedJoin(Thread thread, long timeout) in timedJoin() 327 public void sleep(long timeout) throws InterruptedException { in sleep()
|
/libcore/luni/src/main/java/java/nio/channels/ |
D | Selector.java | 127 public abstract int select(long timeout) throws IOException; in select()
|
/libcore/luni/src/main/java/java/net/ |
D | PlainSocketImpl.java | 178 private void connect(InetAddress anAddr, int aPort, int timeout) throws IOException { in connect() 319 …nnect(InetAddress applicationServerAddress, int applicationServerPort, int timeout) throws IOExcep… in socksConnect() 454 protected void connect(SocketAddress remoteAddr, int timeout) throws IOException { in connect() 456 connect(inetAddr.getAddress(), inetAddr.getPort(), timeout); in connect() local
|
D | InetAddress.java | 684 public boolean isReachable(int timeout) throws IOException { in isReachable() 708 …public boolean isReachable(NetworkInterface networkInterface, final int ttl, final int timeout) th… in isReachable() 753 …private boolean isReachable(InetAddress destination, InetAddress source, int timeout) throws IOExc… in isReachable()
|
D | Socket.java | 522 public void setSoLinger(boolean on, int timeout) throws SocketException { in setSoLinger() 540 public synchronized void setSoTimeout(int timeout) throws SocketException { in setSoTimeout() 846 public void connect(SocketAddress remoteAddr, int timeout) throws IOException { in connect()
|
D | SocketImpl.java | 262 protected abstract void connect(SocketAddress remoteAddr, int timeout) throws IOException; in connect()
|
/libcore/luni/src/main/java/java/nio/ |
D | SelectorImpl.java | 156 @Override public int select(long timeout) throws IOException { in select() 168 private int selectInternal(long timeout) throws IOException { in selectInternal()
|
/libcore/luni/src/test/java/libcore/java/net/ |
D | OldAndroidDatagramTest.java | 170 int timeout = 5000; in testDatagramSocketSetSOTimeout() local
|
D | OldSocketTest.java | 914 int timeout = 0; in test_connectLjava_net_SocketAddress() field in OldSocketTest.SocketCloser 928 public SocketCloser(int timeout, Socket theSocket) { in test_connectLjava_net_SocketAddress() 1120 int timeout = 0; in test_connectLjava_net_SocketAddressI() field in OldSocketTest.SocketCloser 1133 public SocketCloser(int timeout, Socket theSocket) { in test_connectLjava_net_SocketAddressI() 1141 int timeout = 0; in test_connectLjava_net_SocketAddressI() field in OldSocketTest.SocketConnector 1156 public SocketConnector(int timeout, Socket theSocket, in test_connectLjava_net_SocketAddressI()
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/ |
D | SelectorTest.java | 660 private int selectOnce(SelectType type, int timeout) throws IOException { in selectOnce()
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/ |
D | SocketImplTest.java | 126 protected void connect(SocketAddress remoteAddr, int timeout) in connect()
|