Home
last modified time | relevance | path

Searched refs:timeout (Results 1 – 25 of 50) sorted by relevance

12

/art/test/1336-short-finalizer-timeout/
DAndroid.bp3 // Build rules for ART run-test `1336-short-finalizer-timeout`.
16 name: "art-run-test-1336-short-finalizer-timeout",
21 ":art-run-test-1336-short-finalizer-timeout-expected-stdout",
22 ":art-run-test-1336-short-finalizer-timeout-expected-stderr",
28 name: "art-run-test-1336-short-finalizer-timeout-expected-stdout",
29 out: ["art-run-test-1336-short-finalizer-timeout-expected-stdout.txt"],
36 name: "art-run-test-1336-short-finalizer-timeout-expected-stderr",
37 out: ["art-run-test-1336-short-finalizer-timeout-expected-stderr.txt"],
Dexpected-stdout.txt1 Finalizer timeout = 500 msecs.
/art/test/1931-monitor-events/
Dexpected-stdout.txt5 ParkThread start-monitor-wait NamedLock[Parking blocker object] timeout: 1
8 Locker thread 2 for NamedLock[Lock testWait] start-monitor-wait NamedLock[Lock testWait] timeout: 0
11 …for NamedLock[Lock testTimedWait] start-monitor-wait NamedLock[Lock testTimedWait] timeout: 3600000
13 Testing monitor timed with timeout.
15 …k[Lock testTimedWaitTimeout] start-monitor-wait NamedLock[Lock testTimedWaitTimeout] timeout: 10000
17 Wait finished with timeout.
19 Unlocked wait thread: start-monitor-wait NamedLock[Lock testUnlockedWait] timeout: 0
22 Waiting with an illegal argument (negative timeout)
23 …or NamedLock[Lock testIllegalWait] start-monitor-wait NamedLock[Lock testIllegalWait] timeout: -100
28 …for NamedLock[Lock testInteruptWait] start-monitor-wait NamedLock[Lock testInteruptWait] timeout: 0
Dexpected-stdout.jvm.txt6 Locker thread 2 for NamedLock[Lock testWait] start-monitor-wait NamedLock[Lock testWait] timeout: 0
9 …for NamedLock[Lock testTimedWait] start-monitor-wait NamedLock[Lock testTimedWait] timeout: 3600000
11 Testing monitor timed with timeout.
13 …k[Lock testTimedWaitTimeout] start-monitor-wait NamedLock[Lock testTimedWaitTimeout] timeout: 10000
15 Wait finished with timeout.
17 Unlocked wait thread: start-monitor-wait NamedLock[Lock testUnlockedWait] timeout: 0
20 Waiting with an illegal argument (negative timeout)
21 …or NamedLock[Lock testIllegalWait] start-monitor-wait NamedLock[Lock testIllegalWait] timeout: -100
26 …for NamedLock[Lock testInteruptWait] start-monitor-wait NamedLock[Lock testInteruptWait] timeout: 0
/art/tools/dexfuzz/src/dexfuzz/executors/
DExecutor.java36 protected int timeout; field in Executor
44 protected Executor(String name, int timeout, BaseListener listener, Architecture architecture, in Executor() argument
49 this.timeout = 2; in Executor()
51 this.timeout = timeout; in Executor()
77 String timeoutString = "timeout " + timeout + " "; in executeCommandWithTimeout()
/art/test/2041-bad-cleaner/src/
DMain.java51 final long timeout = 100 * 1000 + 5 * VMRuntime.getRuntime().getFinalizerTimeoutMs(); in main() local
52 long remainingWait = timeout; in main()
62 remainingWait = timeout - (System.currentTimeMillis() - waitStart); in main()
/art/test/2261-badcleaner-in-systemcleaner/src-art/
DMain.java52 final long timeout = 100 * 1000 + VMRuntime.getRuntime().getFinalizerTimeoutMs(); in main() local
53 long remainingWait = timeout; in main()
63 remainingWait = timeout - (System.currentTimeMillis() - waitStart); in main()
/art/test/030-bad-finalizer/src/
DMain.java51 final long timeout = 100 * 1000 + VMRuntime.getRuntime().getFinalizerTimeoutMs(); in main() local
52 long remainingWait = timeout; in main()
62 remainingWait = timeout - (System.currentTimeMillis() - waitStart); in main()
/art/test/2048-bad-native-registry/src/
DMain.java65 final long timeout = 150 * 1000 + 5 * VMRuntime.getRuntime().getFinalizerTimeoutMs(); in main() local
66 long remainingWait = timeout; in main()
76 remainingWait = timeout - (System.currentTimeMillis() - waitStart); in main()
/art/test/1932-monitor-events-misc/src/art/
DTest1932.java28 public default void handleMonitorWait(Thread thd, Object lock, long timeout) {} in handleMonitorWait() argument
203 @Override public void handleMonitorWaited(Thread thd, Object l, boolean timeout) { in testWaitedMonitorEnter()
237 @Override public void handleMonitorWait(Thread thd, Object l, long timeout) { in testWaitMonitorEnter()
271 @Override public void handleMonitorWaited(Thread thd, Object l, boolean timeout) { in testWaitExitInterleaving()
301 @Override public void handleMonitorWaited(Thread thd, Object l, boolean timeout) { in testWaitEnterInterleaving()
344 @Override public void handleMonitorWait(Thread thd, Object l, long timeout) { in testMonitorInfoInEvents()
347 @Override public void handleMonitorWaited(Thread thd, Object l, boolean timeout) { in testMonitorInfoInEvents()
374 @Override public void handleMonitorWaited(Thread thd, Object l, boolean timeout) { in testThrowWaitedInterrupt()
398 @Override public void handleMonitorWaited(Thread thd, Object l, boolean timeout) { in testThrowWaitedTimeout()
422 @Override public void handleMonitorWaited(Thread thd, Object l, boolean timeout) { in testThrowWaited()
[all …]
DMonitors.java123 public final long timeout; field in Monitors.LockController
134 public LockController(NamedLock lock, long timeout) { in LockController() argument
136 this.timeout = timeout; in LockController()
214 lock.DoWait(timeout); in DoLock()
/art/runtime/
Druntime_callbacks.cc174 void RuntimeCallbacks::ObjectWaitStart(Handle<mirror::Object> m, int64_t timeout) { in ObjectWaitStart() argument
176 cb->ObjectWaitStart(m, timeout); in ObjectWaitStart()
180 void RuntimeCallbacks::MonitorWaitFinished(Monitor* m, bool timeout) { in MonitorWaitFinished() argument
182 cb->MonitorWaitFinished(m, timeout); in MonitorWaitFinished()
196 void RuntimeCallbacks::ThreadParkStart(bool is_absolute, int64_t timeout) { in ThreadParkStart() argument
198 cb->ThreadParkStart(is_absolute, timeout); in ThreadParkStart()
202 void RuntimeCallbacks::ThreadParkFinished(bool timeout) { in ThreadParkFinished() argument
204 cb->ThreadParkFinished(timeout); in ThreadParkFinished()
/art/tools/common/
Dcommon.py132 def RunCommandForOutput(cmd, env, stdout, stderr, timeout=60): argument
151 (output, stderr_output) = proc.communicate(timeout=timeout)
176 def RunCommand(cmd, out, err, timeout=5): argument
195 (_, _, retcode) = RunCommandForOutput(cmd, None, outf, errf, timeout)
280 timeout=60, x64=False): argument
291 self._timeout = timeout
371 timeout=60, specific_device=None): argument
382 self._timeout = timeout
/art/test/1932-monitor-events-misc/
Dexpected-stdout.txt28 …ead 8 for NamedLock[Lock testThrowWait] start-monitor-wait NamedLock[Lock testThrowWait] timeout: 0
34 …Lock testThrowIllegalWait] start-monitor-wait NamedLock[Lock testThrowIllegalWait] timeout: -100000
35 Throwing exception in MonitorWait timeout = -100000
40 …0 for NamedLock[Lock testThrowWaited] start-monitor-wait NamedLock[Lock testThrowWaited] timeout: 0
46 Testing throwing exception in MonitorWaited event caused by timeout
47 …ock testThrowWaitedTimeout] start-monitor-wait NamedLock[Lock testThrowWaitedTimeout] timeout: 5000
54 …ck testThrowWaitedInterrupt] start-monitor-wait NamedLock[Lock testThrowWaitedInterrupt] timeout: 0
65 …Lock testMonitorInfoInEvents] start-monitor-wait NamedLock[Lock testMonitorInfoInEvents] timeout: 0
70 … testWaitEnterInterleaving] start-monitor-wait NamedLock[test testWaitEnterInterleaving] timeout: 0
75 …dLock[test testWaitMonitorEnter] start-monitor-wait NamedLock[test testWaitMonitorEnter] timeout: 0
[all …]
Dexpected-stdout.jvm.txt28 …ead 8 for NamedLock[Lock testThrowWait] start-monitor-wait NamedLock[Lock testThrowWait] timeout: 0
35 …Lock testThrowIllegalWait] start-monitor-wait NamedLock[Lock testThrowIllegalWait] timeout: -100000
36 Throwing exception in MonitorWait timeout = -100000
41 …0 for NamedLock[Lock testThrowWaited] start-monitor-wait NamedLock[Lock testThrowWaited] timeout: 0
47 Testing throwing exception in MonitorWaited event caused by timeout
48 …ock testThrowWaitedTimeout] start-monitor-wait NamedLock[Lock testThrowWaitedTimeout] timeout: 5000
55 …ck testThrowWaitedInterrupt] start-monitor-wait NamedLock[Lock testThrowWaitedInterrupt] timeout: 0
66 …Lock testMonitorInfoInEvents] start-monitor-wait NamedLock[Lock testMonitorInfoInEvents] timeout: 0
71 … testWaitEnterInterleaving] start-monitor-wait NamedLock[test testWaitEnterInterleaving] timeout: 0
76 …dLock[test testWaitMonitorEnter] start-monitor-wait NamedLock[test testWaitMonitorEnter] timeout: 0
[all …]
/art/test/1930-monitor-info/src/art/
DMonitors.java123 public final long timeout; field in Monitors.LockController
134 public LockController(NamedLock lock, long timeout) { in LockController() argument
136 this.timeout = timeout; in LockController()
214 lock.DoWait(timeout); in DoLock()
/art/test/1934-jvmti-signal-thread/src/art/
DMonitors.java123 public final long timeout; field in Monitors.LockController
134 public LockController(NamedLock lock, long timeout) { in LockController() argument
136 this.timeout = timeout; in LockController()
214 lock.DoWait(timeout); in DoLock()
/art/test/1931-monitor-events/src/art/
DMonitors.java123 public final long timeout; field in Monitors.LockController
134 public LockController(NamedLock lock, long timeout) { in LockController() argument
136 this.timeout = timeout; in LockController()
214 lock.DoWait(timeout); in DoLock()
/art/test/jvmti-common/
DMonitors.java123 public final long timeout; field in Monitors.LockController
134 public LockController(NamedLock lock, long timeout) { in LockController() argument
136 this.timeout = timeout; in LockController()
214 lock.DoWait(timeout); in DoLock()
/art/test/1933-monitor-current-contended/src/art/
DMonitors.java123 public final long timeout; field in Monitors.LockController
134 public LockController(NamedLock lock, long timeout) { in LockController() argument
136 this.timeout = timeout; in LockController()
214 lock.DoWait(timeout); in DoLock()
/art/tools/
Drun-libjdwp-tests.sh56 elif [[ $1 == --test-timeout-ms ]]; then
129 args+=(--test-timeout-ms)
Drun-jdwp-tests.sh163 elif [[ $1 == --test-timeout-ms ]]; then
433 --timeout 800 \
435 --vm-arg -Djpda.settings.timeout=$jdwp_test_timeout \
/art/runtime/base/
Dmessage_queue.h142 int64_t timeout = static_cast<int64_t>(deadline_milliseconds_.value() - current_time); in ReceiveMessage() local
143 cv_.TimedWait(self, timeout, /*ns=*/0); in ReceiveMessage()
/art/test/odsign/test-src/com/android/tests/odsign/
DCompOsTestUtils.java100 private void waitForJobExit(int timeout) throws Exception { in waitForJobExit() argument
101 for (int i = 0; i < timeout; i++) { in waitForJobExit()
/art/test/522-checker-regression-monitor-exit/
Dinfo.txt3 If monitor-exit is removed, the following threads will get stuck and timeout.

12