Home
last modified time | relevance | path

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

12

/art/test/1931-monitor-events/
Dexpected.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()
59 remainingWait = timeout - (System.currentTimeMillis() - waitStart); in main()
/art/runtime/
Druntime_callbacks.cc154 void RuntimeCallbacks::ObjectWaitStart(Handle<mirror::Object> m, int64_t timeout) { in ObjectWaitStart() argument
156 cb->ObjectWaitStart(m, timeout); in ObjectWaitStart()
160 void RuntimeCallbacks::MonitorWaitFinished(Monitor* m, bool timeout) { in MonitorWaitFinished() argument
162 cb->MonitorWaitFinished(m, timeout); in MonitorWaitFinished()
176 void RuntimeCallbacks::ThreadParkStart(bool is_absolute, int64_t timeout) { in ThreadParkStart() argument
178 cb->ThreadParkStart(is_absolute, timeout); in ThreadParkStart()
182 void RuntimeCallbacks::ThreadParkFinished(bool timeout) { in ThreadParkFinished() argument
184 cb->ThreadParkFinished(timeout); in ThreadParkFinished()
/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()
235 @Override public void handleMonitorWait(Thread thd, Object l, long timeout) { in testWaitMonitorEnter()
267 @Override public void handleMonitorWaited(Thread thd, Object l, boolean timeout) { in testWaitExitInterleaving()
295 @Override public void handleMonitorWaited(Thread thd, Object l, boolean timeout) { in testWaitEnterInterleaving()
338 @Override public void handleMonitorWait(Thread thd, Object l, long timeout) { in testMonitorInfoInEvents()
341 @Override public void handleMonitorWaited(Thread thd, Object l, boolean timeout) { in testMonitorInfoInEvents()
368 @Override public void handleMonitorWaited(Thread thd, Object l, boolean timeout) { in testThrowWaitedInterrupt()
392 @Override public void handleMonitorWaited(Thread thd, Object l, boolean timeout) { in testThrowWaitedTimeout()
416 @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/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.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/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/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/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/tools/
Drun-libjdwp-tests.sh54 elif [[ $1 == --test-timeout-ms ]]; then
108 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/test/1336-short-finalizer-timeout/
Dexpected.txt1 Finalizer timeout = 500 msecs.
DAndroid.bp3 name: "art-run-test-1336-short-finalizer-timeout",
/art/test/522-checker-regression-monitor-exit/
Dinfo.txt3 If monitor-exit is removed, the following threads will get stuck and timeout.
/art/test/
Drun-test164 timeout=""
326 timeout="${timeout:-1800}"
471 timeout="$1"
609 if [ -n "$timeout" ]; then
610 run_args+=(--timeout "$timeout")
1128 --timeout=${timeout:-300}
/art/tools/bisection_search/
DREADME.md44 [--timeout TIMEOUT] [--verbose]
69 --timeout TIMEOUT if timeout seconds pass assume test failed
/art/test/testrunner/
Dtestrunner.py93 timeout = 3600 # 60 minutes variable
310 output = proc.communicate(timeout = 2)[0]
612 script_output = proc.communicate(timeout=timeout)[0]
633 failed_tests.append((test_name, 'Timed out in %d seconds' % timeout))
658 return (test_name, 'TIMEOUT', 'Timed out in %d seconds\n%s' % (timeout, command), test_time)
1023 global timeout
1035 global_group.add_argument('--timeout', default=timeout, type=int, dest='timeout')
1133 timeout = options['timeout']
/art/tools/jfuzz/
Drun_dex_fuzz_test.py116 out=None, err='jerr.txt', timeout=30) != RetCode.SUCCESS:
122 out=None, err='dxerr.txt', timeout=30) != RetCode.SUCCESS:
/art/test/ti-agent/
Dmonitors_helper.cc113 jlong timeout) { in monitorWaitCB() argument
122 jnienv->CallStaticVoidMethod(data->test_klass, data->monitor_wait, thr, obj, timeout); in monitorWaitCB()

12