Searched refs:select (Results 126 - 150 of 796) sorted by relevance

1234567891011>>

/macosx-10.9.5/Heimdal-323.92.1/kdc/
H A Dheaders.h57 #include <sys/select.h>
/macosx-10.9.5/Heimdal-323.92.1/lib/krb5/
H A Dnet_write.c72 ret = select(fd + 1, NULL, &wfds, NULL, tvp);
/macosx-10.9.5/Libc-997.90.3/gen/FreeBSD/
H A Dpselect.c43 #include <sys/select.h>
58 * same as the traditional BSD `select' function, except that it uses
60 * and allows the user to specify a signal mask to apply during the select.
/macosx-10.9.5/WebCore-7537.78.1/css/
H A Dview-source.css52 -webkit-user-select: none;
76 -webkit-user-select: none
/macosx-10.9.5/WebCore-7537.78.1/html/shadow/
H A DHTMLContentElement.h51 const AtomicString& select() const;
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DGoToLineDialog.js95 this._input.select();
H A DresourceView.css64 -webkit-user-select: text;
72 -webkit-user-select: text;
/macosx-10.9.5/bash-92/bash-3.2/lib/readline/examples/
H A Dexcallback.c127 if( select(FD_SETSIZE, &fds, NULL, NULL, NULL) < 0) {
128 perror("select");
/macosx-10.9.5/cups-372.4/cups/cups/
H A Dsidechannel.c41 # include <sys/select.h>
128 #else /* select() */
129 fd_set input_set; /* Input set for select() */
130 struct timeval stimeout; /* Timeout value for select() */
158 #else /* select() */
165 while ((nfds = select(CUPS_SC_FD + 1, &input_set, NULL, NULL,
551 #else /* select() */
552 fd_set output_set; /* Output set for select() */
553 struct timeval stimeout; /* Timeout value for select() */
581 #else /* select() */
[all...]
/macosx-10.9.5/curl-78.94.1/curl/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.c62 int rc; /* select() return code */
93 greater or equal than -1. We call select(maxfd + 1, ...), specially in
94 case of (maxfd == -1), we call select(0, ...), which is basically equal
97 rc = select(maxfd+1, &fdread, &fdwrite, &fdexcep, &timeout);
101 /* select error */
103 printf("select() returns error, this is badness\n");
/macosx-10.9.5/curl-78.94.1/curl/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);
/macosx-10.9.5/emacs-92/emacs/lisp/emulation/
H A Dedt-lk201.el55 ("SELECT" . [select]) ("PREVIOUS" . [prior]) ("NEXT" . [next])
/macosx-10.9.5/emacs-92/emacs/lwlib/
H A DxlwmenuP.h67 XtCallbackList select, highlight; member in struct:_XlwMenu_part
/macosx-10.9.5/emacs-92/emacs/src/s/
H A Ddarwin.h343 #define select sys_select macro
/macosx-10.9.5/mDNSResponder-522.92.1/mDNSPosix/
H A DExampleClientApp.c21 #include <unistd.h> // For select()
70 // 4. Call select as normal
71 verbosedebugf("select(%d, %d.%06d)", nfds, timeout.tv_sec, timeout.tv_usec);
72 result = select(nfds, &readfds, NULL, NULL, &timeout);
76 verbosedebugf("select() returned %d errno %d", result, errno);
/macosx-10.9.5/postfix-252/postfix/src/util/
H A Dfifo_rdonly_bug.c12 /* and 10.20, select() will report that the FIFO remains readable
108 switch (select(fd + 1, &read_fds, (fd_set *) 0, &except_fds, &tv)) {
110 perrorexit("select");
H A Dfifo_rdwr_bug.c10 /* On BSD/OS 3.1 select() will report that the FIFO is readable
75 switch (select(fd + 1, &read_fds, (fd_set *) 0, &except_fds, &tv)) {
77 perrorexit("select");
H A Dselect_bug.c5 /* select test program
9 /* select_bug forks child processes that perform select()
55 switch (select(fd + 1, &readfds, (fd_set *) 0, &readfds, &tv)) {
57 msg_fatal("select: %m");
59 msg_info("%s select timed out", what);
62 msg_info("%s select wakeup", what);
84 vstream_printf("Doing multiple select on socket1, then write to it...\n");
/macosx-10.9.5/ruby-104/ruby/ext/-test-/win32/fd_setsize/
H A Dfd_setsize.c26 select(sd+1, &read, &write, &error, &zero);
/macosx-10.9.5/vim-53/runtime/ftplugin/
H A Daspvbs.vim41 \ s:notend . '\<select\s\+case\>:\<case\>:\<case\s\+else\>:\<end\s\+select\>,' .
H A Dvb.vim37 \ '\%(^\s*\)\@<=\<select\>\s\+\<case\>:\%(^\s*\)\@<=\<case\>:\%(^\s*\)\@<=\<end\>\s\+\<select\>,' .
/macosx-10.9.5/xnu-2422.115.4/bsd/net/
H A Dbpfdesc.h78 #include <sys/select.h>
127 struct selinfo bd_sel; /* bsd select info */
132 thread_call_t bd_thread_call; /* for BPF timeouts with select */
141 #define BPF_IDLE 0 /* no select in progress or kqueue pending */
142 #define BPF_WAITING 1 /* waiting for read timeout in select/kqueue */
143 #define BPF_TIMED_OUT 2 /* read timeout has expired in select/kqueue */
/macosx-10.9.5/tcl-102/tk/tk/library/demos/
H A Dtext.tcl43 4. Select. Press mouse button 1 and drag to select a range of characters.
48 You can double-click to select whole words or triple-click to select
51 5. Delete and replace. To delete text, select the characters you'd like
55 6. Copy the selection. To copy the selection into this window, select
/macosx-10.9.5/tcl-102/tk84/tk/library/demos/
H A Dtext.tcl43 4. Select. Press mouse button 1 and drag to select a range of characters.
48 You can double-click to select whole words or triple-click to select
51 5. Delete and replace. To delete text, select the characters you'd like
55 6. Copy the selection. To copy the selection into this window, select

Completed in 132 milliseconds

1234567891011>>