Searched refs:select (Results 1 - 25 of 331) sorted by relevance

1234567891011>>

/freebsd-current/crypto/openssl/os-dep/
H A Dhaiku.h10 #include <sys/select.h>
/freebsd-current/lib/libc/sys/
H A Dselect.c33 #include <sys/select.h>
38 #pragma weak select macro
40 select(int n, fd_set *rs, fd_set *ws, fd_set *es, struct timeval *t) function
42 return (INTERPOS_SYS(select, n, rs, ws, es, t));
H A Dpselect.c33 #include <sys/select.h>
/freebsd-current/tests/sys/kern/pipe/
H A Dpipe_reverse2_test.c27 #include <sys/select.h>
48 n = select(pip[1] + 1, NULL, &set, NULL, &(struct timeval){ 0, 0 });
50 errx(1, "FAIL: select initial reverse direction");
58 n = select(pip[1] + 1, NULL, &set, NULL, &(struct timeval){ 0, 0 });
60 errx(1, "FAIL: select reverse direction after write");
H A Dbig_pipe_test.c1 #include <sys/select.h>
14 * EAGAIN while select(2) returns the descriptor as ready for write).
26 i = select(fd+1, NULL, &wfd, NULL, NULL);
28 err(1, "select failed");
30 errx(1, "select returned unexpected value %d\n", i);
/freebsd-current/share/doc/psd/20.ipctut/
H A Dstrchkread.c37 * This program uses select() to check that someone is trying to connect
79 if (select(sock + 1, &ready, 0, 0, &to) < 0) {
80 perror("select");
/freebsd-current/crypto/heimdal/lib/kadm5/
H A Diprop.h42 #include <sys/select.h>
/freebsd-current/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/
H A DInstructionSelector.h33 virtual bool select(MachineInstr &I) = 0;
/freebsd-current/lib/libc/gen/
H A Dscandir.c33 * Scan the directory dirname calling select to make a list of selected
49 #define SELECT(x) CALL_BLOCK(select, x)
54 #define SELECT(x) select(x)
67 scandir_b_dirp(DIR *dirp, struct dirent ***namelist, select_block select, argument
71 int (*select)(const struct dirent *), int (*dcomp)(const struct dirent **,
85 if (select != NULL && !SELECT(d))
137 scandir_b(const char *dirname, struct dirent ***namelist, select_block select, argument
141 int (*select)(const struct dirent *), int (*dcomp)(const struct dirent **,
156 (dirp, namelist, select, dcomp));
162 int (*select)(cons
[all...]
H A Dscandir-compat11.c32 * Scan the directory dirname calling select to make a list of selected
54 #define SELECT(x) select(x)
61 int (*select)(const struct freebsd11_dirent *),
80 if (select != NULL && !SELECT(d))
/freebsd-current/tools/regression/poll/
H A Dpipeselect.c3 #include <sys/select.h>
72 errx(1, "fd = %d too large for select()", fd);
76 if (select(fd + 1, &rfds, NULL, NULL, &tv) < 0)
77 err(1, "select");
80 * writer) is reported quite differently for select() than
81 * for poll(). select() must see a ready-to-read descriptor
107 if (select(fd + 1, &rfds, NULL, NULL, &tv) < 0)
108 err(1, "select");
116 if (select(fd + 1, &rfds, NULL, NULL, &tv) < 0)
117 err(1, "select");
[all...]
/freebsd-current/contrib/ntp/include/
H A Dntp_select.h12 # include <sys/select.h>
15 extern int select(int width, fd_set *pReadFds, fd_set *pWriteFds,
/freebsd-current/tests/sys/common/
H A Dnet_receiver.py33 import select namespace
69 readable, writable, exceptional = select.select(inputs, [], inputs)
98 readable, writable, exceptional = select.select(inputs, [], inputs)
/freebsd-current/contrib/netbsd-tests/lib/librumphijack/
H A Dh_client.c32 #include <sys/select.h>
64 rv = select(pipefd[0]+1, &rfds, NULL, NULL, &tv);
66 err(EXIT_FAILURE, "select");
68 errx(EXIT_FAILURE, "select succesful");
83 rv = select(100, &fds, &fds, &fds, &tv);
85 err(EXIT_FAILURE, "select");
87 errx(EXIT_FAILURE, "select succesful");
89 rv = select(0, NULL, NULL, NULL, &tv);
/freebsd-current/usr.sbin/ppp/
H A Dprobe.c41 /* Does select() alter the passed time value ? */
49 select(0, NULL, NULL, NULL, &t);
/freebsd-current/contrib/bearssl/conf/
H A DUnix32.mk3 # to make the code select the "small" integer implementations (i15, m15,
/freebsd-current/contrib/llvm-project/llvm/lib/Target/M68k/GISel/
H A DM68kInstructionSelector.cpp31 bool select(MachineInstr &I) override;
72 bool M68kInstructionSelector::select(MachineInstr &I) { function in class:M68kInstructionSelector
/freebsd-current/contrib/llvm-project/llvm/lib/Target/BPF/GISel/
H A DBPFInstructionSelector.cpp38 bool select(MachineInstr &I) override;
42 /// tblgen generated 'select' implementation that is used as the initial
78 bool BPFInstructionSelector::select(MachineInstr &I) { function in class:BPFInstructionSelector
/freebsd-current/tests/sys/mqueue/
H A Dmqtest3.c3 #include <sys/select.h>
66 status = select(mq_getfd_np(mq) + 1, &set, NULL,
69 err(1, "child process: select()");
98 status = select(mq_getfd_np(mq) + 1, NULL, &set,
101 err(1, "select()");
/freebsd-current/crypto/heimdal/kcm/
H A Dheaders.h56 #include <sys/select.h>
/freebsd-current/crypto/heimdal/kpasswd/
H A Dkpasswd_locl.h65 #include <sys/select.h>
/freebsd-current/crypto/heimdal/appl/push/
H A Dpush_locl.h56 #include <sys/select.h>
/freebsd-current/crypto/heimdal/kadmin/
H A Dkadmin_locl.h53 #include <sys/select.h>
62 #include <sys/select.h>
/freebsd-current/tools/tools/netrate/tcpconnect/
H A Dtcpconnect.c30 #include <sys/select.h>
68 * we wait, use non-blocking sockets and select(). Return 0 on success, or
94 if (select(s + 1, &read_set, &read_set, &read_set, NULL) < 0) {
96 err(-1, "select");
/freebsd-current/tools/regression/capsicum/syscalls/
H A Dmisc.c31 #include <sys/select.h>
49 return (select(pfd + 1, NULL, &fdset, NULL, NULL) == -1 ? -1 : 0);

Completed in 273 milliseconds

1234567891011>>