Searched refs:timeout (Results 76 - 100 of 636) sorted by relevance

1234567891011>>

/external/dbus/dbus/
H A Ddbus-mainloop.h36 typedef void (* DBusTimeoutFunction) (DBusTimeout *timeout,
52 DBusTimeout *timeout,
57 DBusTimeout *timeout,
H A Ddbus-connection-internal.h32 #include <dbus/dbus-timeout.h>
44 /** default timeout value when waiting for a message reply, 25 seconds */
70 DBusTimeout *timeout);
72 DBusTimeout *timeout);
74 DBusTimeout *timeout,
H A Ddbus-server-protected.h30 #include <dbus/dbus-timeout.h>
104 DBusTimeout *timeout);
106 DBusTimeout *timeout);
108 DBusTimeout *timeout,
/external/dbus/test/
H A Dtest-utils.c42 connection_timeout_callback (DBusTimeout *timeout, argument
46 dbus_timeout_handle (timeout);
50 add_timeout (DBusTimeout *timeout, argument
56 timeout, connection_timeout_callback, cd, NULL);
60 remove_timeout (DBusTimeout *timeout, argument
66 timeout, connection_timeout_callback, cd);
187 _dbus_assert_not_reached ("setting timeout functions to NULL failed");
263 server_timeout_callback (DBusTimeout *timeout, argument
267 dbus_timeout_handle (timeout);
271 add_server_timeout (DBusTimeout *timeout, argument
281 remove_server_timeout(DBusTimeout *timeout, void *data) argument
[all...]
/external/guava/guava-bootstrap/src/java/util/concurrent/
H A DExecutorService.java25 boolean awaitTermination(long timeout, TimeUnit unit) argument
38 Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit)
45 Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit)
37 invokeAll( Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit) argument
44 invokeAny( Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit) argument
/external/iptables/extensions/
H A Dlibxt_IDLETIMER.c35 {.name = "timeout", .id = O_TIMEOUT, .type = XTTYPE_UINT32,
36 .flags = XTOPT_MAND | XTOPT_PUT, XTOPT_POINTER(s, timeout)},
49 " --timeout time Timeout until the notification is sent (in seconds)\n"
63 printf(" timeout:%u", info->timeout);
74 printf(" --timeout %u", info->timeout);
/external/junit/src/org/junit/internal/runners/
H A DTestMethod.java37 long timeout= annotation.timeout();
38 return timeout;
H A DMethodRoadie.java45 long timeout= fTestMethod.getTimeout();
46 if (timeout > 0)
47 runWithTimeout(timeout);
55 private void runWithTimeout(final long timeout) { argument
69 boolean terminated= service.awaitTermination(timeout,
75 addFailure(new Exception(String.format("test timed out after %d milliseconds", 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/wpa_supplicant_8/hostapd/src/ap/
H A Dwps_hostapd.h20 const char *uuid, const char *pin, int timeout);
29 const char * hostapd_wps_ap_pin_random(struct hostapd_data *hapd, int timeout);
32 int timeout);
/external/wpa_supplicant_8/src/ap/
H A Dwps_hostapd.h20 const char *uuid, const char *pin, int timeout);
29 const char * hostapd_wps_ap_pin_random(struct hostapd_data *hapd, int timeout);
32 int timeout);
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dwps_hostapd.h20 const char *uuid, const char *pin, int timeout);
29 const char * hostapd_wps_ap_pin_random(struct hostapd_data *hapd, int timeout);
32 int timeout);
/external/webkit/Source/WebKit2/Platform/CoreIPC/
H A DConnection.h143 template<typename T> bool sendSync(const T& message, const typename T::Reply& reply, uint64_t destinationID, double timeout = DefaultTimeout);
144 template<typename T> bool waitForAndDispatchImmediately(uint64_t destinationID, double timeout);
153 template<typename E, typename T, typename U> bool deprecatedSendSync(E messageID, uint64_t destinationID, const T& arguments, const U& reply, double timeout = NoTimeout);
154 template<typename E> PassOwnPtr<ArgumentDecoder> deprecatedWaitFor(E messageID, uint64_t destinationID, double timeout);
198 PassOwnPtr<ArgumentDecoder> waitForMessage(MessageID, uint64_t destinationID, double timeout);
200 PassOwnPtr<ArgumentDecoder> sendSyncMessage(MessageID, uint64_t syncRequestID, PassOwnPtr<ArgumentEncoder>, double timeout);
201 PassOwnPtr<ArgumentDecoder> waitForSyncReply(uint64_t syncRequestID, double timeout);
343 template<typename T> bool Connection::sendSync(const T& message, const typename T::Reply& reply, uint64_t destinationID, double timeout) argument
352 OwnPtr<ArgumentDecoder> replyDecoder = sendSyncMessage(MessageID(T::messageID), syncRequestID, argumentEncoder.release(), timeout);
360 template<typename T> bool Connection::waitForAndDispatchImmediately(uint64_t destinationID, double timeout) argument
374 deprecatedSendSync(E messageID, uint64_t destinationID, const T& arguments, const U& reply, double timeout) argument
400 deprecatedWaitFor(E messageID, uint64_t destinationID, double timeout) argument
[all...]
/external/chromium/chrome/browser/extensions/
H A Dextension_idle_api.cc46 static int CheckThresholdBounds(int timeout);
81 int CheckThresholdBounds(int timeout) { argument
82 if (timeout < kMinThreshold) return kMinThreshold;
83 if (timeout > kMaxThreshold) return kMaxThreshold;
84 return timeout;
/external/qemu/distrib/sdl-1.2.15/src/thread/irix/
H A DSDL_syssem.c142 int SDL_SemWaitTimeout(SDL_sem *sem, Uint32 timeout) argument
152 if ( timeout == 0 ) {
155 if ( timeout == SDL_MUTEX_MAXWAIT ) {
160 timeout += SDL_GetTicks();
167 } while ( SDL_GetTicks() < timeout );
/external/webkit/Source/WebCore/page/
H A DDOMTimer.cpp88 int DOMTimer::install(ScriptExecutionContext* context, PassOwnPtr<ScheduledAction> action, int timeout, bool singleShot) argument
93 DOMTimer* timer = new DOMTimer(context, action, timeout, singleShot);
95 InspectorInstrumentation::didInstallTimer(context, timer->m_timeoutId, timeout, singleShot);
102 // timeout IDs have to be positive, and 0 and -1 are unsafe to
187 double DOMTimer::intervalClampedToMinimum(int timeout, double minimumTimerInterval) const argument
189 double intervalMilliseconds = max(oneMillisecond, timeout * oneMillisecond);
/external/webkit/Source/WebKit/qt/tests/benchmarks/painting/
H A Dtst_painting.cpp30 * can return earlier on a timeout.
33 * \p false on timeout
35 static bool waitForSignal(QObject* obj, const char* signal, int timeout = 0)
40 QSignalSpy timeoutSpy(&timer, SIGNAL(timeout()));
41 if (timeout > 0) {
42 QObject::connect(&timer, SIGNAL(timeout()), &loop, SLOT(quit()));
44 timer.start(timeout);
/external/ppp/pppd/plugins/radius/
H A Dbuildreq.c64 int timeout, int retries)
69 data->timeout = timeout;
195 int timeout = rc_conf_int("radius_timeout"); local
224 authserver->port[i], timeout, retries);
253 int timeout = rc_conf_int("radius_timeout"); local
268 authserver->port[i], timeout, retries);
299 int timeout = rc_conf_int("radius_timeout"); local
337 acctserver->port[i], timeout, retries);
382 int timeout local
63 rc_buildreq(SEND_DATA *data, int code, char *server, unsigned short port, int timeout, int retries) argument
420 int timeout = rc_conf_int("radius_timeout"); local
[all...]
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
H A DSession.java332 * InputStreams. One can also specify a timeout. NOTE: do NOT call this
337 * @param timeout The (non-negative) timeout in <code>ms</code>. <code>0</code> means no
338 * timeout, the call may block forever.
342 * <li><code>-1</code> if a timeout occurred.</li>
348 public int waitUntilDataAvailable(long timeout) throws IOException argument
350 if (timeout < 0)
351 throw new IllegalArgumentException("timeout must not be negative!");
353 int conditions = cm.waitForCondition(cn, timeout, ChannelCondition.STDOUT_DATA | ChannelCondition.STDERR_DATA
376 * <li>timeout >
394 waitForCondition(int condition_set, long timeout) argument
[all...]
/external/guava/guava/src/com/google/common/util/concurrent/
H A DUninterruptibles.java34 * continues to block until the result is available or the timeout elapses,
43 // Implementation Note: As of 3-7-11, the logic for each blocking/timeout
71 * await(timeout, unit)} uninterruptibly.
74 long timeout, TimeUnit unit) {
77 long remainingNanos = unit.toNanos(timeout);
146 * {@code future.}{@link Future#get(long, TimeUnit) get(timeout, unit)}
154 Future<V> future, long timeout, TimeUnit unit)
158 long remainingNanos = unit.toNanos(timeout);
180 * timedJoin(toJoin, timeout)} uninterruptibly.
183 long timeout, TimeUni
73 awaitUninterruptibly(CountDownLatch latch, long timeout, TimeUnit unit) argument
153 getUninterruptibly( Future<V> future, long timeout, TimeUnit unit) argument
182 joinUninterruptibly(Thread toJoin, long timeout, TimeUnit unit) argument
[all...]
/external/qemu/distrib/sdl-1.2.15/test/
H A Dtestgamma.c83 Uint32 then, timeout; local
142 timeout = (5*1000);
143 while ( (SDL_GetTicks()-then) < timeout ) {
149 timeout = 0;
154 timeout += (5*1000);
165 timeout = 0;
/external/webkit/Tools/DumpRenderTree/chromium/
H A DTestShellMac.mm41 // pages timeout if they take too long and tells the test harness via stdout.
46 // |timeout| is in seconds
47 - (id)initWithTimeout:(NSTimeInterval)timeout;
54 - (id)initWithTimeout:(NSTimeInterval)timeout
57 _timeout = timeout;
84 // this as a timeout.
106 // timeout, it can't do anything except terminate the test
/external/chromium/third_party/libjingle/source/talk/base/
H A Dhttprequest.h76 int timeout() { return timeout_; } function in class:talk_base::HttpRequest
77 void set_timeout(int timeout) { timeout_ = timeout; } argument
/external/qemu/distrib/sdl-1.2.15/src/thread/win32/
H A DSDL_syssem.c87 int SDL_SemWaitTimeout(SDL_sem *sem, Uint32 timeout) argument
97 if ( timeout == SDL_MUTEX_MAXWAIT ) {
100 dwMilliseconds = (DWORD)timeout;
/external/chromium/third_party/libevent/
H A Devrpc-internal.h81 int timeout; member in struct:evrpc_pool

Completed in 474 milliseconds

1234567891011>>