Symbol: pselect
lib/libc/resolv/res_send.c
152
static int pselect(int, void *, void *, void *,
lib/libc/resolv/res_send.c
996
n = pselect(s + 1, &dsmask, NULL, NULL, &timeout, NULL);
lib/libssh/openbsd-compat/bsd-misc.h
126
int pselect(int, fd_set *, fd_set *, fd_set *, const struct timespec *,
lib/libthread_xu/thread/thr_syscalls.c
485
__strong_reference(__pselect, pselect);
sys/sys/select.h
50
int pselect(int, fd_set * __restrict, fd_set * __restrict,
sys/sys/sysunion.h
273
struct pselect_args pselect;
test/testcases/io/pselect_1/pselect_1.c
103
r = pselect(des[0]+1, &rset, NULL, NULL, &timeout, NULL);
test/testcases/io/pselect_1/pselect_1.c
115
r = pselect(des[0]+1, &rset, NULL, NULL, &timeout, NULL);
test/testcases/io/pselect_1/pselect_1.c
131
r = pselect(des[0]+1, &rset, NULL, NULL, &timeout, &blockset);
test/testcases/io/pselect_1/pselect_1.c
54
r = pselect(2, NULL, &wset, NULL, NULL, NULL);
test/testcases/io/pselect_1/pselect_1.c
72
r = pselect(des[0]+1, &rset, NULL, NULL, NULL, NULL);
test/testcases/io/pselect_1/pselect_1.c
90
r = pselect(des[0]+1, &rset, NULL, NULL, NULL, NULL);
usr.bin/top/commands.c
642
gstate->pselect.idle = !gstate->pselect.idle;
usr.bin/top/commands.c
644
gstate->pselect.idle ? "D" : "Not d");
usr.bin/top/commands.c
677
gstate->pselect.fullcmd = !gstate->pselect.fullcmd;
usr.bin/top/commands.c
679
gstate->pselect.fullcmd ? "D" : "Not d");
usr.bin/top/commands.c
823
gstate->pselect.uid = -1;
usr.bin/top/commands.c
832
gstate->pselect.uid = i;
usr.bin/top/commands.c
845
if (gstate->pselect.command != NULL)
usr.bin/top/commands.c
847
free(gstate->pselect.command);
usr.bin/top/commands.c
848
gstate->pselect.command = NULL;
usr.bin/top/commands.c
856
gstate->pselect.command = strdup(linebuf);
usr.bin/top/commands.c
866
gstate->pselect.usernames = !gstate->pselect.usernames;
usr.bin/top/commands.c
868
if (gstate->pselect.usernames)
usr.bin/top/commands.c
890
gstate->pselect.mode = (gstate->pselect.mode + 1) % gstate->statics->modemax;
usr.bin/top/commands.c
899
gstate->pselect.system = !gstate->pselect.system;
usr.bin/top/commands.c
910
gstate->pselect.threads = !gstate->pselect.threads;
usr.bin/top/globalstate.h
62
struct process_select pselect;
usr.bin/top/top.c
412
gstate->pselect.uid = i;
usr.bin/top/top.c
418
gstate->pselect.mode = i;
usr.bin/top/top.c
422
gstate->pselect.system = !gstate->pselect.system;
usr.bin/top/top.c
426
gstate->pselect.idle = !gstate->pselect.idle;
usr.bin/top/top.c
441
gstate->pselect.fullcmd = !gstate->pselect.fullcmd;
usr.bin/top/top.c
445
gstate->pselect.threads = !gstate->pselect.threads;
usr.bin/top/top.c
503
processes = get_process_info(&system_info, &(gstate->pselect), gstate->order_index);
usr.bin/top/top.c
538
i_procstates(system_info.p_total, system_info.procstates, gstate->pselect.threads);
usr.bin/top/top.c
574
u_procstates(system_info.p_total, system_info.procstates, gstate->pselect.threads);
usr.bin/top/top.c
766
gstate->pselect.idle = Yes;
usr.bin/top/top.c
767
gstate->pselect.system = No;
usr.bin/top/top.c
768
gstate->pselect.fullcmd = No;
usr.bin/top/top.c
769
gstate->pselect.command = NULL;
usr.bin/top/top.c
770
gstate->pselect.uid = -1;
usr.bin/top/top.c
771
gstate->pselect.mode = 0;
usr.bin/top/top.c
877
gstate->pselect.usernames = gstate->show_usernames;
usr.bin/top/top.c
949
(void)get_process_info(&system_info, &gstate->pselect, 0);