Home
last modified time | relevance | path

Searched refs:rfds (Results 1 – 4 of 4) sorted by relevance

/device/generic/goldfish/radio/libril/
Dril_event.cpp182 static void processReadReadies(fd_set * rfds, int n) in processReadReadies() argument
189 if (rev != NULL && FD_ISSET(rev->fd, rfds)) { in processReadReadies()
332 static void printReadies(fd_set * rfds) in printReadies() argument
336 if (rev != NULL && FD_ISSET(rev->fd, rfds)) { in printReadies()
342 #define printReadies(rfds) do {} while(0) argument
348 fd_set rfds; in ril_event_loop() local
356 memcpy(&rfds, &readFds, sizeof(fd_set)); in ril_event_loop()
365 printReadies(&rfds); in ril_event_loop()
366 n = select(nfds, &rfds, NULL, NULL, ptv); in ril_event_loop()
367 printReadies(&rfds); in ril_event_loop()
[all …]
/device/google/cuttlefish/guest/hals/ril/libril/
Dril_event.cpp182 static void processReadReadies(fd_set * rfds, int n) in processReadReadies() argument
189 if (rev != NULL && FD_ISSET(rev->fd, rfds)) { in processReadReadies()
332 static void printReadies(fd_set * rfds) in printReadies() argument
336 if (rev != NULL && FD_ISSET(rev->fd, rfds)) { in printReadies()
342 #define printReadies(rfds) do {} while(0) argument
348 fd_set rfds; in ril_event_loop() local
356 memcpy(&rfds, &readFds, sizeof(fd_set)); in ril_event_loop()
365 printReadies(&rfds); in ril_event_loop()
366 n = select(nfds, &rfds, NULL, NULL, ptv); in ril_event_loop()
367 printReadies(&rfds); in ril_event_loop()
[all …]
/device/linaro/hikey/hifi/xaf/host-apf/proxy/
Dxf-fio.c87 fd_set rfds; in xf_ipc_wait() local
91 FD_ZERO(&rfds); in xf_ipc_wait()
92 FD_SET(fd, &rfds); in xf_ipc_wait()
99 select(fd+1,&rfds,NULL,NULL,(timeout? &tv: NULL)); in xf_ipc_wait()
102 return (FD_ISSET(fd, &rfds) ? 0 : -ETIMEDOUT); in xf_ipc_wait()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dpty.py146 rfds, wfds, xfds = select(
148 if master_fd in rfds:
151 if STDIN_FILENO in rfds: