/art/test/1931-monitor-events/ |
D | expected.txt | 5 Locker thread 2 for NamedLock[Lock testWait] start-monitor-wait NamedLock[Lock testWait] timeout: 0 8 …for NamedLock[Lock testTimedWait] start-monitor-wait NamedLock[Lock testTimedWait] timeout: 3600000 10 Testing monitor timed with timeout. 12 …k[Lock testTimedWaitTimeout] start-monitor-wait NamedLock[Lock testTimedWaitTimeout] timeout: 10000 14 Wait finished with timeout. 16 Unlocked wait thread: start-monitor-wait NamedLock[Lock testUnlockedWait] timeout: 0 19 Waiting with an illegal argument (negative timeout) 20 …or NamedLock[Lock testIllegalWait] start-monitor-wait NamedLock[Lock testIllegalWait] timeout: -100 25 …for NamedLock[Lock testInteruptWait] start-monitor-wait NamedLock[Lock testInteruptWait] timeout: 0
|
/art/test/961-default-iface-resolution-gen/ |
D | run | 18 ./default-run "$@" --dex2oat-timeout 120 --dex2oat-rt-timeout 180
|
/art/tools/dexfuzz/src/dexfuzz/executors/ |
D | Executor.java | 36 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/ |
D | Main.java | 46 final long timeout = 60 * 1000; // 1 minute. in main() local 47 long remainingWait = timeout; in main() 56 remainingWait = timeout - (System.currentTimeMillis() - waitStart); in main()
|
/art/tools/ |
D | run-libjdwp-tests.sh | 38 elif [[ $1 == --test-timeout-ms ]]; then 70 args+=(--test-timeout-ms)
|
D | run-jdwp-tests.sh | 98 elif [[ $1 == --test-timeout-ms ]]; then 313 --timeout 800 \ 315 --vm-arg -Djpda.settings.timeout=$jdwp_test_timeout \
|
D | setup-buildbot-device.sh | 79 timeout 2s adb shell "ps"
|
/art/test/1932-monitor-events-misc/src/art/ |
D | Test1932.java | 28 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() 234 @Override public void handleMonitorWait(Thread thd, Object l, long timeout) { in testWaitMonitorEnter() 262 @Override public void handleMonitorWaited(Thread thd, Object l, boolean timeout) { in testWaitExitInterleaving() 289 @Override public void handleMonitorWaited(Thread thd, Object l, boolean timeout) { in testWaitEnterInterleaving() 331 @Override public void handleMonitorWait(Thread thd, Object l, long timeout) { in testMonitorInfoInEvents() 334 @Override public void handleMonitorWaited(Thread thd, Object l, boolean timeout) { in testMonitorInfoInEvents() 360 @Override public void handleMonitorWaited(Thread thd, Object l, boolean timeout) { in testThrowWaitedInterrupt() 384 @Override public void handleMonitorWaited(Thread thd, Object l, boolean timeout) { in testThrowWaitedTimeout() 408 @Override public void handleMonitorWaited(Thread thd, Object l, boolean timeout) { in testThrowWaited() [all …]
|
D | Monitors.java | 123 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/ |
D | common.py | 140 def RunCommandForOutput(cmd, env, stdout, stderr, timeout=60): argument 159 (output, stderr_output) = proc.communicate(timeout=timeout) 184 def RunCommand(cmd, out, err, timeout=5): argument 203 (_, _, retcode) = RunCommandForOutput(cmd, None, outf, errf, timeout) 288 timeout=60, x64=False): argument 299 self._timeout = timeout 373 timeout=60, specific_device=None): argument 384 self._timeout = timeout
|
/art/test/1932-monitor-events-misc/ |
D | expected.txt | 28 …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/ |
D | Monitors.java | 123 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()
|
D | Test1931.java | 47 public static void handleMonitorWait(Thread thd, Object lock, long timeout) { in handleMonitorWait() argument 48 System.out.println(thd.getName() + " start-monitor-wait " + lock + " timeout: " + timeout); in handleMonitorWait()
|
/art/runtime/jdwp/ |
D | jdwp_adb.cc | 233 struct timeval timeout; in Accept() local 234 timeout.tv_sec = kControlSockSendTimeout; in Accept() 235 timeout.tv_usec = 0; in Accept() 236 setsockopt(sock, SOL_SOCKET, SO_SNDTIMEO, &timeout, sizeof(timeout)); in Accept()
|
/art/test/1933-monitor-current-contended/src/art/ |
D | Monitors.java | 123 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/ |
D | Monitors.java | 123 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/ |
D | Monitors.java | 123 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/ |
D | runtime_callbacks.cc | 134 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()
|
/art/tools/jfuzz/ |
D | run_dex_fuzz_test.py | 117 out=None, err='jerr.txt', timeout=30) != RetCode.SUCCESS: 123 out=None, err='dxerr.txt', timeout=30) != RetCode.SUCCESS: 135 timeout=30) != RetCode.SUCCESS:
|
D | run_jfuzz_test.py | 137 out=None, err=None, timeout=30) == RetCode.SUCCESS: 140 out=None, err='dxerr.txt', timeout=30) 145 out=None, err='jackerr.txt', timeout=30) 173 out=None, err=None, timeout=30) == RetCode.SUCCESS: 589 err=errfile_path, timeout=300) == RetCode.TIMEOUT:
|
/art/test/522-checker-regression-monitor-exit/ |
D | info.txt | 3 If monitor-exit is removed, the following threads will get stuck and timeout.
|
/art/test/testrunner/ |
D | testrunner.py | 67 timeout = 3000 # 50 minutes variable 285 output = proc.communicate(timeout = 2)[0] 559 script_output = proc.communicate(timeout=timeout)[0] 577 failed_tests.append((test_name, 'Timed out in %d seconds' % timeout)) 579 timeout, command)) 924 global timeout 931 parser.add_argument('--timeout', default=timeout, type=int, dest='timeout') 989 timeout = options['timeout']
|
/art/tools/bisection_search/ |
D | README.md | 44 [--timeout TIMEOUT] [--verbose] 69 --timeout TIMEOUT if timeout seconds pass assume test failed
|
/art/test/ti-agent/ |
D | monitors_helper.cc | 113 jlong timeout) { in monitorWaitCB() argument 122 jnienv->CallStaticVoidMethod(data->test_klass, data->monitor_wait, thr, obj, timeout); in monitorWaitCB()
|
/art/runtime/base/ |
D | mutex-inl.h | 41 static inline int futex(volatile int *uaddr, int op, int val, const struct timespec *timeout, in futex() argument 43 return syscall(SYS_futex, uaddr, op, val, timeout, uaddr2, val3); in futex()
|