/bionic/tests/ |
sys_socket_test.cpp | 82 fd_set read_set; local 83 FD_ZERO(&read_set); 84 FD_SET(fd, &read_set); 88 ASSERT_LT(0, select(fd+1, &read_set, NULL, NULL, &tv)); 210 fd_set read_set; local 211 FD_ZERO(&read_set); 212 FD_SET(fd_acc, &read_set); 218 ASSERT_LT(0, select(fd_acc+1, &read_set, NULL, NULL, &tv));
|
/external/chromium-trace/catapult/third_party/Paste/paste/ |
cgiapp.py | 197 read_set = [] 213 read_set.append(proc.stdout) 217 read_set.append(proc.stderr) 221 while read_set or write_set: 222 rlist, wlist, xlist = select.select(read_set, write_set, []) 244 read_set.remove(proc.stdout) 253 read_set.remove(proc.stderr)
|
/system/core/fastboot/ |
socket.cpp | 91 fd_set read_set; local 92 FD_ZERO(&read_set); 93 FD_SET(sock_, &read_set); 99 int result = TEMP_FAILURE_RETRY(select(sock_ + 1, &read_set, nullptr, nullptr, &timeout));
|
/external/dbus/tools/ |
dbus-launch.c | 463 fd_set read_set; local 528 FD_ZERO (&read_set); 533 FD_SET (tty_fd, &read_set); 539 FD_SET (x_fd, &read_set); 544 &read_set, NULL, &err_set, NULL); 557 FD_ISSET (x_fd, &read_set), 563 if (FD_ISSET (tty_fd, &read_set))
|
/system/core/adb/ |
shell_service.cpp | 515 fd_set read_set, write_set; local 522 memcpy(&read_set, master_read_set_ptr, sizeof(read_set)); 524 if (select(select_n, &read_set, &write_set, nullptr, nullptr) < 0) { 536 if (ValidAndInSet(stdinout_sfd_, &read_set)) { 541 if (!dead_sfd && ValidAndInSet(stderr_sfd_, &read_set)) { 546 if (!dead_sfd && ValidAndInSet(protocol_sfd_, &read_set)) {
|
/system/bt/udrv/ulinux/ |
uipc.c | 95 fd_set read_set; member in struct:__anon74428 293 if (SAFE_FD_ISSET(uipc_main.ch[ch_id].srvfd, &uipc_main.read_set)) 322 if (SAFE_FD_ISSET(uipc_main.ch[ch_id].fd, &uipc_main.read_set)) 334 if (SAFE_FD_ISSET(uipc_main.signal_fds[0], &uipc_main.read_set)) 512 uipc_main.read_set = uipc_main.active_set; 514 result = select(uipc_main.max_fd+1, &uipc_main.read_set, NULL, NULL, NULL);
|
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
subprocess.py | [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/ |
subprocess.py | [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
subprocess.py | [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
subprocess.py | [all...] |
/frameworks/native/cmds/dumpstate/ |
utils.cpp | 428 fd_set read_set; local 431 FD_ZERO(&read_set); 432 FD_SET(fd, &read_set); 437 int ret = TEMP_FAILURE_RETRY(select(fd + 1, &read_set, NULL, NULL, &tm)); [all...] |
/external/dbus/dbus/ |
dbus-sysdeps-win.c | 1074 fd_set read_set, write_set, err_set; 1080 FD_ZERO (&read_set); 1117 FD_SET (fdp->fd, &read_set); 1131 ready = select (max_fd + 1, &read_set, &write_set, &err_set, &tv); 1152 if (FD_ISSET (fdp->fd, &read_set)) 1171 if (FD_ISSET (fdp->fd, &read_set)) [all...] |
dbus-sysdeps-unix.c | [all...] |