Searched defs:timeout (Results 226 - 250 of 644) sorted by relevance

1234567891011>>

/external/autotest/site_utils/suite_scheduler/
H A Dtask.py187 timeout = klass.TIMEOUT
191 timeout = None
230 priority, timeout,
266 boards=None, priority=None, timeout=None, file_bugs=False,
330 @param timeout: The max lifetime of the suite in hours.
353 self._timeout = timeout
505 def timeout(self): member in class:Task
/external/avahi/avahi-client/
H A Dclient-test.c173 static void test_free_domain_browser(AVAHI_GCC_UNUSED AvahiTimeout *timeout, void* userdata) argument
180 static void test_free_entry_group (AVAHI_GCC_UNUSED AvahiTimeout *timeout, void* userdata) argument
187 static void test_entry_group_reset (AVAHI_GCC_UNUSED AvahiTimeout *timeout, void* userdata) argument
199 static void test_entry_group_update(AVAHI_GCC_UNUSED AvahiTimeout *timeout, void* userdata) { argument
207 static void terminate(AVAHI_GCC_UNUSED AvahiTimeout *timeout, AVAHI_GCC_UNUSED void *userdata) { argument
/external/avahi/avahi-common/
H A Ddbus-watch-glue.c223 static void update_timeout(TimeoutData *timeout) { argument
224 assert(timeout);
225 assert(timeout->ref >= 1);
227 if (dbus_timeout_get_enabled(timeout->dbus_timeout)) {
229 avahi_elapse_time(&tv, dbus_timeout_get_interval(timeout->dbus_timeout), 0);
230 timeout->poll_api->timeout_update(timeout->
233 timeout->poll_api->timeout_update(timeout->avahi_timeout, NULL);
238 TimeoutData *timeout local
255 TimeoutData *timeout; local
288 TimeoutData *timeout; local
301 TimeoutData *timeout; local
[all...]
/external/avahi/avahi-core/
H A Davahi-test.c50 static void quit_timeout_callback(AVAHI_GCC_UNUSED AvahiTimeout *timeout, void* userdata) { argument
60 static void dump_timeout_callback(AvahiTimeout *timeout, void* userdata) { argument
67 poll_api->timeout_update(timeout, &tv);
/external/avahi/avahi-glib/
H A Dglib-watch.c255 static gboolean prepare_func(GSource *source, gint *timeout) { argument
260 g_assert(timeout);
280 *timeout = 0;
284 *timeout = (gint) (usec / 1000);
286 *timeout = -1;
/external/caliper/caliper/src/main/java/com/google/caliper/runner/
H A DStreamService.java194 StreamItem readItem(long timeout, TimeUnit unit) throws InterruptedException { argument
196 StreamItem line = outputQueue.poll(timeout, unit);
/external/chromium-trace/catapult/telemetry/telemetry/internal/platform/
H A Dtracing_controller_backend.py39 def __init__(self, config, timeout):
42 self._timeout = timeout
53 def timeout(self): member in class:_TracingState
68 def StartTracing(self, config, timeout):
75 self._current_state = _TracingState(config, timeout)
87 self.StartAgentTracing(config, timeout)
90 if agent.StartAgentTracing(config, timeout):
138 self._current_state.timeout,
149 def StartAgentTracing(self, config, timeout):
158 del timeout # unuse
[all...]
/external/clang/test/Analysis/
H A Darray-struct.c118 void f13(double timeout) { argument
120 a.e.d = (int) timeout;
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_libdispatch_mac.cc202 dispatch_time_t timeout) {
203 SCOPED_TSAN_INTERCEPTOR(dispatch_semaphore_wait, dsema, timeout);
204 long_t result = REAL(dispatch_semaphore_wait)(dsema, timeout);
210 dispatch_time_t timeout) {
211 SCOPED_TSAN_INTERCEPTOR(dispatch_group_wait, group, timeout);
212 long_t result = REAL(dispatch_group_wait)(group, timeout);
201 TSAN_INTERCEPTOR(long_t, dispatch_semaphore_wait, dispatch_semaphore_t dsema, dispatch_time_t timeout) argument
209 TSAN_INTERCEPTOR(long_t, dispatch_group_wait, dispatch_group_t group, dispatch_time_t timeout) argument
/external/conscrypt/src/main/java/org/conscrypt/
H A DOpenSSLSocketImplWrapper.java43 public void connect(SocketAddress sockaddr, int timeout) argument
/external/curl/docs/examples/
H A Dfopen.c129 struct timeval timeout; local
148 /* set a suitable timeout to fail on */
149 timeout.tv_sec = 60; /* 1 minute */
150 timeout.tv_usec = 0;
154 timeout.tv_sec = curl_timeo / 1000;
155 if(timeout.tv_sec > 1)
156 timeout.tv_sec = 1;
158 timeout.tv_usec = (curl_timeo % 1000) * 1000;
187 /* Note that on some platforms 'timeout' may be modified by select().
189 rc = select(maxfd+1, &fdread, &fdwrite, &fdexcep, &timeout);
[all...]
H A Dhttp2-upload.c275 struct timeval timeout; local
290 /* set a suitable timeout to play around with */
291 timeout.tv_sec = 1;
292 timeout.tv_usec = 0;
296 timeout.tv_sec = curl_timeo / 1000;
297 if(timeout.tv_sec > 1)
298 timeout.tv_sec = 1;
300 timeout.tv_usec = (curl_timeo % 1000) * 1000;
329 /* Note that on some platforms 'timeout' may be modified by select().
331 rc = select(maxfd+1, &fdread, &fdwrite, &fdexcep, &timeout);
[all...]
H A Dmulti-uv.c44 uv_timer_t timeout; variable
138 uv_timer_stop(&timeout);
166 uv_timer_start(&timeout, on_timeout, timeout_ms, 0);
216 uv_timer_init(loop, &timeout);
/external/curl/lib/
H A Dsocks.c66 /* we already got the timeout */
378 long timeout; local
390 /* get timeout */
391 timeout = Curl_timeleft(data, NULL, TRUE);
393 if(timeout < 0) {
402 result = Curl_socket_ready(CURL_SOCKET_BAD, sock, timeout);
409 failf(conn->data, "SOCKS5: connection timeout");
441 result = Curl_socket_ready(sock, CURL_SOCKET_BAD, timeout);
448 failf(conn->data, "SOCKS5 read timeout");
/external/curl/tests/libtest/
H A Dlib1900.c173 long timeout; local
223 curl_multi_timeout(m, &timeout);
225 if(timeout < 0)
226 timeout = 1;
228 interval.tv_sec = timeout / 1000;
229 interval.tv_usec = (timeout % 1000) * 1000;
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...]
/external/dbus/bus/
H A Dexpirelist.c29 #include <dbus/dbus-timeout.h>
34 DBusTimeout *timeout; member in struct:BusExpireList
60 list->timeout = _dbus_timeout_new (100, /* irrelevant */
63 if (list->timeout == NULL)
66 _dbus_timeout_set_enabled (list->timeout, FALSE);
68 if (!_dbus_loop_add_timeout (list->loop, list->timeout))
74 if (list->timeout)
75 _dbus_timeout_unref (list->timeout);
87 _dbus_loop_remove_timeout (list->loop, list->timeout);
89 _dbus_timeout_unref (list->timeout);
95 bus_expire_timeout_set_interval(DBusTimeout *timeout, int next_interval) argument
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fSyncTests.cpp66 FenceSyncCase (Context& context, const char* name, const char* description, int numPrimitives, deUint32 waitCommand, deUint32 waitFlags, deUint64 timeout, deUint32 options);
89 FenceSyncCase::FenceSyncCase (Context& context, const char* name, const char* description, int numPrimitives, deUint32 waitCommand, deUint32 waitFlags, deUint64 timeout, deUint32 options) argument
95 , m_timeout (timeout)
/external/dhcpcd-6.8.2/
H A Deloop.c273 /* Remove existing timeout if present */
299 /* The timeout list should be in chronological order,
527 int timeout; local
567 timeout = -1;
571 timeout = INT_MAX;
573 timeout = (int)(tsp->tv_sec * 1000 +
581 n = epoll_pwait(ctx->poll_fd, &epe, 1, timeout,
584 n = epoll_wait(ctx->poll_fd, &epe, 1, timeout);
591 n = poll(ctx->fds, (nfds_t)ctx->events_len, timeout);
/external/e2fsprogs/misc/
H A Duuidd.c48 "[-T timeout]\n"), progname);
229 int debug, int timeout, int quiet)
337 if (timeout > 0)
338 alarm(timeout);
453 int timeout = 0, quiet = 0, drop_privs = 0; local
495 timeout = strtol(optarg, &tmp, 0);
496 if ((timeout < 0) || *tmp) {
596 server_loop(socket_path, pidfile_path, debug, timeout, quiet);
228 server_loop(const char *socket_path, const char *pidfile_path, int debug, int timeout, int quiet) argument
/external/guava/guava/src/com/google/common/util/concurrent/
H A DAbstractFuture.java94 public V get(long timeout, TimeUnit unit) throws InterruptedException, argument
96 return sync.get(unit.toNanos(timeout));
260 * Blocks until the task is complete or the timeout expires. Throws a
267 // Attempt to acquire the shared lock with a timeout.
H A DAbstractScheduledService.java371 @Override public final void awaitRunning(long timeout, TimeUnit unit) throws TimeoutException { argument
372 delegate.awaitRunning(timeout, unit);
385 @Override public final void awaitTerminated(long timeout, TimeUnit unit) throws TimeoutException { argument
386 delegate.awaitTerminated(timeout, unit);
H A DAbstractService.java235 @Override public final void awaitRunning(long timeout, TimeUnit unit) throws TimeoutException { argument
236 if (monitor.enterWhenUninterruptibly(hasReachedRunning, timeout, unit)) {
244 // timed out. e.g. if we weren't event able to grab the lock within the timeout we would never
261 @Override public final void awaitTerminated(long timeout, TimeUnit unit) throws TimeoutException { argument
262 if (monitor.enterWhenUninterruptibly(isStopped, timeout, unit)) {
270 // timed out. e.g. if we weren't event able to grab the lock within the timeout we would never
H A DServiceManager.java110 * } catch (TimeoutException timeout) {
309 * @param timeout the maximum time to wait
310 * @param unit the time unit of the timeout argument
315 public void awaitHealthy(long timeout, TimeUnit unit) throws TimeoutException { argument
316 state.awaitHealthy(timeout, unit);
346 * @param timeout the maximum time to wait
347 * @param unit the time unit of the timeout argument
350 public void awaitStopped(long timeout, TimeUnit unit) throws TimeoutException { argument
351 state.awaitStopped(timeout, unit);
541 void awaitHealthy(long timeout, TimeUni argument
560 awaitStopped(long timeout, TimeUnit unit) argument
[all...]
/external/guava/guava-tests/benchmark/com/google/common/util/concurrent/
H A DMonitorBasedArrayBlockingQueue.java287 public boolean offer(E e, long timeout, TimeUnit unit) argument
292 if (monitor.enterWhen(notFull, timeout, unit)) {
330 public E poll(long timeout, TimeUnit unit) throws InterruptedException { argument
332 if (monitor.enterWhen(notEmpty, timeout, unit)) {

Completed in 571 milliseconds

1234567891011>>