Searched refs:timeout (Results 26 - 50 of 1144) sorted by relevance

1234567891011>>

/macosx-10.10/dtrace-147/test/tst/common/pid/
H A Dtst.ret1.d42 timeout = timestamp + 1000000000;
53 timeout = timestamp + 500000000;
69 /timestamp > timeout/
H A Dtst.ret2.d42 timeout = timestamp + 1000000000;
53 timeout = timestamp + 500000000;
69 /timestamp > timeout/
H A Dtst.emptystack.d42 timeout = timestamp + 1000000000 * 2;
61 /timestamp > timeout/
/macosx-10.10/KerberosHelper-151/regression/
H A Dkdcsetup.tcl2 set timeout 10
9 } timeout {
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/servers/slapd/back-bdb/
H A Dtrans.c39 struct timeval timeout; local
53 timeout.tv_sec = delay / 1000000;
54 timeout.tv_usec = delay % 1000000;
55 select( 0, NULL, NULL, NULL, &timeout );
/macosx-10.10/WebCore-7600.1.25/page/
H A DWindowTimers.idl31 [Custom] long setTimeout(any handler, [Default=Undefined] optional long timeout);
33 [Custom] long setInterval(any handler, [Default=Undefined] optional long timeout);
/macosx-10.10/curl-83.1.2/curl/src/
H A Dtool_sleep.c51 struct timeval timeout;
52 timeout.tv_sec = ms / 1000L;
54 timeout.tv_usec = ms * 1000L;
55 select(0, NULL, NULL, NULL, &timeout);
/macosx-10.10/dtrace-147/test/tst/common/usdt/
H A Dtst.argmap.d40 timeout = timestamp + 5000000000;
57 /timestamp > timeout/
/macosx-10.10/ruby-106/ruby/nacl/
H A Dselect.h6 fd_set *ex_fds, struct timeval *timeout);
/macosx-10.10/tcl-105/tcl_ext/expect/expect/example/
H A Dunbuffer14 expect -timeout 1 -re .+
20 set timeout -1
/macosx-10.10/xnu-2782.1.97/libsyscall/wrappers/
H A Dgethostuuid.c37 gethostuuid(uuid_t uuid, const struct timespec *timeout) argument
41 result = __gethostuuid(uuid, timeout, 0);
56 _getprivatesystemidentifier(uuid_t uuid, const struct timespec *timeout) argument
58 return __gethostuuid(uuid, timeout, 1);
/macosx-10.10/ruby-106/ruby/test/drb/
H A Dut_timerholder.rb6 def do_test(timeout, keeper_sleep = nil)
7 holder = TimerHolder.new(timeout)
10 sleep(timeout * 0.5)
15 sleep(timeout+0.5)
22 sleep(timeout+0.5)
28 sleep(timeout * 0.5)
30 holder.extend(key, timeout)
31 sleep(timeout * 0.5)
33 sleep(timeout * 0.6)
/macosx-10.10/ruby-106/ruby/test/webrick/
H A Dtest_utils.rb15 assert_equal(:foo, m.timeout(10){ :foo })
20 m.timeout(2){
21 assert_raise(Timeout::Error){ m.timeout(1){ i += 1; sleep } }
30 assert_raise(Timeout::Error){ m.timeout(0.1){ sleep } }
33 assert_raise(ex){ m.timeout(0.1, ex){ sleep } }
38 m.timeout(10){
39 m.timeout(1, ex){ i += 1; sleep }
48 m.timeout(1){
49 m.timeout(10, ex){ i += 1; sleep }
/macosx-10.10/bind9-45.101/bind9/bin/tests/resolver/
H A Dt_resolver.c125 unsigned int timeout; local
128 "The default timeout is returned from _gettimeout()");
132 timeout = dns_resolver_gettimeout(resolver);
133 t_info("The default timeout is %d second%s\n", timeout, (timeout == 1 ? "" : "s"));
134 test_result = (timeout > 0) ? T_PASS : T_FAIL;
146 unsigned int default_timeout, timeout; local
149 "_settimeout() can change the timeout to a non-default");
154 t_info("The default timeout i
173 unsigned int default_timeout, timeout; local
204 unsigned int timeout; local
[all...]
/macosx-10.10/apr-32/apr/apr/support/unix/
H A Dwaitio.c44 int rc, timeout; local
46 timeout = f ? f->timeout / 1000 : s->timeout / 1000;
51 rc = poll(&pfd, 1, timeout);
69 apr_interval_time_t timeout; local
75 /* TODO - timeout should be less each time through this loop */
88 timeout = f->timeout;
95 timeout
[all...]
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/servers/slapd/back-sock/
H A Dsearchexample.pl45 my $timeout = 30; # give the user 30 seconds to type a line
46 alarm($timeout);
/macosx-10.10/curl-83.1.2/curl/docs/examples/
H A Dmulti-double.c63 struct timeval timeout; local
77 /* set a suitable timeout to play around with */
78 timeout.tv_sec = 1;
79 timeout.tv_usec = 0;
83 timeout.tv_sec = curl_timeo / 1000;
84 if(timeout.tv_sec > 1)
85 timeout.tv_sec = 1;
87 timeout.tv_usec = (curl_timeo % 1000) * 1000;
99 rc = select(maxfd+1, &fdread, &fdwrite, &fdexcep, &timeout);
107 /* timeout o
[all...]
H A Dmulti-single.c61 struct timeval timeout; local
75 /* set a suitable timeout to play around with */
76 timeout.tv_sec = 1;
77 timeout.tv_usec = 0;
81 timeout.tv_sec = curl_timeo / 1000;
82 if(timeout.tv_sec > 1)
83 timeout.tv_sec = 1;
85 timeout.tv_usec = (curl_timeo % 1000) * 1000;
97 rc = select(maxfd+1, &fdread, &fdwrite, &fdexcep, &timeout);
107 /* timeout o
[all...]
/macosx-10.10/xnu-2782.1.97/iokit/bsddev/
H A DIOKitBSDInit.h39 IOServiceWaitForMatchingResource( const char * property, uint64_t timeout );
/macosx-10.10/BerkeleyDB-21/db/java/src/com/sleepycat/db/
H A DCompactConfig.java32 private int timeout = 0; field in class:CompactConfig
141 Set the lock timeout for implicit transactions.
143 {@link Database#compact}, the lock timeout set for implicit
145 @param timeout
146 the lock timeout set for implicit transactions, in microseconds.
148 public void setTimeout(final int timeout) { argument
149 this.timeout = timeout;
153 Return the the lock timeout set for implicit transactions, in microseconds.
158 The the lock timeout se
[all...]
H A DLockRequest.java21 private int timeout; field in class:LockRequest
49 timeout for the specified object.
63 @param timeout
64 The timeout value for the lock.
70 final int timeout) {
76 this.setTimeout(timeout);
121 Set the lock timeout value.
123 @param timeout
124 The lock timeout value.
126 public void setTimeout(final int timeout) { argument
66 LockRequest(final LockOperation op, final LockRequestMode mode, final DatabaseEntry obj, final Lock lock, final int timeout) argument
[all...]
/macosx-10.10/sudo-73/src/
H A Dnanosleep.c39 struct timeval timeout, endtime, now; local
42 timeout.tv_sec = ts->tv_sec;
43 timeout.tv_usec = ts->tv_nsec / 1000;
46 timevaladd(&endtime, &timeout);
48 rval = select(0, NULL, NULL, NULL, &timeout);
/macosx-10.10/screen-22/screen/
H A Dsched.c98 mins = min->timeout.tv_sec;
102 if (mins < ev->timeout.tv_sec)
104 if (mins > ev->timeout.tv_sec || min->timeout.tv_usec > ev->timeout.tv_usec)
107 mins = ev->timeout.tv_sec;
119 struct timeval timeout; local
128 gettimeofday(&timeout, NULL);
129 /* tp - timeout */
130 timeout
[all...]
/macosx-10.10/cups-408/cups/cups/
H A Dbackchannel.c37 double timeout);
43 * Reads up to "bytes" bytes from the backchannel/backend. The "timeout"
53 double timeout) /* I - Timeout in seconds, typically 0.0 to poll */
66 cups_setup(&input, &tval, timeout);
68 if (timeout < 0.0)
93 * Writes "bytes" bytes to the backchannel/filter. The "timeout" parameter
105 double timeout) /* I - Timeout in seconds, typically 1.0 */
128 cups_setup(&output, &tval, timeout);
130 if (timeout < 0.0)
181 double timeout) /*
51 cupsBackChannelRead(char *buffer, size_t bytes, double timeout) argument
102 cupsBackChannelWrite( const char *buffer, size_t bytes, double timeout) argument
179 cups_setup(fd_set *set, struct timeval *tval, double timeout) argument
[all...]
/macosx-10.10/mDNSResponder-561.1.1/mDNSPosix/
H A DExampleClientApp.c53 struct timeval timeout; local
61 // 2. Set up the timeout.
63 // so we set an effectively infinite timeout
64 timeout.tv_sec = 0x3FFFFFFF;
65 timeout.tv_usec = 0;
67 // 3. Give the mDNSPosix layer a chance to add its information to the fd_set and timeout
68 mDNSPosixGetFDSet(m, &nfds, &readfds, &timeout);
71 verbosedebugf("select(%d, %d.%06d)", nfds, timeout.tv_sec, timeout.tv_usec);
72 result = select(nfds, &readfds, NULL, NULL, &timeout);
[all...]

Completed in 519 milliseconds

1234567891011>>