HomeSort by relevance Sort by last modified time
    Searched refs:timeout (Results 1 - 25 of 2927) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
2003-11-04-OutOfMemory.c 3 void schedule_timeout(signed long timeout)
5 switch (timeout)
  /art/test/961-default-iface-resolution-gen/
run 17 # Run with a 2 minute default dex2oat timeout and a 2.5 minute hard dex2oat timeout.
18 ./default-run "$@" --dex2oat-timeout 120 --dex2oat-rt-timeout 180
  /device/generic/opengl-transport/host/libs/virglrenderer/include/android/
sync.h 20 int sync_wait(int fd, int timeout);
  /device/generic/opengl-transport/host/libs/virglrenderer/include/sync/
sync.h 20 int sync_wait(int fd, int timeout);
  /external/swiftshader/include/Android/android/
sync.h 20 int sync_wait(int fd, int timeout);
  /external/swiftshader/include/Android/sync/
sync.h 20 int sync_wait(int fd, int timeout);
  /device/generic/goldfish-opengl/fuchsia/include/sync/
sync.h 6 int sync_wait(int fd, int timeout);
  /external/jemalloc/test/src/
mq.c 17 struct timespec timeout; local
20 timeout.tv_sec = 0;
21 timeout.tv_nsec = ns;
23 timeout.tv_sec = 1;
24 timeout.tv_nsec = 0;
26 nanosleep(&timeout, NULL);
  /external/jemalloc_new/test/src/
mq.c 15 struct timespec timeout; local
18 timeout.tv_sec = 0;
19 timeout.tv_nsec = ns;
21 timeout.tv_sec = 1;
22 timeout.tv_nsec = 0;
24 nanosleep(&timeout, NULL);
  /external/junit/src/main/java/org/junit/runners/model/
TestTimedOutException.java 6 * Exception thrown when a test fails on timeout.
16 private final long timeout; field in class:TestTimedOutException
19 * Creates exception with a standard message "test timed out after [timeout] [timeUnit]"
21 * @param timeout the amount of time passed before the test was interrupted
22 * @param timeUnit the time unit for the timeout value
24 public TestTimedOutException(long timeout, TimeUnit timeUnit) {
26 timeout, timeUnit.name().toLowerCase()));
28 this.timeout = timeout;
35 return timeout;
    [all...]
  /external/linux-kselftest/tools/testing/selftests/ftrace/test.d/ftrace/
func_stack_tracer.tc 16 timeout=10
17 while [ $timeout -ne 0 ]; do
21 timeout=$((timeout - 1))
32 timeout=10
33 while [ $timeout -ne 0 ]; do
37 timeout=$((timeout - 1))
  /external/nist-sip/java/javax/sip/
