Lines Matching full:poll
12 #include <uapi/linux/poll.h>
33 * structures and helpers for f_op->poll implementations
53 * Return true if it is guaranteed that poll will not wait. This is the case
54 * if the poll() of another file descriptor in the set got an event, so there
63 * Return the set of events that the application wants to poll for.
65 * to be started implicitly on poll(). You typically only want to do that
81 return file->f_op->poll; in file_can_poll()
86 if (unlikely(!file->f_op->poll)) in vfs_poll()
88 return file->f_op->poll(file, pt); in vfs_poll()
99 * Structures and helpers for select/poll syscall
129 #define M(X) __MAP(v, (__force __u16)EPOLL##X, POLL##X) in mangle_poll()
138 #define M(X) (__force __poll_t)__MAP(val, POLL##X, (__force __u16)EPOLL##X) in demangle_poll()