/external/bluetooth/glib/glib/ |
gpoll.c | 380 SELECT_MASK rset, wset, xset; local 385 FD_ZERO (&rset); 393 FD_SET (f->fd, &rset); 405 ready = select (maxfd + 1, &rset, &wset, &xset, 413 if (FD_ISSET (f->fd, &rset))
|
/development/tools/emulator/opengl/tests/ut_renderer/ |
RenderingThread.cpp | 143 PendingCropRectSet &rset = m_currentContext->getPendingCropRects(); local 144 if (rset.size() > 0) { 146 for (PendingCropRectSet::iterator i = rset.begin(); 147 i != rset.end(); 154 rset.clear();
|
/frameworks/base/core/jni/ |
android_bluetooth_BluetoothAudioGateway.cpp | 231 fd_set *rset, int ag_fd, 238 if (ag_fd >= 0 && FD_ISSET(ag_fd, &rset)) { 245 FD_ISSET(ag_fd, &rset)); 246 if (ag_fd >= 0 && !FD_ISSET(ag_fd, &rset)) { 309 fd_set rset; local 310 FD_ZERO(&rset); 316 FD_SET(nat->hf_ag_rfcomm_sock, &rset); 322 FD_SET(nat->hs_ag_rfcomm_sock, &rset); 336 &rset, 359 &rset, nat->hf_ag_rfcomm_sock [all...] |
android_bluetooth_HeadsetBase.cpp | 387 fd_set rset, wset; local 390 FD_ZERO(&rset); 392 FD_SET(nat->rfcomm_sock, &rset); 399 &rset, 420 /* n must be equal to 1 and either rset or wset must have the 423 if (FD_ISSET(nat->rfcomm_sock, &rset) ||
|
/external/bluetooth/bluez/test/ |
l2test.c | 577 fd_set rset; local 579 FD_ZERO(&rset); 580 FD_SET(sk, &rset); 582 if (select(sk + 1, &rset, NULL, NULL, NULL) < 0) 585 if (!FD_ISSET(sk, &rset))
|
/external/dnsmasq/src/ |
dnsmasq.c | 574 fd_set rset, wset, eset; local 576 FD_ZERO(&rset); 583 if ((t.tv_sec = set_dns_listeners(now, &rset, &maxfd)) != 0) 589 set_android_listeners(&rset, &maxfd); 602 set_dbus_listeners(&maxfd, &rset, &wset, &eset); 608 FD_SET(daemon->dhcpfd, &rset); 614 FD_SET(daemon->netlinkfd, &rset); 618 FD_SET(piperead, &rset); 640 if (select(maxfd+1, &rset, &wset, &eset, tp) < 0) 643 FD_ZERO(&rset); FD_ZERO(&wset); FD_ZERO(&eset) 1287 fd_set rset, wset; local [all...] |