Searched refs:timeout (Results 51 - 75 of 1144) sorted by relevance

1234567891011>>

/macosx-10.10/ruby-106/ruby/ext/-test-/wait_for_single_fd/
H A Dwait_for_single_fd.c5 wait_for_single_fd(VALUE ign, VALUE fd, VALUE events, VALUE timeout) argument
11 if (!NIL_P(timeout)) {
12 tv = rb_time_timeval(timeout);
/macosx-10.10/ruby-106/ruby/test/
H A Dtest_timeout.rb2 require 'timeout'
9 timeout(0.1) { q.pop }
20 Timeout.timeout(1) {
30 assert_raise(TypeError, bug3168) {Timeout.timeout(n) { sleep 0.1 }}
/macosx-10.10/Security-57031.1.35/Security/include/security_utilities/
H A Dkq++.cpp46 KEvent *events, unsigned eventCount, const timespec *timeout)
48 int rc = ::kevent64(mQueue, updates, updateCount, events, eventCount, 0, timeout);
62 bool KQueue::receive(KEvent &event, const timespec *timeout) argument
64 return (*this)(&event, 1, timeout) > 0;
45 operator ()(const KEvent *updates, unsigned updateCount, KEvent *events, unsigned eventCount, const timespec *timeout) argument
/macosx-10.10/Security-57031.1.35/Security/libsecurity_utilities/lib/
H A Dkq++.cpp46 KEvent *events, unsigned eventCount, const timespec *timeout)
48 int rc = ::kevent64(mQueue, updates, updateCount, events, eventCount, 0, timeout);
62 bool KQueue::receive(KEvent &event, const timespec *timeout) argument
64 return (*this)(&event, 1, timeout) > 0;
45 operator ()(const KEvent *updates, unsigned updateCount, KEvent *events, unsigned eventCount, const timespec *timeout) argument
/macosx-10.10/WebCore-7600.1.25/Modules/geolocation/
H A DPositionOptions.h41 int timeout() const function in class:WebCore::PositionOptions
46 void setTimeout(int timeout) argument
48 ASSERT(timeout >= 0);
50 m_timeout = timeout;
/macosx-10.10/curl-83.1.2/curl/tests/libtest/
H A Dlib502.c54 struct timeval timeout; local
58 timeout.tv_sec = 0;
59 timeout.tv_usec = 100000L; /* 100 ms */
76 select_test(maxfd+1, &fdread, &fdwrite, &fdexcep, &timeout);
/macosx-10.10/dtrace-147/test/tst/i386/pid/
H A Dtst.embedded.d64 timeout = timestamp + 5000000000;
68 /timestamp > timeout/
/macosx-10.10/dtrace-147/test/tst/sparc/pid/
H A Dtst.embedded.d64 timeout = timestamp + 5000000000;
68 /timestamp > timeout/
/macosx-10.10/ntp-92/util/
H A Dtestrs6000.c15 int timeout();
34 signal(SIGALRM, timeout);
42 timeout( function
48 signal (SIGALRM, timeout);
/macosx-10.10/postfix-255/postfix/src/util/
H A Diostuff.h39 #define read_wait(fd, timeout) poll_fd((fd), POLL_FD_READ, (timeout), 0, -1)
40 #define write_wait(fd, timeout) poll_fd((fd), POLL_FD_WRITE, (timeout), 0, -1)
/macosx-10.10/ruby-106/ruby/test/-ext-/win32/
H A Dtest_dln.rb9 assert_in_out_err(['-r-test-/win32/dln', '-eexit'], '', [], [], bug, timeout: 10)
/macosx-10.10/screen-22/screen/
H A Dsched.h33 struct timeval timeout; member in struct:event
/macosx-10.10/xnu-2782.1.97/osfmk/kdp/
H A Dkdp_en_debugger.h35 unsigned int timeout);
/macosx-10.10/BerkeleyDB-21/db/lock/
H A Dlock_timer.c16 * Set timeout values in shared memory.
26 __lock_set_timeout(env, locker, timeout, op)
29 db_timeout_t timeout;
37 ret = __lock_set_timeout_internal(env, locker, timeout, op);
44 * -- set timeout values in shared memory.
54 __lock_set_timeout_internal(env, sh_locker, timeout, op)
57 db_timeout_t timeout;
64 if (timeout == 0)
67 __lock_expires(env, &sh_locker->tx_expire, timeout);
69 sh_locker->lk_timeout = timeout;
[all...]
/macosx-10.10/Heimdal-398.1.2/lib/krb5/
H A Dsend_to_kdc_plugin.h51 time_t timeout,
58 time_t timeout,
/macosx-10.10/bind9-45.101/bind9/bin/tests/system/tsiggss/
H A Dauthsock.pl29 my $timeout = 0;
34 "timeout=i" => \$timeout);
52 if ($timeout != 0) {
53 # die after the given timeout
54 alarm($timeout);
/macosx-10.10/bind9-45.101/bind9/bin/tests/virtual-time/
H A Dvtwrapper.c215 struct timeval *timeout)
222 if (epoch.tv_sec == 0 || timeout == NULL ||
223 (timeout->tv_sec == 0 && timeout->tv_usec == 0))
224 return syscall(SYS_select, nfds, rfds, wfds, xfds, timeout);
226 interval_deflate(timeout, &tv);
229 return syscall(SYS_select, nfds, rfds, wfds, xfds, timeout);
236 poll(struct pollfd fds[], nfds_t nfds, int timeout) { argument
242 if (timeout <= 0 || epoch.tv_sec == 0)
243 return syscall(SYS_poll, fds, nfds, timeout);
214 select(int nfds, fd_set *rfds, fd_set *wfds, fd_set *xfds, struct timeval *timeout) argument
258 kevent(int kq, struct kevent *changelist, int nchanges, struct kevent *eventlist, int nevents, const struct timespec *timeout) argument
288 epoll_wait(int fd, struct epoll_event *events, int maxevents, int timeout) argument
[all...]
/macosx-10.10/curl-83.1.2/curl/docs/examples/
H A Dimap-multi.c85 struct timeval timeout; local
99 /* Set a suitable timeout to play around with */
100 timeout.tv_sec = 1;
101 timeout.tv_usec = 0;
105 timeout.tv_sec = curl_timeo / 1000;
106 if(timeout.tv_sec > 1)
107 timeout.tv_sec = 1;
109 timeout.tv_usec = (curl_timeo % 1000) * 1000;
120 rc = select(maxfd + 1, &fdread, &fdwrite, &fdexcep, &timeout);
131 case 0: /* timeout */
[all...]
H A Dmulti-app.c74 struct timeval timeout; local
88 /* set a suitable timeout to play around with */
89 timeout.tv_sec = 1;
90 timeout.tv_usec = 0;
94 timeout.tv_sec = curl_timeo / 1000;
95 if(timeout.tv_sec > 1)
96 timeout.tv_sec = 1;
98 timeout.tv_usec = (curl_timeo % 1000) * 1000;
110 rc = select(maxfd+1, &fdread, &fdwrite, &fdexcep, &timeout);
116 case 0: /* timeout */
[all...]
H A Dmulti-post.c84 struct timeval timeout; local
98 /* set a suitable timeout to play around with */
99 timeout.tv_sec = 1;
100 timeout.tv_usec = 0;
104 timeout.tv_sec = curl_timeo / 1000;
105 if(timeout.tv_sec > 1)
106 timeout.tv_sec = 1;
108 timeout.tv_usec = (curl_timeo % 1000) * 1000;
120 rc = select(maxfd+1, &fdread, &fdwrite, &fdexcep, &timeout);
128 /* timeout o
[all...]
H A Dpop3-multi.c85 struct timeval timeout; local
99 /* Set a suitable timeout to play around with */
100 timeout.tv_sec = 1;
101 timeout.tv_usec = 0;
105 timeout.tv_sec = curl_timeo / 1000;
106 if(timeout.tv_sec > 1)
107 timeout.tv_sec = 1;
109 timeout.tv_usec = (curl_timeo % 1000) * 1000;
120 rc = select(maxfd + 1, &fdread, &fdwrite, &fdexcep, &timeout);
131 case 0: /* timeout */
[all...]
/macosx-10.10/postfix-255/postfix/src/tls/
H A Dtls_bio_ops.c10 /* int tls_bio_connect(fd, timeout, context)
12 /* int timeout;
15 /* int tls_bio_accept(fd, timeout, context)
17 /* int timeout;
20 /* int tls_bio_shutdown(fd, timeout, context)
22 /* int timeout;
25 /* int tls_bio_read(fd, buf, len, timeout, context)
29 /* int timeout;
32 /* int tls_bio_write(fd, buf, len, timeout, context)
36 /* int timeout;
152 tls_bio(int fd, int timeout, TLS_SESS_STATE *TLScontext, int (*hsfunc) (SSL *), int (*rfunc) (SSL *, void *, int), int (*wfunc) (SSL *, const void *, int), void *buf, int num) argument
[all...]
/macosx-10.10/uucp-11/uucp/contrib/
H A DLogin.VMS35 timeout syspass 2000 # Wait 2 sec. and try again
50 timeout l1 2000 # Wait 2 sec. and try again
60 timeout login 2000 # Wait 2 sec. and try again
71 timeout nopasswd 10000
/macosx-10.10/cups-408/cups/cups/
H A Dsidechannel.c51 * printer. Programs must be prepared to handle timeout or "not
67 double timeout) /* I - Timeout in seconds */
73 if (cupsSideChannelWrite(command, CUPS_SC_STATUS_NONE, NULL, 0, timeout))
76 if (cupsSideChannelRead(&rcommand, &status, data, datalen, timeout))
107 double timeout) /* I - Timeout in seconds */
122 "datalen=%p(%d), timeout=%.3f)", command, status, data,
123 datalen, datalen ? *datalen : -1, timeout));
141 timeout < 0.0 ? -1 : (int)(timeout * 1000))) < 0 &&
149 stimeout.tv_sec = (int)timeout;
63 cupsSideChannelDoRequest( cups_sc_command_t command, char *data, int *datalen, double timeout) argument
102 cupsSideChannelRead( cups_sc_command_t *command, cups_sc_status_t *status, char *data, int *datalen, double timeout) argument
302 cupsSideChannelSNMPGet( const char *oid, char *data, int *datalen, double timeout) argument
408 cupsSideChannelSNMPWalk( const char *oid, double timeout, cups_sc_walk_func_t cb, void *context) argument
527 cupsSideChannelWrite( cups_sc_command_t command, cups_sc_status_t status, const char *data, int datalen, double timeout) argument
[all...]
/macosx-10.10/dtrace-147/test/tst/common/pid/
H A Dtst.args1.d42 timeout = timestamp + 1000000000;
53 timeout = timestamp + 500000000;
70 /timestamp > timeout/

Completed in 336 milliseconds

1234567891011>>