Home
last modified time | relevance | path

Searched defs:timeout (Results 1 – 25 of 85) sorted by relevance

1234

/libcore/luni/src/main/java/java/util/concurrent/
DBlockingDeque.java295 boolean offerFirst(E e, long timeout, TimeUnit unit) in offerFirst()
317 boolean offerLast(E e, long timeout, TimeUnit unit) in offerLast()
351 E pollFirst(long timeout, TimeUnit unit) in pollFirst()
367 E pollLast(long timeout, TimeUnit unit) in pollLast()
484 boolean offer(E e, long timeout, TimeUnit unit) in offer()
535 E poll(long timeout, TimeUnit unit) in poll()
DExecutorService.java171 boolean awaitTermination(long timeout, TimeUnit unit) in awaitTermination()
280 long timeout, TimeUnit unit) in invokeAll()
329 long timeout, TimeUnit unit) in invokeAny()
DBlockingQueue.java224 boolean offer(E e, long timeout, TimeUnit unit) in offer()
248 E poll(long timeout, TimeUnit unit) in poll()
DFuture.java139 V get(long timeout, TimeUnit unit) in get()
DCompletionService.java94 Future<V> poll(long timeout, TimeUnit unit) throws InterruptedException; in poll()
DTransferQueue.java105 boolean tryTransfer(E e, long timeout, TimeUnit unit) in tryTransfer()
DAbstractExecutorService.java199 long timeout, TimeUnit unit) in invokeAny()
231 long timeout, TimeUnit unit) in invokeAll()
/libcore/ojluni/src/main/java/sun/nio/ch/
DSelectorImpl.java79 protected abstract int doSelect(long timeout) throws IOException; in doSelect()
81 private int lockAndDoSelect(long timeout) throws IOException { in lockAndDoSelect()
93 public int select(long timeout) in select()
DPollArrayWrapper.java116 int poll(int numfds, int offset, long timeout) { in poll()
125 private native int poll0(long pollAddress, int numfds, long timeout); in poll0()
DServerSocketAdaptor.java48 private volatile int timeout = 0; field in ServerSocketAdaptor
163 public void setSoTimeout(int timeout) throws SocketException { in setSoTimeout()
DPollSelectorImpl.java65 protected int doSelect(long timeout) in doSelect()
DCompletedFuture.java74 public V get(long timeout, TimeUnit unit) throws ExecutionException { in get()
/libcore/ojluni/src/main/java/sun/net/www/protocol/mailto/
DMailToURLConnection.java118 public void setConnectTimeout(int timeout) { in setConnectTimeout()
130 public void setReadTimeout(int timeout) { in setReadTimeout()
/libcore/ojluni/src/main/java/java/net/
DAbstractPlainSocketImpl.java50 int timeout; // timeout in millisec field in AbstractPlainSocketImpl
166 protected void connect(SocketAddress address, int timeout) in connect()
192 private void connectToAddress(InetAddress address, int port, int timeout) throws IOException { in connectToAddress()
194 doConnect(InetAddress.getLocalHost(), port, timeout); in connectToAddress() local
326 synchronized void doConnect(InetAddress address, int port, int timeout) throws IOException { in doConnect()
627 abstract void socketConnect(InetAddress address, int port, int timeout) in socketConnect()
DInet6AddressImpl.java142 …public boolean isReachable(InetAddress addr, int timeout, NetworkInterface netif, int ttl) throws … in isReachable()
219 …private native boolean isReachable0(byte[] addr, int scope, int timeout, byte[] inf, int ttl, int … in isReachable0()
DSocketInputStream.java95 int timeout) in socketRead0()
123 int read(byte b[], int off, int length, int timeout) throws IOException { in read()
DInetAddressImpl.java66 boolean isReachable(InetAddress addr, int timeout, NetworkInterface netif, in isReachable()
/libcore/ojluni/src/main/native/
DPollArrayWrapper.c46 ipoll(struct pollfd fds[], unsigned int nfds, int timeout) in ipoll()
78 jlong timeout) in Java_sun_nio_ch_PollArrayWrapper_poll0()
Dlinux_close.cpp163 int NET_Poll(struct pollfd *ufds, unsigned int nfds, int timeout) { in NET_Poll()
168 fd_set *exceptfds, struct timeval *timeout) { in NET_Select()
184 int NET_Timeout(int s, long timeout) { in NET_Timeout()
DInet4AddressImpl.c70 ping4(JNIEnv *env, jint fd, struct sockaddr_in* him, jint timeout, in ping4()
192 jint timeout, in Inet4AddressImpl_isReachable0()
DSocketInputStream.c56 jint off, jint len, jint timeout) in SocketInputStream_socketRead0()
/libcore/luni/src/main/java/java/lang/ref/
DFinalizerReference.java85 public static void finalizeAllEnqueued(long timeout) throws InterruptedException { in finalizeAllEnqueued()
147 synchronized void awaitFinalization(long timeout) throws InterruptedException { in awaitFinalization()
/libcore/ojluni/src/main/java/java/nio/channels/
DSelector.java329 public abstract int select(long timeout) in select()
/libcore/ojluni/src/main/java/sun/security/util/
DCache.java111 public abstract void setTimeout(int timeout); in setTimeout()
131 public static <K,V> Cache<K,V> newSoftMemoryCache(int size, int timeout) { in newSoftMemoryCache()
156 public static <K,V> Cache<K,V> newHardMemoryCache(int size, int timeout) { in newHardMemoryCache()
235 public void setTimeout(int timeout) { in setTimeout()
432 public synchronized void setTimeout(int timeout) { in setTimeout()
/libcore/ojluni/src/main/java/sun/net/www/http/
DKeepAliveStreamCleaner.java99 long timeout = TIMEOUT; in run() local

1234