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
Djvm-expected.patch2 < ParkThread start-monitor-wait NamedLock[Parking blocker object] timeout: 1
/art/test/961-default-iface-resolution-gen/
Drun18 ./default-run "$@" --dex2oat-timeout 120 --dex2oat-rt-timeout 180
/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/030-bad-finalizer/src/
DMain.java49 final long timeout = 100 * 1000 + VMRuntime.getRuntime().getFinalizerTimeoutMs(); in main() local
50 long remainingWait = timeout; in main()
60 remainingWait = timeout - (System.currentTimeMillis() - waitStart); in main()
/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/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.cc134 void RuntimeCallbacks::ObjectWaitStart(Handle<mirror::Object> m, int64_t timeout) { in ObjectWaitStart() argument
136 cb->ObjectWaitStart(m, timeout); in ObjectWaitStart()
140 void RuntimeCallbacks::MonitorWaitFinished(Monitor* m, bool timeout) { in MonitorWaitFinished() argument
142 cb->MonitorWaitFinished(m, timeout); in MonitorWaitFinished()
156 void RuntimeCallbacks::ThreadParkStart(bool is_absolute, int64_t timeout) { in ThreadParkStart() argument
158 cb->ThreadParkStart(is_absolute, timeout); in ThreadParkStart()
162 void RuntimeCallbacks::ThreadParkFinished(bool timeout) { in ThreadParkFinished() argument
164 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 …]
/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/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/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/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/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/tools/
Drun-libjdwp-tests.sh55 elif [[ $1 == --test-timeout-ms ]]; then
112 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/
Drun-test107 timeout=""
278 timeout="${timeout:-1800}"
426 timeout="$1"
564 if [ -n "$timeout" ]; then
565 run_args+=(--timeout "$timeout")
1036 --timeout=${timeout:-300}
/art/test/odsign/test-src/com/android/tests/odsign/
DCompOsTestUtils.java103 private void waitForJobExit(int timeout) throws Exception { in waitForJobExit() argument
104 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.
/art/test/testrunner/
Dtestrunner.py94 timeout = 3600 # 60 minutes variable
98 timeout = 36000 variable
168 def wait(self, proc, timeout): argument
183 output = proc.communicate(timeout=timeout)[0]
370 output = proc.communicate(timeout = timeout_val)[0]
683 script_output, return_value = child_process_tracker.wait(proc, timeout)
704 failed_tests.append((test_name, 'Timed out in %d seconds' % timeout))
729 return (test_name, 'TIMEOUT', 'Timed out in %d seconds\n%s' % (timeout, command), test_time)
1099 global timeout
1112 global_group.add_argument('--timeout', default=timeout, type=int, dest='timeout')
[all …]

12