Searched refs:timeout (Results 126 - 150 of 1144) sorted by relevance

1234567891011>>

/macosx-10.10/apr-32/apr/apr/file_io/netware/
H A Dpipe.c71 APR_DECLARE(apr_status_t) apr_file_pipe_timeout_set(apr_file_t *thepipe, apr_interval_time_t timeout)
74 thepipe->timeout = timeout;
75 if (timeout >= 0) {
90 APR_DECLARE(apr_status_t) apr_file_pipe_timeout_get(apr_file_t *thepipe, apr_interval_time_t *timeout)
93 *timeout = thepipe->timeout;
110 (*file)->blocking = BLK_UNKNOWN; /* app needs to make a timeout call */
111 (*file)->timeout = -1;
161 (*in)->timeout
[all...]
/macosx-10.10/BerkeleyDB-21/db/test/
H A Ddead002.tcl11 {timeout 0} {tnum 002} } {
21 if { $timeout != 0 } {
26 -lock -lock_timeout $timeout -lock_detect $lmode]
47 if { $timeout != 0 } {
70 dead_check $t $n $timeout $dead $clean $other
/macosx-10.10/curl-83.1.2/curl/tests/libtest/
H A Dlib591.c83 /* server connection timeout */
96 long timeout = -99; local
114 multi_timeout(multi, &timeout);
116 /* At this point, timeout is guaranteed to be greater or equal than -1. */
118 if(timeout != -1L) {
119 int itimeout = (timeout > (long)INT_MAX) ? INT_MAX : (int)timeout;
H A Dlib597.c97 long timeout = -99; local
115 multi_timeout(multi, &timeout);
117 /* At this point, timeout is guaranteed to be greater or equal than -1. */
119 if(timeout != -1L) {
120 int itimeout = (timeout > (long)INT_MAX) ? INT_MAX : (int)timeout;
H A Dlib582.c128 * Callback invoked by curl to set a timeout.
132 struct timeval* timeout = userp; local
136 *timeout = tutil_tvnow();
137 timeout->tv_usec += timeout_ms * 1000;
140 timeout->tv_sec = -1;
172 static int getMicroSecondTimeout(struct timeval* timeout) argument
177 result = (timeout->tv_sec - now.tv_sec) * 1000000 +
178 timeout->tv_usec - now.tv_usec;
235 struct timeval timeout = {-1, 0}; local
299 multi_setopt(m, CURLMOPT_TIMERDATA, &timeout);
[all...]
/macosx-10.10/postfix-255/postfix/src/util/
H A Dinet_connect.c11 /* int inet_connect(addr, block_mode, timeout)
14 /* int timeout;
31 /* .IP timeout
77 int inet_connect(const char *addr, int block_mode, int timeout) argument
124 if ((sock = inet_connect_one(res, block_mode, timeout)) < 0) {
138 static int inet_connect_one(struct addrinfo * res, int block_mode, int timeout) argument
158 if (timeout > 0) {
160 if (timed_connect(sock, res->ai_addr, res->ai_addrlen, timeout) < 0) {
H A Drecv_pass_attr.c9 /* int recv_pass_attr(fd, attr, timeout, bufsize)
12 /* int timeout;
26 /* .IP timeout
57 int recv_pass_attr(int fd, HTABLE **attr, int timeout, ssize_t bufsize) argument
70 VSTREAM_CTL_TIMEOUT, timeout,
H A Dwatchdog.c9 /* WATCHDOG *watchdog_create(timeout, action, context)
10 /* unsigned timeout;
47 /* .IP timeout
107 unsigned timeout; /* our time resolution */ member in struct:WATCHDOG
126 * watchdog timeout is less than the max_idle time.
147 /* watchdog_event - handle timeout event */
173 alarm(wp->timeout);
182 msg_fatal("watchdog timeout");
189 WATCHDOG *watchdog_create(unsigned timeout, WATCHDOG_FN action, char *context) argument
196 if ((wp->timeout
[all...]
H A Dwrite_buf.c9 /* ssize_t write_buf(fd, buf, len, timeout)
13 /* int timeout;
26 /* .IP timeout
58 ssize_t write_buf(int fd, const char *buf, ssize_t len, int timeout) argument
63 int time_left = timeout;
/macosx-10.10/OpenSSL098-52/src/crypto/bio/
H A Dbss_dgram.c190 /* Read current socket timeout */
192 int timeout; local
194 (void*)&timeout, &sz) < 0)
198 data->socket_timeout.tv_sec = timeout / 1000;
199 data->socket_timeout.tv_usec = (timeout % 1000) * 1000;
226 /* Adjust socket timeout if next handhake message timer
235 timeout = timeleft.tv_sec * 1000 + timeleft.tv_usec / 1000;
237 (void*)&timeout, sizeof(timeout)) < 0)
258 int timeout local
540 int timeout = tv->tv_sec * 1000 + tv->tv_usec/1000; local
554 int timeout, sz = sizeof(timeout); local
578 int timeout = tv->tv_sec * 1000 + tv->tv_usec/1000; local
592 int timeout, sz = sizeof(timeout); local
[all...]
/macosx-10.10/BerkeleyDB-21/db/test/scr016/src/com/sleepycat/db/test/
H A DRepmgrConfigTest.java152 @Test (timeout=3000) public void TestOptions0()
156 @Test (timeout=3000) public void TestOptions1()
160 @Test (timeout=3000) public void TestOptions2()
164 @Test (timeout=3000) public void TestOptions3()
168 @Test (timeout=3000) public void TestOptions4()
172 @Test (timeout=3000) public void TestOptions5()
176 @Test (timeout=3000) public void TestOptions6()
180 @Ignore("Currently failing") @Test (timeout=3000) public void TestOptions7()
184 @Test (timeout=3000) public void TestOptions8()
188 @Test (timeout
[all...]
/macosx-10.10/ruby-106/ruby/test/testunit/
H A Dtest_parallel.rb2 require 'timeout'
26 timeout(2) do
39 timeout(10) do
50 timeout(10) do
63 timeout(10) do
81 timeout(10) do
91 timeout(10) do
116 timeout(10) do
135 timeout(2) do
152 timeout(1
[all...]
/macosx-10.10/tcl-105/tcl/tcl/win/
H A DtclWinNotify.c41 int timeout; /* Current timeout value. */ member in struct:ThreadSpecificData
267 UINT timeout;
290 timeout = 0;
293 * Make sure we pass a non-zero value into the timeout argument.
297 timeout = timePtr->sec * 1000 + timePtr->usec / 1000;
298 if (timeout == 0) {
299 timeout = 1;
302 tsdPtr->timeout = timeout;
263 UINT timeout; local
425 DWORD timeout, result; local
[all...]
/macosx-10.10/tcl-105/tcl84/tcl/win/
H A DtclWinNotify.c41 int timeout; /* Current timeout value. */ member in struct:ThreadSpecificData
269 UINT timeout;
293 timeout = 0;
296 * Make sure we pass a non-zero value into the timeout argument.
300 timeout = timePtr->sec * 1000 + timePtr->usec / 1000;
301 if (timeout == 0) {
302 timeout = 1;
305 tsdPtr->timeout = timeout;
265 UINT timeout; local
430 DWORD timeout, result; local
[all...]
/macosx-10.10/postfix-255/postfix/src/global/
H A Dclnt_stream.c9 /* CLNT_STREAM *clnt_stream_create(class, service, timeout, ttl)
12 /* int timeout;
48 /* .IP timeout
94 int timeout; /* time before client disconnect */ member in struct:CLNT_STREAM
102 /* clnt_stream_event - server-initiated disconnect or client-side timeout */
164 clnt_stream->timeout);
221 clnt_stream->timeout);
229 int timeout, int ttl)
238 clnt_stream->timeout = timeout;
228 clnt_stream_create(const char *class, const char *service, int timeout, int ttl) argument
[all...]
/macosx-10.10/tcl-105/tcl_ext/tclsoap/tclsoap/
H A Dhttp.tcl33 timeout 0
40 timeout \
63 # -timeout - the method can override the transport defined http timeout.
64 # Set to {} to use the transport timeout, 0 for infinity.
71 -timeout {
72 set procvar(timeout) $value
102 -proxy - -timeout - -progress {
161 # Check for a timeout. Method timeout override
[all...]
H A Dhttps.tcl34 timeout 0
41 timeout \
63 # -timeout - the method can override the transport defined http timeout.
64 # Set to {} to use the transport timeout, 0 for infinity.
71 -timeout {
72 set procvar(timeout) $value
99 -proxy - -timeout - -progress {
176 # Check for a timeout. Method timeout override
[all...]
/macosx-10.10/cups-408/cups/scheduler/
H A Dselect.c64 * int cupsdDoSelect(int timeout);
298 struct timespec timeout; /* Timeout value */ variable in typeref:struct:timespec
301 timeout.tv_sec = 0;
302 timeout.tv_nsec = 0;
311 if (kevent(cupsd_kqueue_fd, &event, 1, NULL, 0, &timeout))
326 if (kevent(cupsd_kqueue_fd, &event, 1, NULL, 0, &timeout))
405 cupsdDoSelect(long timeout) /* I - Timeout in seconds */
412 struct timespec ktimeout; /* kevent() timeout */
417 if (timeout >= 0 && timeout < 8640
[all...]
/macosx-10.10/BerkeleyDB-21/db/java/src/com/sleepycat/db/
H A DCompactStats.java22 CompactStats(int fillpercent, int timeout, int pages) { argument
24 this.compact_timeout = timeout;
/macosx-10.10/SmartcardCCID-55008/libusb/libusb/libusb/
H A Dsync.c62 * \param timeout timeout (in millseconds) that this function should wait
64 * timeout, use value 0.
74 unsigned char *data, uint16_t wLength, unsigned int timeout)
96 ctrl_transfer_cb, &completed, timeout);
158 int *transferred, unsigned int timeout, unsigned char type)
168 bulk_transfer_cb, &completed, timeout);
230 * Also check <tt>transferred</tt> when dealing with a timeout error code.
232 * underlying O/S requirements, meaning that the timeout may expire after
234 * that may have been transferred; do not assume that timeout condition
72 libusb_control_transfer(libusb_device_handle *dev_handle, uint8_t bmRequestType, uint8_t bRequest, uint16_t wValue, uint16_t wIndex, unsigned char *data, uint16_t wLength, unsigned int timeout) argument
156 do_sync_bulk_transfer(struct libusb_device_handle *dev_handle, unsigned char endpoint, unsigned char *buffer, int length, int *transferred, unsigned int timeout, unsigned char type) argument
258 libusb_bulk_transfer(struct libusb_device_handle *dev_handle, unsigned char endpoint, unsigned char *data, int length, int *transferred, unsigned int timeout) argument
307 libusb_interrupt_transfer( struct libusb_device_handle *dev_handle, unsigned char endpoint, unsigned char *data, int length, int *transferred, unsigned int timeout) argument
[all...]
/macosx-10.10/WebCore-7600.1.25/page/
H A DDOMTimer.h42 static int install(ScriptExecutionContext*, std::unique_ptr<ScheduledAction>, int timeout, bool singleShot);
60 double intervalClampedToMinimum(int timeout, double minimumTimerInterval) const;
/macosx-10.10/apr-32/apr/apr/network_io/beos/
H A Dsendrecv.c33 if (sock->timeout < 0) {
37 tv.tv_sec = sock->timeout / APR_USEC_PER_SEC;
38 tv.tv_usec = sock->timeout % APR_USEC_PER_SEC;
46 /* TODO - timeout should be smaller on repeats of this loop */
69 if (rv == -1 && errno == EWOULDBLOCK && sock->timeout > 0) {
79 /* have we passed our timeout value */
80 if (zzz > (sock->timeout * APR_USEC_PER_SEC))
103 if (rv == -1 && errno == EWOULDBLOCK && sock->timeout > 0) {
149 && sock->timeout != 0) {
190 sock->timeout !
[all...]
/macosx-10.10/curl-83.1.2/curl/docs/examples/
H A Dmulti-debugcallback.c148 struct timeval timeout; local
162 /* set a suitable timeout to play around with */
163 timeout.tv_sec = 1;
164 timeout.tv_usec = 0;
168 timeout.tv_sec = curl_timeo / 1000;
169 if(timeout.tv_sec > 1)
170 timeout.tv_sec = 1;
172 timeout.tv_usec = (curl_timeo % 1000) * 1000;
184 rc = select(maxfd+1, &fdread, &fdwrite, &fdexcep, &timeout);
194 /* timeout o
[all...]
/macosx-10.10/remote_cmds-47/talkd.tproj/
H A Dextern.h40 void timeout(int sig);
/macosx-10.10/ruby-106/ruby/ext/io/wait/
H A Dwait.c98 * io.wait(timeout) -> IO, true, false or nil
110 VALUE timeout; local
116 rb_scan_args(argc, argv, "01", &timeout);
117 if (NIL_P(timeout)) {
121 timerec = rb_time_interval(timeout);
139 * io.wait_writable(timeout) -> IO or nil
149 VALUE timeout; local
155 rb_scan_args(argc, argv, "01", &timeout);
156 if (NIL_P(timeout)) {
160 timerec = rb_time_interval(timeout);
[all...]

Completed in 296 milliseconds

1234567891011>>