HomeSort by relevance Sort by last modified time
    Searched defs:Timeout (Results 1 - 25 of 94) sorted by null

1 2 3 4

  /external/nist-sip/java/javax/sip/
Timeout.java 3 public enum Timeout {
  /external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/
exception.py 38 class Timeout(DNSException):
resolver.py 40 # The definition of the Timeout exception has moved from here to the
41 # dns.exception module. We keep dns.resolver.Timeout defined for
44 Timeout = dns.exception.Timeout
257 @ivar timeout: The number of seconds to wait for a response from a
259 @type timeout: float
261 answer to the question. If the lifetime expires, a Timeout exception
309 self.timeout = 2.0
533 raise Timeout
541 raise Timeout
    [all...]
  /external/junit/src/org/junit/rules/
Timeout.java 11 * The Timeout Rule applies the same timeout to all test methods in a class:
18 * public MethodRule globalTimeout= new Timeout(20);
36 public class Timeout implements TestRule {
40 * @param millis the millisecond timeout
42 public Timeout(int millis) {
  /system/connectivity/shill/
result_aggregator.cc 32 timeout_callback_(base::Bind(&ResultAggregator::Timeout,
62 void ResultAggregator::Timeout() {
shill_ares.cc 68 struct timeval* Ares::Timeout(ares_channel channel,
  /frameworks/base/libs/hwui/
Readback.h 31 Timeout = 2,
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/testcase/
Timeout.java 20 * This class holds the remaining timeout value.
22 public class Timeout {
27 * Initialize timeout value.
30 public Timeout(long msec) {
35 * Return true if the timeout has already expired.
43 * Return the remaining timeout value.
  /external/chromium-trace/catapult/common/py_utils/py_utils/
__init__.py 63 # Decorator that adds timeout functionality to a function.
64 def Timeout(default_timeout):
67 # Note: Even though the "timeout" keyword argument is the only
78 if 'timeout' in kwargs:
79 timeout = kwargs['timeout']
81 timeout = default_timeout
83 return timeout_retry.Run(func, timeout, 0, args=args)
  /external/mockito/src/org/mockito/verification/
Timeout.java 16 * Typically, you won't use this class explicitly. Instead use timeout() method on Mockito class.
19 public class Timeout implements VerificationWithTimeout {
26 * Typically, you won't use this class explicitly. Instead use timeout() method on Mockito class.
29 public Timeout(int millis, VerificationMode delegate) {
36 Timeout(int treshhold, int millis, VerificationMode delegate) {
51 return new Timeout(impl.getTreshhold(), impl.getTimeout(), VerificationModeFactory.atLeast(minNumberOfInvocations));
58 return new Timeout(impl.getTreshhold(), impl.getTimeout(), VerificationModeFactory.atLeastOnce());
73 return new Timeout(impl.getTreshhold(), impl.getTimeout(), VerificationModeFactory.times(0));
80 return new Timeout(impl.getTreshhold(), impl.getTimeout(), VerificationModeFactory.only());
87 return new Timeout(impl.getTreshhold(), impl.getTimeout(), VerificationModeFactory.times(wantedNumberOfInvocations));
    [all...]
  /external/okhttp/okio/okio/src/main/java/okio/
Timeout.java 30 * This class offers two complementary controls to define a timeout policy.
42 public class Timeout {
44 * An empty timeout that neither tracks nor detects timeouts. Use this when
48 public static final Timeout NONE = new Timeout() {
49 @Override public Timeout timeout(long timeout, TimeUnit unit) {
53 @Override public Timeout deadlineNanoTime(long deadlineNanoTime) {
69 public Timeout() {
80 public Timeout timeout(long timeout, TimeUnit unit) { method in class:Timeout
    [all...]
  /frameworks/base/libs/common_time/
utils.h 29 class Timeout {
31 Timeout() : mSystemEndTime(0) { }
33 // Set a timeout which should occur msec milliseconds from now.
34 // Negative values will cancel any current timeout;
37 // Return the number of milliseconds until the timeout occurs, or -1 if
38 // no timeout is scheduled.
43 // The systemTime() at which the timeout will be complete, or 0 if no
44 // timeout is currently scheduled.
  /external/avahi/avahi-sharp/
HostNameResolver.cs 71 public event EventHandler Timeout
AddressResolver.cs 94 public event EventHandler Timeout
ServiceResolver.cs 84 public event EventHandler Timeout
ClientException.cs 42 Timeout = -15,
  /external/chromium-trace/catapult/third_party/typ/typ/
json_results.py 24 Timeout = 'Timeout'
28 values = (Pass, Failure, ImageOnlyFailure, Timeout, Crash, Skip)
  /external/llvm/tools/bugpoint/
BugDriver.h 57 unsigned Timeout;
67 unsigned timeout, unsigned memlimit, bool use_valgrind,
  /development/tools/axl/
axl.py 196 class Timeout(BaseProtocol):
244 Timeout, SlowResponse:
  /device/google/contexthub/util/nanotool/
contexthub.h 196 Timeout,
251 * read, no event traffic is generated for the timeout period, or an error
  /external/jetty/src/java/org/eclipse/jetty/util/thread/
Timeout.java 26 /** Timeout queue.
27 * This class implements a timeout queue for timers that are at least as likely to be cancelled as they are to expire.
28 * Unlike the util timeout class, the duration of the timeouts is shared by all scheduled tasks and if the duration
34 public class Timeout
36 private static final Logger LOG = Log.getLogger(Timeout.class);
43 public Timeout()
50 public Timeout(Object lock)
165 * @param delay A delay in addition to the default duration of the timeout
248 * timeout expires.
257 Timeout _timeout
333 Timeout timeout = _timeout; local
344 Timeout timeout = _timeout; local
    [all...]
  /frameworks/base/core/java/android/text/method/
MultiTapKeyListener.java 123 new Timeout(content); // for its side effects
131 new Timeout(content); // for its side effects
147 new Timeout(content); // for its side effects
213 new Timeout(content); // for its side effects
215 // Set up the callback so we can remove the timeout if the
243 Timeout[] timeout = buf.getSpans(0, buf.length(), Timeout.class); local
245 for (int i = 0; i < timeout.length; i++) {
246 Timeout t = timeout[i]
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
wct.h 54 LARGE_INTEGER Timeout;
  /external/libchrome/dbus/
bus.cc 96 // The class is used for monitoring the timeout used for D-Bus method
99 // Unlike Watch, Timeout is a ref counted object, to ensure that |this| of
104 class Timeout : public base::RefCountedThreadSafe<Timeout> {
106 explicit Timeout(DBusTimeout* timeout)
107 : raw_timeout_(timeout),
114 // Returns true if the timeout is ready to be monitored.
119 // Starts monitoring the timeout.
123 base::Bind(&Timeout::HandleTimeout, this)
1056 Timeout* timeout = new Timeout(raw_timeout); local
1067 Timeout* timeout = static_cast<Timeout*>(dbus_timeout_get_data(raw_timeout)); local
1075 Timeout* timeout = static_cast<Timeout*>(dbus_timeout_get_data(raw_timeout)); local
    [all...]
  /bionic/libc/kernel/uapi/linux/
cciss_defs.h 116 HWORD Timeout;

Completed in 639 milliseconds

1 2 3 4