TimeoutEvent.java 4 private Timeout mTimeout;
7 Timeout timeout) {
9 mTimeout = timeout;
13 Timeout timeout) {
15 mTimeout = timeout;
18 public Timeout getTimeout() {
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
PollingCheck.java 34 public PollingCheck(long timeout) {
35 mTimeout = timeout;
45 long timeout = mTimeout; local
46 while (timeout > 0) {
57 timeout -= TIME_SLICE;
60 Assert.fail("unexpected timeout");
63 public static void check(CharSequence message, long timeout, Callable<Boolean> condition)
65 while (timeout > 0) {
71 timeout -= TIME_SLICE;
86 public static void waitFor(long timeout, final PollingCheckCondition condition)
    [all...]
CtsMockitoUtils.java 23 public static VerificationMode within(long timeout) {
24 return new Within(timeout);
  /cts/common/device-side/util-axt/src/com/android/compatibility/common/util/
PollingCheck.java 34 public PollingCheck(long timeout) {
35 mTimeout = timeout;
45 long timeout = mTimeout; local
46 while (timeout > 0) {
57 timeout -= TIME_SLICE;
60 Assert.fail("unexpected timeout");
63 public static void check(CharSequence message, long timeout, Callable<Boolean> condition)
65 while (timeout > 0) {
71 timeout -= TIME_SLICE;
86 public static void waitFor(long timeout, final PollingCheckCondition condition)
    [all...]
CtsMockitoUtils.java 23 public static VerificationMode within(long timeout) {
24 return new Within(timeout);
  /external/u-boot/drivers/misc/
fsl_sec_mon.c 19 int timeout = 10; local
35 while (timeout) {
43 timeout--;
46 if (timeout == 0) {
47 printf("SEC_MON state transition timeout.\n");
64 while (timeout) {
72 timeout--;
75 if (timeout == 0) {
76 printf("SEC_MON state transition timeout.\n");
80 timeout = 10
120 int timeout = 10; local
    [all...]
  /external/webrtc/webrtc/base/
gunit.h 22 // Wait until "ex" is true, or "timeout" expires.
23 #define WAIT(ex, timeout) \
24 for (uint32_t start = rtc::Time(); !(ex) && rtc::Time() < start + timeout;) \
30 #define WAIT_(ex, timeout, res) \
34 while (!res && rtc::Time() < start + timeout) { \
40 // The typical EXPECT_XXXX and ASSERT_XXXXs, but done until true or a timeout.
41 #define EXPECT_TRUE_WAIT(ex, timeout) \
44 WAIT_(ex, timeout, res); \
48 #define EXPECT_EQ_WAIT(v1, v2, timeout) \
51 WAIT_(v1 == v2, timeout, res);
    [all...]
  /external/okhttp/okio/okio/src/test/java/okio/
AsyncTimeoutTest.java 37 private final List<Timeout> timedOut = new CopyOnWriteArrayList<Timeout>();
44 a.timeout( 250, TimeUnit.MILLISECONDS);
45 b.timeout( 500, TimeUnit.MILLISECONDS);
46 c.timeout( 750, TimeUnit.MILLISECONDS);
47 d.timeout(1000, TimeUnit.MILLISECONDS);
51 AsyncTimeout timeout = new RecordingAsyncTimeout(); local
52 timeout.timeout(0, TimeUnit.MILLISECONDS);
53 timeout.enter()
135 RecordingAsyncTimeout timeout = new RecordingAsyncTimeout(); local
144 RecordingAsyncTimeout timeout = new RecordingAsyncTimeout(); local
154 RecordingAsyncTimeout timeout = new RecordingAsyncTimeout(); local
164 RecordingAsyncTimeout timeout = new RecordingAsyncTimeout(); local
174 RecordingAsyncTimeout timeout = new RecordingAsyncTimeout(); local
192 AsyncTimeout timeout = new AsyncTimeout(); local
213 AsyncTimeout timeout = new AsyncTimeout(); local
234 AsyncTimeout timeout = new AsyncTimeout(); local
252 AsyncTimeout timeout = new AsyncTimeout(); local
    [all...]
  /external/ltp/lib/newlib_tests/
test10.c 17 * Test for watchdog timeout.
31 .timeout = 1,
test12.c 17 * Test for timeout override.
29 .timeout = 2,
  /external/toolchain-utils/cros_utils/
command_executer_unittest.py 16 timeout = 1
21 ce.RunCommand(command, command_timeout=timeout, terminated_timeout=timeout)
23 self.assertTrue(round(end - start) == timeout)
  /external/junit/src/main/java/org/junit/rules/
Timeout.java 10 * The Timeout Rule applies the same timeout to all test methods in a class:
15 * public Timeout globalTimeout= new Timeout(20);
29 * Each test is run in a new thread. If the specified timeout elapses before
34 * A specified timeout of 0 will be interpreted as not set, however tests will
40 public class Timeout implements TestRule {
41 private final long timeout; field in class:Timeout
54 * Create a {@code Timeout} instance with the timeout specifie
    [all...]
  /external/ksoap2/ksoap2-j2se/src/main/java/org/ksoap2/transport/
KeepAliveHttpsTransportSE.java 29 public KeepAliveHttpsTransportSE(String host, int port, String file, int timeout) {
30 super(host, port, file, timeout);
45 new HttpsServiceConnectionSEIgnoringConnectionClose(host, port, file, timeout);
  /external/strace/tests/
rt_sigtimedwait.c 46 const struct timespec *const timeout, const unsigned long size)
48 return syscall(__NR_rt_sigtimedwait, set, info, timeout, size);
53 const struct timespec *const timeout, unsigned int size)
56 assert(k_sigtimedwait(set, NULL, timeout, size) == -1);
61 (long long) timeout->tv_sec,
62 zero_extend_signed_to_ull(timeout->tv_nsec),
69 set, (long long) timeout->tv_sec,
70 zero_extend_signed_to_ull(timeout->tv_nsec),
76 text, (long long) timeout->tv_sec,
77 zero_extend_signed_to_ull(timeout->tv_nsec)
    [all...]

Completed in 904 milliseconds

1 2 3 4 5 6 7 8 91011>>