Home
last modified time | relevance | path

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

/libcore/luni/src/main/java/libcore/io/
DIoBridge.java325 StructPollfd[] pollFds = new StructPollfd[] { new StructPollfd() }; in isConnected() local
326 pollFds[0].fd = fd; in isConnected()
327 pollFds[0].events = (short) POLLOUT; in isConnected()
328 int rc = Libcore.os.poll(pollFds, remainingTimeoutMs); in isConnected()
862 StructPollfd[] pollFds = new StructPollfd[]{ new StructPollfd() }; in poll() local
863 pollFds[0].fd = fd; in poll()
864 pollFds[0].events = (short) events; in poll()
867 int ret = android.system.Os.poll(pollFds, timeout); in poll()