Home
last modified time | relevance | path

Searched refs:timeoutMs (Results 1 – 7 of 7) sorted by relevance

/libcore/luni/src/main/java/libcore/io/
DIoBridge.java132 …public static void connect(FileDescriptor fd, InetAddress inetAddress, int port, int timeoutMs) th… in connect() argument
134 connectErrno(fd, inetAddress, port, timeoutMs); in connect()
142 throw new ConnectException(createMessageForException(fd, inetAddress, port, timeoutMs, in connect()
153 … connectErrno(FileDescriptor fd, InetAddress inetAddress, int port, int timeoutMs) throws ErrnoExc… in connectErrno() argument
155 if (timeoutMs <= 0) { in connectErrno()
171 long finishTimeNanos = System.nanoTime() + TimeUnit.MILLISECONDS.toNanos(timeoutMs); in connectErrno()
190 createMessageForException(fd, inetAddress, port, timeoutMs, null)); in connectErrno()
192 } while (!IoBridge.isConnected(fd, inetAddress, port, timeoutMs, remainingTimeoutMs)); in connectErrno()
200 int port, int timeoutMs, Exception causeOrNull) { in createMessageForException() argument
222 if (timeoutMs > 0) { in createMessageForException()
[all …]
DBlockGuardOs.java257 @Override public int poll(StructPollfd[] fds, int timeoutMs) throws ErrnoException { in poll() argument
260 if (timeoutMs != 0) { in poll()
263 return super.poll(fds, timeoutMs); in poll()
DForwardingOs.java168 …public int poll(StructPollfd[] fds, int timeoutMs) throws ErrnoException { return os.poll(fds, tim… in poll() argument
DOs.java141 public int poll(StructPollfd[] fds, int timeoutMs) throws ErrnoException; in poll() argument
DLinux.java135 public native int poll(StructPollfd[] fds, int timeoutMs) throws ErrnoException; in poll() argument
/libcore/luni/src/main/java/android/system/
DOs.java430 …static int poll(StructPollfd[] fds, int timeoutMs) throws ErrnoException { return Libcore.os.poll(… in poll() argument
/libcore/luni/src/main/native/
Dlibcore_io_Linux.cpp1957 static jint Linux_poll(JNIEnv* env, jobject, jobjectArray javaStructs, jint timeoutMs) { in Linux_poll() argument
1991 rc = poll(fds.get(), count, timeoutMs); in Linux_poll()
1997 if (timeoutMs > 0) { in Linux_poll()
2010 if (diffMs >= timeoutMs) { in Linux_poll()
2015 timeoutMs -= diffMs; in Linux_poll()