HomeSort by relevance Sort by last modified time
    Searched full:rfds (Results 26 - 50 of 62) sorted by null

12 3

  /system/core/toolbox/
alarm.c 24 fd_set rfds; local
170 FD_ZERO(&rfds);
171 FD_SET(fd, &rfds);
172 res = select(fd + 1, &rfds, NULL, NULL, &timeout);
powerd.c 182 fd_set rfds; local
307 FD_ZERO(&rfds);
308 //FD_SET(0, &rfds);
309 FD_SET(eventfd, &rfds);
310 FD_SET(notifyfd, &rfds);
311 res = select(((notifyfd > eventfd) ? notifyfd : eventfd) + 1, &rfds, NULL, NULL, &tv);
334 //if(FD_ISSET(0, &rfds)) {
338 if(FD_ISSET(notifyfd, &rfds)) {
345 if(FD_ISSET(eventfd, &rfds)) {
  /hardware/ti/omap3/omx/audio/src/openmax_il/g726_enc/src/
OMX_G726Enc_ComponentThread.c 89 fd_set rfds; local
102 FD_ZERO (&rfds);
103 FD_SET (pComponentPrivate->cmdPipe[0], &rfds);
104 FD_SET (pComponentPrivate->dataPipe[0], &rfds);
111 status = pselect (fdmax+1, &rfds, NULL, NULL, &tv, &set);
133 } else if(FD_ISSET (pComponentPrivate->cmdPipe[0], &rfds)) {
161 } else if (FD_ISSET (pComponentPrivate->dataPipe[0], &rfds)) {
  /hardware/ti/omap3/omx/audio/src/openmax_il/g729_dec/src/
OMX_G729Dec_ComponentThread.c 107 fd_set rfds; local
128 FD_ZERO (&rfds);
129 FD_SET (pComponentPrivate->cmdPipe[0], &rfds);
130 FD_SET (pComponentPrivate->dataPipe[0], &rfds);
138 status = pselect (fdmax+1, &rfds, NULL, NULL, &tv, &set);
189 else if ((FD_ISSET (pComponentPrivate->dataPipe[0], &rfds))){
202 else if (FD_ISSET (pComponentPrivate->cmdPipe[0], &rfds)) {
  /external/wpa_supplicant_6/wpa_supplicant/src/common/
wpa_ctrl.c 294 fd_set rfds; local
332 FD_ZERO(&rfds);
333 FD_SET(ctrl->s, &rfds);
334 res = select(ctrl->s + 1, &rfds, NULL, NULL, &tv);
335 if (FD_ISSET(ctrl->s, &rfds)) {
410 fd_set rfds; local
413 FD_ZERO(&rfds);
414 FD_SET(ctrl->s, &rfds);
415 select(ctrl->s + 1, &rfds, NULL, NULL, &tv);
416 return FD_ISSET(ctrl->s, &rfds);
    [all...]
  /hardware/ti/omap3/omx/video/src/openmax_il/video_encode/src/
OMX_VideoEnc_Thread.c 115 fd_set rfds; local
157 FD_ZERO (&rfds);
158 FD_SET (pComponentPrivate->nCmdPipe[0], &rfds);
159 FD_SET (pComponentPrivate->nFree_oPipe[0], &rfds);
160 FD_SET (pComponentPrivate->nFilled_iPipe[0], &rfds);
164 status = pselect(fdmax+1, &rfds, NULL, NULL, NULL,&set);
189 if (FD_ISSET(pComponentPrivate->nCmdPipe[0], &rfds))
292 if ((FD_ISSET(pComponentPrivate->nFilled_iPipe[0], &rfds)) &&
311 if (FD_ISSET(pComponentPrivate->nFree_oPipe[0], &rfds) &&
  /external/ipsec-tools/src/racoon/
schedule.c 334 fd_set rfds; local
346 rfds = mask0;
350 error = select(nfds, &rfds, (fd_set *)0, (fd_set *)0, timeout);
360 if (FD_ISSET(0, &rfds))
  /device/htc/passion-common/libsensors/
sensors.c 874 fd_set rfds; local
877 FD_ZERO(&rfds);
878 FD_SET(akm_fd, &rfds);
879 FD_SET(cm_fd, &rfds);
880 FD_SET(ls_fd, &rfds);
881 n = select(__MAX(akm_fd, __MAX(cm_fd, ls_fd)) + 1, &rfds,
891 if (FD_ISSET(akm_fd, &rfds)) {
908 if (FD_ISSET(cm_fd, &rfds)) {
925 if (FD_ISSET(ls_fd, &rfds)) {
    [all...]
  /hardware/ti/omap3/omx/image/src/openmax_il/jpeg_dec/tests/
JPEGTest.c 532 fd_set rfds; local
533 FD_ZERO(&rfds);
534 FD_SET(Event_Pipe[0], &rfds);
538 nRetval = pselect(nFDmax+1, &rfds, NULL, NULL, NULL, &set);
552 if ( FD_ISSET(Event_Pipe[0], &rfds)) {
1312 fd_set rfds; local
    [all...]
  /hardware/ti/omap3/omx/video/src/openmax_il/prepost_processor/tests/
VPPTest.c 499 fd_set rfds; local
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/drivers/
driver_privsep.c 73 fd_set rfds; local
77 FD_ZERO(&rfds);
78 FD_SET(drv->cmd_socket, &rfds);
81 res = select(drv->cmd_socket + 1, &rfds, NULL, NULL, &tv);
87 if (FD_ISSET(drv->cmd_socket, &rfds)) {
  /hardware/ti/omap3/omx/audio/src/openmax_il/g711_enc/tests/
G711EncTest.c 207 fd_set rfds; variable
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g722_enc/tests/
G722EncTest.c 132 fd_set rfds; variable
797 FD_ZERO(&rfds);
798 FD_SET(IpBuf_Pipe[0], &rfds);
799 FD_SET(OpBuf_Pipe[0], &rfds);
800 FD_SET(Event_Pipe[0], &rfds);
803 retval = select(fdmax+1, &rfds, NULL, NULL, &tv);
821 if(FD_ISSET(IpBuf_Pipe[0], &rfds)){
861 if(FD_ISSET(IpBuf_Pipe[0], &rfds)) {
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g726_dec/tests/
G726DecTest.c 145 fd_set rfds; variable
934 FD_ZERO(&rfds);
935 FD_SET(IpBuf_Pipe[0], &rfds);
936 FD_SET(OpBuf_Pipe[0], &rfds);
941 retval = select(fdmax+1, &rfds, NULL, NULL, &tv);
    [all...]
  /hardware/msm7k/librpc/
clnt.c 187 fd_set rfds; local
190 rfds = rx_fdset;
193 n = select(max_rxfd + 1, (fd_set *)&rfds, NULL, NULL, &tv);
203 if (FD_ISSET(client->xdr->fd, &rfds)) {
svc.c 112 volatile fd_set rfds; local
114 rfds = xprt->fdset;
116 n = select(xprt->max_fd + 1, (fd_set *)&rfds, NULL, NULL, &tv);
124 if (FD_ISSET(n, &rfds)) {
  /hardware/ti/omap3/omx/audio/src/openmax_il/g722_dec/tests/
G722DecTest.c 193 fd_set rfds; local
434 error = testCases (pHandle, &rfds, tcID, fIn, fOut, &frmCnt, &totalFilled, &tv, gDasfMode, nIpBuffs, pInputBufferHeader, nOpBuffs, pOutputBufferHeader);
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g726_enc/tests/
G726EncTest.c 282 fd_set rfds; variable
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g729_enc/tests/
G729EncTest.c 216 fd_set rfds; variable
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g711_dec/tests/
G711DecTest.c 232 fd_set rfds; variable
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/aac_enc/tests/
AacEncTest.c 587 fd_set rfds; local
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/wma_dec/tests/
WmaDecTest.c 173 fd_set rfds; variable
    [all...]
  /external/wpa_supplicant/
wpa_cli.c     [all...]
  /external/wpa_supplicant_6/wpa_supplicant/
wpa_cli.c     [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g729_dec/tests/
G729DecTest.c 164 fd_set rfds; variable
    [all...]

Completed in 208 milliseconds

12 3