HomeSort by relevance Sort by last modified time
    Searched full:clientfd (Results 1 - 4 of 4) sorted by null

  /libcore/luni/src/test/java/libcore/io/
OsTest.java 71 FileDescriptor clientFd = Libcore.os.accept(serverFd, peerAddress);
72 checkSockName(clientFd, isAbstract, address);
75 checkNoPeerName(clientFd);
77 StructUcred credentials = Libcore.os.getsockoptUcred(clientFd, SOL_SOCKET, SO_PEERCRED);
83 Libcore.os.read(clientFd, request, 0, request.length);
87 Libcore.os.write(clientFd, response, 0, response.length);
89 Libcore.os.close(clientFd);
97 FileDescriptor clientFd = Libcore.os.socket(AF_UNIX, SOCK_STREAM, 0);
99 Libcore.os.connect(clientFd, address, 0);
100 checkNoSockName(clientFd);
    [all...]
  /external/ppp/pppd/plugins/radius/
config.c 455 FILE *clientfd; local
466 if ((clientfd = fopen (rc_conf_str("servers"), "r")) == (FILE *) NULL)
475 while (fgets (buffer, sizeof (buffer), clientfd) != (char *) NULL)
534 fclose (clientfd);
  /libcore/luni/src/main/java/java/net/
PlainSocketImpl.java 89 FileDescriptor clientFd = Libcore.os.accept(fd, peerAddress);
91 // TODO: we can't just set newImpl.fd to clientFd because a nio SocketChannel may
93 newImpl.fd.setInt$(clientFd.getInt$());
  /libcore/luni/src/main/native/
libcore_io_Posix.cpp 461 jint clientFd = NET_FAILURE_RETRY(env, int, accept, javaFd, peer, peerLength);
462 if (clientFd == -1 || !fillInetSocketAddress(env, clientFd, javaInetSocketAddress, ss)) {
463 close(clientFd);
466 return (clientFd != -1) ? jniCreateFileDescriptor(env, clientFd) : NULL;
    [all...]

Completed in 201 milliseconds