Searched defs:timeout (Results 276 - 300 of 644) sorted by relevance

<<11121314151617181920>>

/external/libmicrohttpd/src/microspdy/
H A Ddaemon.c393 unsigned long long *timeout)
423 *timeout = 0;
425 *timeout = earliest_deadline - now;
459 || (daemon->session_timeout //timeout passed for the session
483 struct timeval timeout; local
486 timeout.tv_sec = 0;
487 timeout.tv_usec = 0;
494 num_ready = select (max + 1, &rs, &ws, &es, &timeout);
392 SPDYF_get_timeout(struct SPDY_Daemon *daemon, unsigned long long *timeout) argument
/external/libmicrohttpd/src/testcurl/
H A Dtest_post_loop.c320 unsigned long long timeout; local
397 if (MHD_NO == MHD_get_timeout (d, &timeout))
398 timeout = 100; /* 100ms == INFTY -- CURL bug... */
400 (ctimeout < timeout) && (ctimeout >= 0))
401 timeout = ctimeout;
403 timeout = 0; /* terminate quickly... */
404 tv.tv_sec = timeout / 1000;
405 tv.tv_usec = (timeout % 1000) * 1000;
/external/libmicrohttpd/src/testspdy/
H A Dtest_misc.c205 struct timeval timeout; local
241 timeout.tv_sec = 1;
242 timeout.tv_usec = 0;
246 timeout.tv_sec = timeoutlong / 1000;
247 timeout.tv_usec = (timeoutlong % 1000) * 1000;
255 ret = select(maxfd+1, &read_fd_set, &write_fd_set, &except_fd_set, &timeout);
H A Dtest_request_response_with_callback.c168 struct timeval timeout; local
204 timeout.tv_sec = 1;
205 timeout.tv_usec = 0;
209 timeout.tv_sec = timeoutlong / 1000;
210 timeout.tv_usec = (timeoutlong % 1000) * 1000;
218 ret = select(maxfd+1, &read_fd_set, &write_fd_set, &except_fd_set, &timeout);
/external/libmtp/src/
H A Dlibusb-glue.h59 int timeout; member in struct:_PTP_USB
77 void set_usb_device_timeout(PTP_USB *ptp_usb, int timeout);
78 void get_usb_device_timeout(PTP_USB *ptp_usb, int *timeout);
/external/libnfc-nci/halimpl/bcm2079x/hal/hal/
H A Dnfc_hal_main.c126 /* NFCC Enable timeout */
304 ** Description callback function for timeout
381 ** NOTE: The timeout resolution depends on including modules.
389 void nfc_hal_main_start_quick_timer (TIMER_LIST_ENT *p_tle, UINT16 type, UINT32 timeout) argument
415 p_tle->ticks = timeout; /* Save the number of ticks for the timer */
669 /* power cycle timeout */
/external/libnfc-nxp/Linux_x86/
H A DphDal4Nfc_uart.c267 static struct timeval timeval_remaining(struct timespec timeout) { argument
272 delta.tv_sec = timeout.tv_sec - now.tv_sec;
273 delta.tv_usec = (timeout.tv_nsec - now.tv_nsec) / (long)1000;
302 struct timespec timeout; local
310 // Read timeout:
311 // FW mode: 10s timeout
313 // >1 byte read: LLC payload, 100ms timeout (before pn544 re-transmit)
315 clock_gettime(CLOCK_MONOTONIC, &timeout);
316 timeout.tv_nsec += 100000000;
317 if (timeout
[all...]
/external/libnfc-nxp/src/
H A DphLibNfc.c146 NFCSTATUS phLibNfc_SetIsoXchgTimeout(uint8_t timeout) { argument
147 nxp_nfc_isoxchg_timeout = timeout;
176 NFCSTATUS phLibNfc_SetMifareRawTimeout(uint8_t timeout) { argument
177 nxp_nfc_mifareraw_timeout = timeout;
/external/libnl/lib/netfilter/
H A Dlog_obj.c152 void nfnl_log_set_flush_timeout(struct nfnl_log *log, uint32_t timeout) argument
154 log->log_flush_timeout = timeout;
/external/libpcap/
H A Dpcap-pf.c467 if (p->opt.timeout != 0) {
468 struct timeval timeout; local
469 timeout.tv_sec = p->opt.timeout / 1000;
470 timeout.tv_usec = (p->opt.timeout * 1000) % 1000000;
471 if (ioctl(p->fd, EIOCSRTIMEOUT, (caddr_t)&timeout) < 0) {
H A Dpcap-snf.c97 if (p->opt.timeout <= 0)
100 ps->snf_timeout = p->opt.timeout;
136 int nonblock, timeout; local
142 timeout = ps->snf_timeout;
156 err = snf_ring_recv(ps->snf_ring, timeout, &req);
163 timeout = 0;
187 * again for that timeout. */
188 if (timeout != 0)
189 timeout = 0;
291 if (p->opt.timeout <
[all...]
H A Dpcap-snit.c239 struct timeval timeout; local
256 if (p->opt.timeout != 0) {
257 timeout.tv_sec = p->opt.timeout / 1000;
258 timeout.tv_usec = (p->opt.timeout * 1000) % 1000000;
260 si.ic_len = sizeof(timeout);
261 si.ic_dp = (char *)&timeout;
/external/libvncserver/libvncclient/
H A Dtls_gnutls.c179 int timeout = 15; local
182 while (timeout > 0 && (ret = gnutls_handshake((gnutls_session_t)client->tlsSession)) < 0)
188 timeout--;
196 if (timeout <= 0)
198 rfbClientLog("TLS handshake timeout.\n");
/external/libweave/src/privet/
H A Dwifi_bootstrap_manager.cc118 void WifiBootstrapManager::StartMonitoring(const base::TimeDelta& timeout) { argument
120 ContinueMonitoring(timeout);
123 void WifiBootstrapManager::ContinueMonitoring(const base::TimeDelta& timeout) { argument
133 monitor_until_ = base::Time::Now() + timeout;
137 // Schedule timeout timer taking into account already offline time.
/external/mdnsresponder/mDNSPosix/
H A DPosixDaemon.c152 struct timeval timeout; local
166 timeout.tv_sec = ticks / mDNSPlatformOneSecond;
167 timeout.tv_usec = (ticks % mDNSPlatformOneSecond) * 1000000 / mDNSPlatformOneSecond;
169 (void) mDNSPosixRunEventLoopOnce(m, &timeout, &signals, &gotData);
H A DProxyResponder.c278 struct timeval timeout = { 0x3FFFFFFF, 0 }; // wait until SIGINT or SIGTERM local
280 mDNSPosixRunEventLoopOnce(&mDNSStorage, &timeout, &signals, &gotSomething);
/external/mesa3d/src/gallium/drivers/galahad/
H A Dglhd_screen.c318 uint64_t timeout)
325 timeout);
316 galahad_screen_fence_finish(struct pipe_screen *_screen, struct pipe_fence_handle *fence, uint64_t timeout) argument
/external/mesa3d/src/gallium/drivers/identity/
H A Did_screen.c235 uint64_t timeout)
242 timeout);
233 identity_screen_fence_finish(struct pipe_screen *_screen, struct pipe_fence_handle *fence, uint64_t timeout) argument
/external/mesa3d/src/gallium/drivers/r600/
H A Dr600_pipe.c105 /* Create a dummy BO so that fence_finish without a timeout can sleep waiting for completion */
733 uint64_t timeout)
740 if (timeout != PIPE_TIMEOUT_INFINITE) {
744 timeout /= 1000;
748 /* Special-case infinite timeout - wait for the dummy BO to become idle */
749 if (timeout == PIPE_TIMEOUT_INFINITE) {
766 if (timeout != PIPE_TIMEOUT_INFINITE &&
767 os_time_get() - start_time >= timeout) {
731 r600_fence_finish(struct pipe_screen *pscreen, struct pipe_fence_handle *fence, uint64_t timeout) argument
/external/mesa3d/src/gallium/drivers/radeonsi/
H A Dradeonsi_pipe.c122 /* Create a dummy BO so that fence_finish without a timeout can sleep waiting for completion */
547 uint64_t timeout)
554 if (timeout != PIPE_TIMEOUT_INFINITE) {
558 timeout /= 1000;
562 /* Special-case infinite timeout - wait for the dummy BO to become idle */
563 if (timeout == PIPE_TIMEOUT_INFINITE) {
580 if (timeout != PIPE_TIMEOUT_INFINITE &&
581 os_time_get() - start_time >= timeout) {
545 r600_fence_finish(struct pipe_screen *pscreen, struct pipe_fence_handle *fence, uint64_t timeout) argument
/external/mesa3d/src/gallium/drivers/rbug/
H A Drbug_screen.c233 uint64_t timeout)
240 timeout);
231 rbug_screen_fence_finish(struct pipe_screen *_screen, struct pipe_fence_handle *fence, uint64_t timeout) argument
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_screen.c472 uint64_t timeout)
470 svga_fence_finish(struct pipe_screen *screen, struct pipe_fence_handle *fence, uint64_t timeout) argument
/external/mesa3d/src/gallium/drivers/trace/
H A Dtr_screen.c377 uint64_t timeout)
387 trace_dump_arg(uint, timeout);
389 result = screen->fence_finish(screen, fence, timeout);
375 trace_screen_fence_finish(struct pipe_screen *_screen, struct pipe_fence_handle *fence, uint64_t timeout) argument
/external/mesa3d/src/gallium/state_trackers/xa/
H A Dxa_context.c368 xa_fence_wait(struct xa_fence *fence, uint64_t timeout) argument
377 timed_out = !screen->fence_finish(screen, fence->pipe_fence, timeout);
/external/mockito/src/org/mockito/
H A DMockito.java52 * <a href="#22">22. Verification with timeout (Since 1.8.5) </a><br/>
772 * <h3 id="22">22. <a class="meaningful_link" href="#verification_timeout">Verification with timeout</a> (Since 1.8.5)</h3>
774 * Allows verifying with timeout. It causes a verify to wait for a specified period of time for a desired
786 * verify(mock, timeout(100)).someMethod();
788 * verify(mock, timeout(100).times(1)).someMethod();
791 * verify(mock, timeout(100).times(2)).someMethod();
794 * verify(mock, timeout(100).atLeast(2)).someMethod();
2047 * Allows verifying with timeout. It causes a verify to wait for a specified period of time for a desired
2056 * verify(mock, timeout(100)).someMethod();
2058 * verify(mock, timeout(10
2077 public static VerificationWithTimeout timeout(int millis) { method in class:Mockito
[all...]

Completed in 6115 milliseconds

<<11121314151617181920>>