HomeSort by relevance Sort by last modified time
    Searched refs:clientFd (Results 1 - 2 of 2) sorted by null

  /libcore/luni/src/main/java/java/net/
PlainSocketImpl.java 98 FileDescriptor clientFd = Libcore.os.accept(fd, peerAddress);
100 // TODO: we can't just set newImpl.fd to clientFd because a nio SocketChannel may
102 newImpl.fd.setInt$(clientFd.getInt$());
  /libcore/luni/src/main/native/
libcore_io_Posix.cpp 382 jint clientFd = NET_FAILURE_RETRY("accept", accept(fd, peer, peerLength));
383 if (clientFd == -1 || !fillInetSocketAddress(env, clientFd, javaInetSocketAddress, &ss)) {
384 close(clientFd);
387 return (clientFd != -1) ? jniCreateFileDescriptor(env, clientFd) : NULL;
    [all...]

Completed in 37 milliseconds