Symbol: pollstate_t
usr/src/uts/common/io/devpoll.c
1198
pollstate_t *ps;
usr/src/uts/common/io/devpoll.c
1580
pollstate_t *ps = curthread->t_pollstate;
usr/src/uts/common/io/devpoll.c
523
pollstate_t *ps =
usr/src/uts/common/sys/poll_impl.h
141
pollstate_t *ps_contend_nextp; /* next in contender list */
usr/src/uts/common/sys/poll_impl.h
142
pollstate_t **ps_contend_pnextp; /* pointer-to-previous-next */
usr/src/uts/common/sys/poll_impl.h
302
extern pollstate_t *pollstate_create(void);
usr/src/uts/common/sys/poll_impl.h
303
extern void pollstate_destroy(pollstate_t *);
usr/src/uts/common/sys/poll_impl.h
320
extern int pcache_insert(pollstate_t *, file_t *, pollfd_t *, int *, ssize_t,
usr/src/uts/common/sys/poll_impl.h
322
extern int pcache_poll(pollfd_t *, pollstate_t *, nfds_t, int *, int);
usr/src/uts/common/sys/poll_impl.h
342
extern int pcache_delete_fd(pollstate_t *, int, size_t, int, uint_t);
usr/src/uts/common/sys/poll_impl.h
346
extern void pcache_clean_entry(pollstate_t *, int);
usr/src/uts/common/sys/poll_impl.h
364
extern int pcacheset_cache_list(pollstate_t *, pollfd_t *, int *, int);
usr/src/uts/common/sys/poll_impl.h
365
extern void pcacheset_remove_list(pollstate_t *, pollfd_t *, int, int, int,
usr/src/uts/common/sys/poll_impl.h
367
extern int pcacheset_resolve(pollstate_t *, nfds_t, int *, int);
usr/src/uts/common/sys/poll_impl.h
369
extern void pcacheset_invalidate(pollstate_t *, polldat_t *);
usr/src/uts/common/sys/poll_impl.h
370
extern void pcacheset_reset_count(pollstate_t *, int);
usr/src/uts/common/sys/poll_impl.h
371
extern int pcacheset_replace(pollstate_t *);
usr/src/uts/common/syscall/poll.c
104
static pollstate_t *pollstate_contenders = NULL;
usr/src/uts/common/syscall/poll.c
107
static int pollchecksanity(pollstate_t *, nfds_t);
usr/src/uts/common/syscall/poll.c
108
static int pollcheckxref(pollstate_t *, int);
usr/src/uts/common/syscall/poll.c
110
static int pollcheckrevents(pollstate_t *, int, int, int);
usr/src/uts/common/syscall/poll.c
111
static void checkpolldat(pollstate_t *);
usr/src/uts/common/syscall/poll.c
113
static int plist_chkdupfd(file_t *, polldat_t *, pollstate_t *, pollfd_t *, int,
usr/src/uts/common/syscall/poll.c
1243
pcacheset_invalidate(pollstate_t *ps, polldat_t *pdp)
usr/src/uts/common/syscall/poll.c
1296
pcache_insert(pollstate_t *ps, file_t *fp, pollfd_t *pollfdp, int *fdcntp,
usr/src/uts/common/syscall/poll.c
1450
pcache_delete_fd(pollstate_t *ps, int fd, size_t pos, int which, uint_t cevent)
usr/src/uts/common/syscall/poll.c
1543
pollchecksanity(pollstate_t *ps, nfds_t nfds)
usr/src/uts/common/syscall/poll.c
1581
pcacheset_resolve(pollstate_t *ps, nfds_t nfds, int *fdcntp, int which)
usr/src/uts/common/syscall/poll.c
1902
pcache_poll(pollfd_t *pollfdp, pollstate_t *ps, nfds_t nfds, int *fdcntp,
usr/src/uts/common/syscall/poll.c
2148
pcacheset_cache_list(pollstate_t *ps, pollfd_t *fds, int *fdcntp, int which)
usr/src/uts/common/syscall/poll.c
2229
pcache_clean_entry(pollstate_t *ps, int fd)
usr/src/uts/common/syscall/poll.c
2316
pollstate_t *
usr/src/uts/common/syscall/poll.c
2319
pollstate_t *ps = curthread->t_pollstate;
usr/src/uts/common/syscall/poll.c
2326
ps = kmem_zalloc(sizeof (pollstate_t), KM_SLEEP);
usr/src/uts/common/syscall/poll.c
2339
pollstate_destroy(pollstate_t *ps)
usr/src/uts/common/syscall/poll.c
2356
kmem_free(ps, sizeof (pollstate_t));
usr/src/uts/common/syscall/poll.c
2360
pollstate_contend(pollstate_t *ps, pollcache_t *pcp)
usr/src/uts/common/syscall/poll.c
2362
pollstate_t *rem, *next;
usr/src/uts/common/syscall/poll.c
248
pollstate_t *ps = curthread->t_pollstate;
usr/src/uts/common/syscall/poll.c
2486
pollstate_t *ps = curthread->t_pollstate;
usr/src/uts/common/syscall/poll.c
2528
pollstate_t *ps = curthread->t_pollstate;
usr/src/uts/common/syscall/poll.c
2570
pollstate_t *ps = fpip->fp_thread->t_pollstate;
usr/src/uts/common/syscall/poll.c
2599
pcacheset_reset_count(pollstate_t *ps, int index)
usr/src/uts/common/syscall/poll.c
2617
pcacheset_replace(pollstate_t *ps)
usr/src/uts/common/syscall/poll.c
2662
pollstate_t *ps;
usr/src/uts/common/syscall/poll.c
2724
pcacheset_remove_list(pollstate_t *ps, pollfd_t *pollfdp, int start, int end,
usr/src/uts/common/syscall/poll.c
2792
pollcheckxref(pollstate_t *ps, int cacheindex)
usr/src/uts/common/syscall/poll.c
2834
checkpolldat(pollstate_t *ps)
usr/src/uts/common/syscall/poll.c
2908
pollcheckrevents(pollstate_t *ps, int begin, int end, int cacheindex)
usr/src/uts/common/syscall/poll.c
293
pollstate_t *ps = curthread->t_pollstate;
usr/src/uts/common/syscall/poll.c
3047
plist_chkdupfd(file_t *fp, polldat_t *pdp, pollstate_t *psp, pollfd_t *pollfdp,
usr/src/uts/common/syscall/poll.c
339
pollstate_t *ps;
usr/src/uts/common/syscall/poll.c
711
pollstate_t *ps = curthread->t_pollstate;