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

  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
ASN1Set.java 40 in.readSet(this);
BerInputStream.java 590 public void readSet(ASN1Set set) throws IOException {
  /external/openssh/
serverloop.c 154 notify_prepare(fd_set *readset)
157 FD_SET(notify_pipe[0], readset);
160 notify_done(fd_set *readset)
164 if (notify_pipe[0] != -1 && FD_ISSET(notify_pipe[0], readset))
388 process_input(fd_set *readset)
394 if (FD_ISSET(connection_in, readset)) {
423 if (!fdout_eof && FD_ISSET(fdout, readset)) {
442 if (!fderr_eof && FD_ISSET(fderr, readset)) {
554 fd_set *readset = NULL, *writeset = NULL; local
701 wait_until_can_do_something(&readset, &writeset, &max_fd
821 fd_set *readset = NULL, *writeset = NULL; local
    [all...]
channels.c 783 typedef void chan_fn(Channel *c, fd_set *readset, fd_set *writeset);
789 channel_pre_listener(Channel *c, fd_set *readset, fd_set *writeset)
791 FD_SET(c->sock, readset);
796 channel_pre_connecting(Channel *c, fd_set *readset, fd_set *writeset)
803 channel_pre_open_13(Channel *c, fd_set *readset, fd_set *writeset)
806 FD_SET(c->sock, readset);
812 channel_pre_open(Channel *c, fd_set *readset, fd_set *writeset)
820 FD_SET(c->rfd, readset);
843 FD_SET(c->efd, readset);
850 channel_pre_input_draining(Channel *c, fd_set *readset, fd_set *writeset
    [all...]
clientloop.c 688 client_process_net_input(fd_set *readset)
697 if (FD_ISSET(connection_in, readset)) {
1382 fd_set *readset = NULL, *writeset = NULL; local
    [all...]
ssh-agent.c 995 after_select(fd_set *readset, fd_set *writeset)
1010 if (FD_ISSET(sockets[i].fd, readset)) {
1051 if (FD_ISSET(sockets[i].fd, readset)) {
    [all...]
  /frameworks/base/core/jni/
android_util_EventLog.cpp 166 fd_set readset; local
167 FD_ZERO(&readset);
173 FD_SET(fd, &readset);
174 int r = select(fd + 1, &readset, NULL, NULL, &timeout);
  /system/core/logcat/
logcat.cpp 259 fd_set readset; local
270 FD_ZERO(&readset);
272 FD_SET(dev->fd, &readset);
274 result = select(max + 1, &readset, NULL, NULL, sleep ? NULL : &timeout);
279 if (FD_ISSET(dev->fd, &readset)) {
  /bionic/libc/netbsd/resolv/
res_send.c 162 static int retrying_select(const int sock, fd_set *readset, fd_set *writeset,
970 retrying_select(const int sock, fd_set *readset, fd_set *writeset, const struct timespec *finish)
983 if (readset) {
984 FD_ZERO(readset);
985 FD_SET(sock, readset);
996 n = pselect(sock + 1, readset, writeset, NULL, &timeout, NULL);
1014 if ((readset && FD_ISSET(sock, readset)) || (writeset && FD_ISSET(sock, writeset))) {
    [all...]

Completed in 971 milliseconds