Searched defs:fds (Results 1 - 2 of 2) sorted by relevance

/development/ndk/sources/android/libportable/arch-mips/
H A Dpoll.c52 int poll_portable(struct pollfd *fds, nfds_t nfds, long timeout) argument
58 fds->events = mips_change_portable_events(fds->events);
60 ret = poll(fds, nfds, timeout);
63 fds->events = change_mips_events(fds->events);
64 fds->revents = change_mips_events(fds->revents);
/development/tools/emulator/system/camera/
H A DEmulatedCameraDevice.cpp349 fd_set fds[1]; local
354 FD_ZERO(fds);
355 FD_SET(mControlFD, fds);
357 FD_SET(fd, fds);
364 int res = TEMP_FAILURE_RETRY(select(fd_num, fds, NULL, NULL, tvp));
372 } else if (FD_ISSET(mControlFD, fds)) {
391 ALOGW_IF(fd < 0 || !FD_ISSET(fd, fds), "%s: Undefined 'select' result",

Completed in 60 milliseconds