Searched refs:timeout (Results 251 - 275 of 1120) sorted by relevance

<<11121314151617181920>>

/macosx-10.10.1/IONetworkingFamily-101/
H A DIOKernelDebugger.h37 @param timeout The amount of time to poll in milliseconds while waiting
43 UInt32 timeout );
136 @param timeout The amount of time to poll in milliseconds while waiting
142 UInt32 timeout);
206 UInt32 timeout );
/macosx-10.10.1/WebKit2-7600.1.25/Shared/
H A DChildProcessProxy.h51 template<typename T> bool sendSync(T&& message, typename T::Reply&&, uint64_t destinationID, std::chrono::milliseconds timeout = std::chrono::seconds(1));
108 bool ChildProcessProxy::sendSync(U&& message, typename U::Reply&& reply, uint64_t destinationID, std::chrono::milliseconds timeout) argument
115 return connection()->sendSync(std::forward<U>(message), WTF::move(reply), destinationID, timeout);
/macosx-10.10.1/apr-32/apr/apr/include/
H A Dapr_poll.h248 * @param timeout The amount of time in microseconds to wait. This is a
250 * function will return before this time. If timeout is
263 * and timeout will return immediately with the wrong error code.
266 apr_interval_time_t timeout,
283 * @param timeout The amount of time in microseconds to wait. This is a
285 * function will return before this time. If timeout is
290 * descriptor has been signalled or the timeout has expired.
294 * and timeout will return immediately with the wrong error code.
298 apr_interval_time_t timeout);
390 * @param timeout Th
[all...]
/macosx-10.10.1/apr-32/apr/apr/poll/unix/
H A Dselect.c34 apr_interval_time_t timeout)
51 if (timeout > 0) {
52 apr_sleep(timeout);
59 if (timeout < 0) {
63 tv.tv_sec = (long) apr_time_sec(timeout);
64 tv.tv_usec = (long) apr_time_usec(timeout);
340 apr_interval_time_t timeout,
357 if (timeout > 0) {
358 apr_sleep(timeout);
365 if (timeout <
339 impl_pollset_poll(apr_pollset_t *pollset, apr_interval_time_t timeout, apr_int32_t *num, const apr_pollfd_t **descriptors) argument
[all...]
/macosx-10.10.1/curl-83.1.2/curl/docs/examples/
H A Dftpuploadresume.c84 long timeout, long tries)
101 if (timeout)
102 curl_easy_setopt(curlhandle, CURLOPT_FTP_RESPONSE_TIMEOUT, timeout);
83 upload(CURL *curlhandle, const char * remotepath, const char * localpath, long timeout, long tries) argument
H A Dmulti-uv.c44 uv_timer_t timeout; variable
107 uv_timer_stop(&timeout);
149 uv_timer_start(&timeout, on_timeout, timeout_ms, 0);
199 uv_timer_init(loop, &timeout);
/macosx-10.10.1/apache-793/httpd/modules/dav/lock/
H A Dlocks.c109 time_t timeout; member in struct:dav_lock_discovery_fixed
133 time_t timeout; member in struct:dav_lock_indirect
419 * dav_generic_lock_expired: return 1 (true) if the given timeout is in the
515 memcpy(ptr, &ip->timeout, sizeof(ip->timeout));
516 ptr += sizeof(ip->timeout);
626 if (!dav_generic_lock_expired(dp->f.timeout)) {
641 memcpy(&ip->timeout, val.dptr + offset, sizeof(ip->timeout));
642 offset += sizeof(ip->timeout);
[all...]
/macosx-10.10.1/AppleUSBIrDA-145.2.4/IrDA/Utils/
H A DCTimer.h35 static void timeout(OSObject *owner, IrDATimerEventSource *sender);
/macosx-10.10.1/BerkeleyDB-21/db/db/
H A Ddb_cds.c25 __P((DB_TXN *txn, db_timeout_t timeout, u_int32_t flags));
110 static int __cdsgroup_set_timeout(txn, timeout, flags)
112 db_timeout_t timeout;
115 COMPQUIET(timeout, 0);
/macosx-10.10.1/BerkeleyDB-21/db/test/scr016/src/com/sleepycat/db/test/
H A DRepmgrStartupTest.java108 @Test (timeout=3000) public void startMaster()
129 @Test (timeout=3000) public void startClient()
150 @Test (timeout=3000) public void startElection()
171 @Test (timeout=15000) public void startMasterWaitBeforeShutdown()
/macosx-10.10.1/Security-57031.1.35/Security/sec/SOSCircle/CloudKeychainProxy/
H A DCKDUserInteraction.m100 CFTimeInterval timeout = 30.0;
118 _userNotificationRef = CFUserNotificationCreate(kCFAllocatorDefault, timeout, flags, &error, notifyDictionary);
/macosx-10.10.1/SmartcardCCID-55008/ccid/ccid/src/
H A Dcommands.h42 unsigned char RxBuffer[], unsigned int *RxLength, unsigned int timeout);
/macosx-10.10.1/SmartcardCCID-55008/libusb/libusb/libusb/
H A Dlibusb.h898 * timeout. */
899 unsigned int timeout; member in struct:libusb_transfer
1115 * \param timeout timeout for the transfer in milliseconds
1120 unsigned int timeout)
1126 transfer->timeout = timeout;
1146 * \param timeout timeout for the transfer in milliseconds
1151 void *user_data, unsigned int timeout)
1117 libusb_fill_control_transfer( struct libusb_transfer *transfer, libusb_device_handle *dev_handle, unsigned char *buffer, libusb_transfer_cb_fn callback, void *user_data, unsigned int timeout) argument
1148 libusb_fill_bulk_transfer(struct libusb_transfer *transfer, libusb_device_handle *dev_handle, unsigned char endpoint, unsigned char *buffer, int length, libusb_transfer_cb_fn callback, void *user_data, unsigned int timeout) argument
1176 libusb_fill_interrupt_transfer( struct libusb_transfer *transfer, libusb_device_handle *dev_handle, unsigned char endpoint, unsigned char *buffer, int length, libusb_transfer_cb_fn callback, void *user_data, unsigned int timeout) argument
1205 libusb_fill_iso_transfer(struct libusb_transfer *transfer, libusb_device_handle *dev_handle, unsigned char endpoint, unsigned char *buffer, int length, int num_iso_packets, libusb_transfer_cb_fn callback, void *user_data, unsigned int timeout) argument
[all...]
/macosx-10.10.1/apache-793/httpd/modules/cache/
H A Dmod_cache_disk.h55 apr_time_t timeout; /* Max time to set aside */ member in struct:disk_cache_object
/macosx-10.10.1/apr-32/apr/apr/include/arch/os2/
H A Dapr_arch_networkio.h44 apr_interval_time_t timeout; member in struct:apr_socket_t
53 /* if there is a timeout set, then this pollset is used */
/macosx-10.10.1/apr-32/apr-util/apr-util/include/
H A Dapr_memcache.h288 * @param timeout time in seconds for the data to live on the server
295 apr_uint32_t timeout,
304 * @param timeout time for the data to live on the server
313 apr_uint32_t timeout,
322 * @param timeout time for the data to live on the server
331 apr_uint32_t timeout,
337 * @param timeout time for the delete to stop other clients from adding
341 apr_uint32_t timeout);
/macosx-10.10.1/cups-408/cups/cups/
H A Dgetdevices.c32 * devices to the specified callback function. The "timeout" parameter controls
43 int timeout, /* I - Timeout in seconds or @code CUPS_TIMEOUT_DEFAULT@ */
68 DEBUG_printf(("cupsGetDevices(http=%p, timeout=%d, include_schemes=\"%s\", "
70 timeout, include_schemes, exclude_schemes, callback,
88 if (timeout > 0)
89 ippAddInteger(request, IPP_TAG_OPERATION, IPP_TAG_INTEGER, "timeout",
90 timeout);
41 cupsGetDevices( http_t *http, int timeout, const char *include_schemes, const char *exclude_schemes, cups_device_cb_t callback, void *user_data) argument
/macosx-10.10.1/dtrace-147/
H A Ddtrace_dyld.cpp52 CSCppTimeoutLock lock(connection->lock_addr(), connection->timeout());
/macosx-10.10.1/dtrace-147/test/tst/i386/pid/
H A Dtst.nop.d136 timeout = timestamp + 5000000000;
140 /timestamp > timeout/
/macosx-10.10.1/mDNSResponder-561.1.1/mDNSPosix/
H A DPosixDaemon.c143 struct timeval timeout; local
157 timeout.tv_sec = ticks / mDNSPlatformOneSecond;
158 timeout.tv_usec = (ticks % mDNSPlatformOneSecond) * 1000000 / mDNSPlatformOneSecond;
160 (void) mDNSPosixRunEventLoopOnce(m, &timeout, &signals, &gotData);
H A DmDNSPosix.h66 // The timeout pointer MUST NOT be NULL.
67 // Set timeout->tv_sec to 0x3FFFFFFF if you want to have effectively no timeout
68 // After calling mDNSPosixGetFDSet(), call select(nfds, &readfds, NULL, NULL, &timeout); as usual
70 extern void mDNSPosixGetFDSet(mDNS *m, int *nfds, fd_set *readfds, struct timeval *timeout);
/macosx-10.10.1/passwordserver_sasl-193/cyrus_sasl/saslauthd/
H A Dcache.h146 unsigned int timeout; member in struct:stats
/macosx-10.10.1/postfix-255/postfix/src/tls/
H A Dtls_scache.h28 int timeout; /* smtp(d)_tls_session_cache_timeout */ member in struct:__anon11619
/macosx-10.10.1/ppp-786.1.1/Authenticators/Radius/
H A Dradlib_private.h88 int timeout; /* Timeout in seconds */ member in struct:rad_server
/macosx-10.10.1/ruby-106/ruby/test/io/nonblock/
H A Dtest_flush.rb2 require 'timeout'
26 timeout(10) {

Completed in 205 milliseconds

<<11121314151617181920>>