Searched refs:select (Results 26 - 50 of 331) sorted by relevance

1234567891011>>

/freebsd-current/contrib/netbsd-tests/lib/libc/gen/
H A Dt_sleep.c116 if (select(0, NULL, NULL, NULL, &tv) == -1)
206 ATF_TC(select); variable
207 ATF_TC_HEAD(select, tc)
210 atf_tc_set_md_var(tc, "descr", "Test select(2) timing");
214 ATF_TC_BODY(select, tc)
340 ATF_TP_ADD_TC(tp, select);
/freebsd-current/crypto/openssh/openbsd-compat/
H A Dbsd-pselect.c32 # include <sys/select.h>
74 * the race between select() and child_terminated
150 * A minimal implementation of pselect(2), built on top of select(2).
167 if (mask == NULL) /* no signal mask, just call select */
168 return select(nfds, readfds, writefds, exceptfds, tvp);
194 /* Unmask signals, call select then restore signal mask. */
196 ret = select(nfds, readfds, writefds, exceptfds, tvp);
/freebsd-current/tools/tools/net80211/wesside/udps/
H A Dudps.c28 #include <sys/select.h>
161 rd = select(s + 1, &rfds, NULL ,NULL ,&tv);
163 perror("select()");
/freebsd-current/usr.bin/systat/
H A Dkeyboard.c34 #include <sys/select.h>
83 /* Prepare select */
86 n = select(STDIN_FILENO + 1, &rfds, NULL, NULL, &tm);
/freebsd-current/contrib/llvm-project/llvm/lib/Target/AVR/
H A DAVRISelDAGToDAG.cpp57 template <unsigned NodeType> bool select(SDNode *N);
306 template <> bool AVRDAGToDAGISel::select<ISD::FrameIndex>(SDNode *N) { function in class:AVRDAGToDAGISel
320 template <> bool AVRDAGToDAGISel::select<ISD::STORE>(SDNode *N) { function in class:AVRDAGToDAGISel
357 template <> bool AVRDAGToDAGISel::select<ISD::LOAD>(SDNode *N) { function in class:AVRDAGToDAGISel
444 template <> bool AVRDAGToDAGISel::select<AVRISD::CALL>(SDNode *N) { function in class:AVRDAGToDAGISel
485 template <> bool AVRDAGToDAGISel::select<ISD::BRIND>(SDNode *N) { function in class:AVRDAGToDAGISel
568 return select<ISD::FrameIndex>(N);
570 return select<ISD::BRIND>(N);
577 return select<ISD::STORE>(N);
579 return select<IS
[all...]
/freebsd-current/crypto/heimdal/appl/telnet/telnet/
H A Dnetwork.c83 value = select(net+1, 0, 0, &excepts, &timeout);
87 perror("select");
H A Dtelnet_locl.h96 #include <sys/select.h>
/freebsd-current/crypto/heimdal/kdc/
H A Dheaders.h57 #include <sys/select.h>
/freebsd-current/crypto/heimdal/lib/krb5/
H A Dnet_write.c72 ret = select(fd + 1, NULL, &wfds, NULL, tvp);
/freebsd-current/contrib/ofed/libibumad/
H A Dsysfs.h51 int (*select)(const struct dirent *),
H A Dsysfs.c150 int (*select)(const struct dirent *),
235 if (select && !select(dp)) {
/freebsd-current/sys/sys/
H A Dselect.h103 int select(int, fd_set *, fd_set *, fd_set *, struct timeval *);
/freebsd-current/contrib/telnet/telnet/
H A Dnetwork.c87 value = select(net+1, (fd_set *)0, (fd_set *)0, &excepts, &timeout);
91 perror("select");
/freebsd-current/crypto/heimdal/appl/ftp/ftp/
H A Dextern.h49 #include <sys/select.h>
/freebsd-current/crypto/openssl/test/
H A Dtls-provider.c664 static int xor_import(void *vkey, int select, const OSSL_PARAM params[])
674 if (key == NULL || (select & OSSL_KEYMGMT_SELECT_KEYPAIR) == 0)
703 static int xor_export(void *vkey, int select, OSSL_CALLBACK *param_cb,
709 if (key == NULL || (select & OSSL_KEYMGMT_SELECT_KEYPAIR) == 0)
728 static const OSSL_PARAM *xor_import_types(int select)
730 return (select & OSSL_KEYMGMT_SELECT_KEYPAIR) != 0 ? xor_key_types : NULL;
733 static const OSSL_PARAM *xor_export_types(int select)
735 return (select & OSSL_KEYMGMT_SELECT_KEYPAIR) != 0 ? xor_key_types : NULL;
658 xor_import(void *vkey, int select, const OSSL_PARAM params[]) argument
697 xor_export(void *vkey, int select, OSSL_CALLBACK *param_cb, void *cbarg) argument
722 xor_import_types(int select) argument
727 xor_export_types(int select) argument
/freebsd-current/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/
H A DResourceManager.h56 virtual uint64_t select(uint64_t ReadyMask) = 0;
83 /// Field NextInSequenceMask is used to select the next unit from the set of
87 /// The round-robin selector would firstly select 'ResourceC', then
110 /// select.
114 /// 'select' and 'used', are always in the hot execution path of llvm-mca.
115 /// Therefore, a slow implementation of 'select' would have a negative impact
125 uint64_t select(uint64_t ReadyMask) override;
/freebsd-current/contrib/libarchive/libarchive/
H A Dfilter_fork_posix.c50 # include <sys/select.h>
232 select(in < out ? out + 1 : in + 1, &fds_in, &fds_out, &fds_error, NULL);
/freebsd-current/contrib/unbound/util/
H A Dmini_event.h2 * mini-event.h - micro implementation of libevent api, using select() only.
39 * The back end is only select. Max number of fds is limited.
43 * Although limited to select() and a max (1024) open fds, it
59 #include <sys/select.h>
161 /** get polling method, select */
163 /** run select in a loop */
/freebsd-current/crypto/heimdal/appl/rsh/
H A Drsh_locl.h54 #include <sys/select.h>
/freebsd-current/crypto/heimdal/base/
H A Dbaselocl.h42 #include <sys/select.h>
/freebsd-current/crypto/openssh/
H A Dincludes.h74 # include <sys/select.h>
/freebsd-current/tools/regression/sockets/unix_close_race/
H A Dunix_close_race.c39 #include <sys/select.h>
/freebsd-current/lib/libsys/
H A Dinterposing_table.c55 SLOT(select, __sys_select),
/freebsd-current/contrib/capsicum-test/
H A Dselect.cc1 #include <sys/select.h>
63 int ret = select(maxfd+1, &rset, &wset, NULL, &tv);
73 ret = select(maxfd+1, &rset, &wset, NULL, &tv);
/freebsd-current/contrib/nvi/cl/
H A Dcl_read.c14 #include <sys/select.h>
183 switch (select(STDIN_FILENO + 1, &rdfd, NULL, NULL, tp)) {
232 switch (select(maxfd + 1, &rdfd, NULL, NULL, NULL)) {

Completed in 302 milliseconds

1234567891011>>