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

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/nsswitch/
H A Dwinbind_nss_config.h44 #include <sys/select.h>
H A Dwb_common.c249 ret = select(fd + 1, NULL, &w_fds, NULL, &tv);
365 call would not block by calling select(). */
371 if (select(winbindd_fd + 1, &r_fds, NULL, NULL, &tv) == -1) {
421 call would not block by calling select(). */
429 if ((selret = select(winbindd_fd + 1, &r_fds, NULL, NULL, &tv)) == -1) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/os/
H A Dos_yield.c33 * return an error if the usecs argument to select is too large).
45 * the local yield call if not pausing, otherwise call the select
79 * Sheer raving paranoia -- don't select for 0 time, in case some
92 if (select(0, NULL, NULL, NULL, &t) == -1) {
95 __db_syserr(env, ret, "select");
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/docs/examples/
H A Dmulti-double.c64 int rc; /* select() return code */
95 greater or equal than -1. We call select(maxfd + 1, ...), specially in
96 case of (maxfd == -1), we call select(0, ...), which is basically equal
99 rc = select(maxfd+1, &fdread, &fdwrite, &fdexcep, &timeout);
103 /* select error */
H A Dmulti-single.c60 int rc; /* select() return code */
91 greater or equal than -1. We call select(maxfd + 1, ...), specially in
92 case of (maxfd == -1), we call select(0, ...), which is basically equal
95 rc = select(maxfd+1, &fdread, &fdwrite, &fdexcep, &timeout);
99 /* select error */
101 printf("select() returns error, this is badness\n");
H A Dsendrecv.c54 /* select() returns the number of signalled sockets or -1 */
55 res = select(sockfd + 1, &infd, &outfd, &errfd, &tv);
H A Dmulti-app.c75 int rc; /* select() return code */
106 greater or equal than -1. We call select(maxfd + 1, ...), specially in
107 case of (maxfd == -1), we call select(0, ...), which is basically equal
110 rc = select(maxfd+1, &fdread, &fdwrite, &fdexcep, &timeout);
114 /* select error */
H A Dmulti-post.c85 int rc; /* select() return code */
116 greater or equal than -1. We call select(maxfd + 1, ...), specially in
117 case of (maxfd == -1), we call select(0, ...), which is basically equal
120 rc = select(maxfd+1, &fdread, &fdwrite, &fdexcep, &timeout);
124 /* select error */
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/tests/libtest/
H A Dfirst.c42 * Winsock select() requires that at least one of the three fd_set
44 * select() can not be used to sleep without a single fd_set.
51 return select(nfds, rd, wr, exc, tv);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libgcrypt-1.5.0/src/
H A Dath.c28 # include <sys/select.h>
252 if (ops_set && ops.select)
253 return (*ops.select) (nfd, rset, wset, eset, timeout);
258 return select (nfd, rset, wset, eset, timeout);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gdbm-1.8.3/
H A Dbucket.c156 int select; /* Used to index bucket during movement. */ local
232 select = (old_el->hash_value >> (31-new_bits)) & 1;
234 while (bucket[select]->h_table[elem_loc].hash_value != -1)
236 bucket[select]->h_table[elem_loc] = *old_el;
237 bucket[select]->count += 1;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/lib/
H A Ddict.c54 #include <sys/select.h>
H A Dselect.c26 #include <sys/select.h>
30 #error "We can't compile without select() or poll() support."
46 #include "select.h"
63 * WinSock select() and poll() timeout mechanisms need a valid
110 r = select(0, NULL, NULL, NULL, &pending_tv);
131 * otherwise select() is used. An error is returned if select() is
270 r = select((int)maxfd + 1, &fds_read, &fds_write, &fds_err, ptimeout);
310 * select() is used instead. An error is returned if select() i
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/radvd/
H A Dutil.c28 select(0,(fd_set *)NULL,(fd_set *)NULL,(fd_set *)NULL, &tv);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/test/
H A Drecd001.tcl24 proc recd001 { method {select 0} args } {
166 if { $select != 0 } {
170 if { [lsearch $select $tag] == -1 } {
H A Drecd009.tcl9 proc recd009 { method {select 0} args} {
66 if { $select != 0 } {
70 if { [lsearch $select $tag] == -1 } {
H A Drecd006.tcl9 proc recd006 { method {select 0} args } {
125 if { $select != 0 } {
129 if { [lsearch $select $tag] == -1 } {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/prebuilt/WW/www/
H A Dfunc.js250 document.forms[0].elements[i+1].select();
275 document.forms[0].elements[i+1].select();
305 document.forms[0].elements[i-1].select();
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/block/
H A Dswim3.c67 REG(select); /* controls CA0, CA1, CA2 and LSTRB signals */
84 /* Bits in select register */
262 out_8(&sw->select, RELAX);
267 out_8(&sw->select, sel & CA_MASK);
276 out_8(&sw->select, sw->select | LSTRB);
278 out_8(&sw->select, sw->select & ~LSTRB);
536 out_8(&sw->select, RELAX);
556 out_8(&sw->select, RELA
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/src/
H A Dmsgfilter.c38 /* Get fd_set (on AIX or Minix) or select() declaration (on EMX). */
40 # include <sys/select.h>
76 select() to know whether it must write or read. On platforms without
77 select(), we use non-blocking I/O. (This means the parent is busy
80 /* On BeOS select() works only on sockets, not on normal file descriptors. */
498 /* EINTR handling for close(), read(), write(), select().
551 retval = select (n, readfds, writefds, exceptfds, timeout);
556 #undef select /* avoid warning on VMS */ macro
557 #define select nonintr_select macro
604 HAVE_SELECT is defined, because select() onl
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/pptp/
H A Dpptp_callmgr.c183 if ((rc = select(max_fd + 1, &read_set, &write_set, NULL, NULL)) <0) {
270 select(max_fd + 1, &read_set, &write_set, NULL, &tv);
279 select(max_fd + 1, &read_set, &write_set, NULL, &tv);
291 select(max_fd + 1, &read_set, &write_set, NULL, &tv);
328 if (select(sockfd+1, NULL, &wset, NULL, &tval) > 0) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/ide/pci/
H A Dit821x.c143 int unit = drive->select.b.unit;
172 u8 unit = drive->select.b.unit;
245 int unit = drive->select.b.unit;
298 int unit = drive->select.b.unit;
335 int unit = drive->select.b.unit;
347 itdev->udma[unit] |= 0x8080; /* UDMA 5/6 select on */
367 int unit = drive->select.b.unit;
387 int unit = drive->select.b.unit;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/demos/easy_tls/
H A Deasy-tls.c85 #include <sys/select.h>
859 DEBUG_MSG2("select no.", ++tls_select_count);
860 select(maxfd + 1, &reads, &writes, (fd_set *) NULL, timeout_p);
881 static int write_attempt(int fd, struct tunnelbuf *, int *select, int *closed, int *progress);
883 static int read_attempt(int fd, struct tunnelbuf *, int *select, int *closed, int *progress);
1179 get_error(int r, int *select, int *closed, int *progress) argument
1189 *select = 1;
1200 static int write_attempt(int fd, struct tunnelbuf *buf, int *select, int *closed, int *progress) argument
1207 r = get_error(n, select, closed, progress);
1222 read_attempt(int fd, struct tunnelbuf *buf, int *select, in argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/demos/easy_tls/
H A Deasy-tls.c85 #include <sys/select.h>
859 DEBUG_MSG2("select no.", ++tls_select_count);
860 select(maxfd + 1, &reads, &writes, (fd_set *) NULL, timeout_p);
881 static int write_attempt(int fd, struct tunnelbuf *, int *select, int *closed, int *progress);
883 static int read_attempt(int fd, struct tunnelbuf *, int *select, int *closed, int *progress);
1179 get_error(int r, int *select, int *closed, int *progress) argument
1189 *select = 1;
1200 static int write_attempt(int fd, struct tunnelbuf *buf, int *select, int *closed, int *progress) argument
1207 r = get_error(n, select, closed, progress);
1222 read_attempt(int fd, struct tunnelbuf *buf, int *select, in argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/lib/
H A Dselect.c4 Samba select/poll implementation
25 We need to guarantee that when we get a signal we get out of a select immediately
27 signal handler to write to a pipe that is in the select/poll list
52 Like select() but avoids the signal race using a pipe
69 * select returned that there is data in the pipe and
94 ret = select(maxfd,readfds2,writefds,errorfds,tval);

Completed in 226 milliseconds

1234567891011>>