| /components/libc/posix/io/epoll/ |
| A D | epoll.c | 163 int events = 0; in epoll_poll() local 177 events |= POLLIN | EPOLLRDNORM | POLLOUT; in epoll_poll() 183 return events; in epoll_poll() 458 fdlist->epev.events = 0; in epoll_ctl_add() 463 fdlist->revents = event->events; in epoll_ctl_add() 572 fdlist->next->revents = event->events; in epoll_ctl_mod() 623 if (!(event->events & EPOLLEXCLUSIVE_BITS)) in epoll_do_ctl() 628 event->events |= EPOLLERR | EPOLLHUP; in epoll_do_ctl() 939 ret = epoll_do(ep, events, maxevents, timeout); in epoll_do_wait() 1021 return epoll_do_wait(epfd, events, maxevents, timeout, ss); in epoll_pwait() [all …]
|
| /components/libc/posix/io/poll/ |
| A D | poll.h | 35 short events; /**< Requested events. */ member 56 short events; /**< Requested events. */
|
| A D | select.c | 94 pollset[ndx].events |= POLLIN; in select() 101 pollset[ndx].events |= POLLOUT; in select()
|
| A D | poll.c | 223 req->_key = pollfd->events | POLLERR | POLLHUP; in do_pollfd() 235 mask &= pollfd->events | POLLERR | POLLHUP; in do_pollfd()
|
| /components/libc/posix/io/eventfd/ |
| A D | eventfd.c | 89 int events = 0; in eventfd_poll() local 97 events |= POLLIN; in eventfd_poll() 100 events |= POLLERR; in eventfd_poll() 103 events |= POLLOUT; in eventfd_poll() 105 return events; in eventfd_poll()
|
| /components/lwp/terminal/freebsd/ |
| A D | tty_pts.c | 383 int events = req->_key; in ptsdev_poll() local 391 return ((events & (POLLIN | POLLRDNORM)) | POLLHUP); in ptsdev_poll() 394 if (events & (POLLIN | POLLRDNORM)) in ptsdev_poll() 398 revents |= events & (POLLIN | POLLRDNORM); in ptsdev_poll() 400 if (events & (POLLOUT | POLLWRNORM)) in ptsdev_poll() 404 revents |= events & (POLLOUT | POLLWRNORM); in ptsdev_poll() 420 if (events & (POLLIN | POLLRDNORM)) in ptsdev_poll() 422 if (events & (POLLOUT | POLLWRNORM)) in ptsdev_poll()
|
| A D | tty.c | 659 int events = req->_key; in ttydev_poll() local 664 return ((events & (POLLIN | POLLRDNORM)) | POLLHUP); in ttydev_poll() 666 if (events & (POLLIN | POLLRDNORM)) in ttydev_poll() 670 revents |= events & (POLLIN | POLLRDNORM); in ttydev_poll() 678 else if (events & (POLLOUT | POLLWRNORM)) in ttydev_poll() 682 revents |= events & (POLLOUT | POLLWRNORM); in ttydev_poll() 687 if (events & (POLLIN | POLLRDNORM)) in ttydev_poll() 689 if (events & (POLLOUT | POLLWRNORM)) in ttydev_poll()
|
| /components/libc/posix/io/signalfd/ |
| A D | signalfd.c | 86 int events = 0; in signalfd_poll() local 98 events |= POLLIN; in signalfd_poll() 103 return events; in signalfd_poll()
|
| /components/libc/posix/io/timerfd/ |
| A D | timerfd.c | 98 int events = 0; in timerfd_poll() local 110 events |= POLLIN; in timerfd_poll() 113 return events; in timerfd_poll()
|
| /components/drivers/wlan/ |
| A D | Kconfig | 23 int "Driver events maxcount"
|
| /components/net/lwip/lwip-2.0.3/doc/ |
| A D | rawapi.txt | 107 callback function for events such as incoming data available, outgoing 110 processing for any or all of these events. Each callback is an ordinary 425 the current state. Having link up and link down events is optional but 426 DHCP and IPv6 discover benefit well from those events.
|
| A D | ppp.txt | 436 up(running) and down(dead) events.
|
| /components/net/lwip/lwip-2.1.2/test/sockets/ |
| A D | sockets_stresstest.c | 226 pfd.events = POLLIN | POLLERR; in sockets_stresstest_wait_readable_poll()
|
| /components/net/lwip/lwip-2.1.2/src/include/lwip/ |
| A D | sockets.h | 526 short events; member
|
| /components/net/lwip/lwip-2.1.2/src/api/ |
| A D | sockets.c | 2264 if ((fds[fdi].events & POLLIN) != 0 && ((lastdata != NULL) || (rcvevent > 0))) { in lwip_pollscan() 2269 if ((fds[fdi].events & POLLOUT) != 0 && (sendevent != 0)) { in lwip_pollscan() 2469 if (has_recvevent && (pollfd->events & POLLIN) != 0) { in lwip_poll_should_wake() 2472 if (has_sendevent && (pollfd->events & POLLOUT) != 0) { in lwip_poll_should_wake()
|
| /components/net/lwip/lwip-2.0.3/src/netif/ppp/ |
| A D | PPPD_FOLLOWUP | 329 2014-03-09 - pppol2tp: Connect up/down events to notifiers and add IPv6 ones
|
| /components/net/lwip/lwip-2.1.2/src/netif/ppp/ |
| A D | PPPD_FOLLOWUP | 329 2014-03-09 - pppol2tp: Connect up/down events to notifiers and add IPv6 ones
|
| /components/finsh/ |
| A D | cmd.c | 1098 CMD_OPTIONS_NODE(RT_Object_Class_Event, event, list events)
|
| /components/net/lwip/lwip-2.1.2/doc/ |
| A D | ppp.txt | 436 up(running) and down(dead) events.
|