Home
last modified time | relevance | path

Searched refs:exe (Results 1 – 11 of 11) sorted by relevance

/art/test/1930-monitor-info/src/art/
DMonitors.java129 private volatile Throwable exe; field in Monitors.LockController
138 this.exe = null; in LockController()
151 if (exe != null) { in checkException()
152 throw new TestException("Exception thrown by other thread!", exe); in checkException()
237 runner.setUncaughtExceptionHandler((t, e) -> { exe = e; }); in DoLock()
340 exe = null; in DoCleanup()
/art/test/1934-jvmti-signal-thread/src/art/
DMonitors.java129 private volatile Throwable exe; field in Monitors.LockController
138 this.exe = null; in LockController()
151 if (exe != null) { in checkException()
152 throw new TestException("Exception thrown by other thread!", exe); in checkException()
237 runner.setUncaughtExceptionHandler((t, e) -> { exe = e; }); in DoLock()
340 exe = null; in DoCleanup()
/art/test/1931-monitor-events/src/art/
DMonitors.java129 private volatile Throwable exe; field in Monitors.LockController
138 this.exe = null; in LockController()
151 if (exe != null) { in checkException()
152 throw new TestException("Exception thrown by other thread!", exe); in checkException()
237 runner.setUncaughtExceptionHandler((t, e) -> { exe = e; }); in DoLock()
340 exe = null; in DoCleanup()
/art/test/jvmti-common/
DMonitors.java129 private volatile Throwable exe; field in Monitors.LockController
138 this.exe = null; in LockController()
151 if (exe != null) { in checkException()
152 throw new TestException("Exception thrown by other thread!", exe); in checkException()
237 runner.setUncaughtExceptionHandler((t, e) -> { exe = e; }); in DoLock()
340 exe = null; in DoCleanup()
/art/test/1933-monitor-current-contended/src/art/
DMonitors.java129 private volatile Throwable exe; field in Monitors.LockController
138 this.exe = null; in LockController()
151 if (exe != null) { in checkException()
152 throw new TestException("Exception thrown by other thread!", exe); in checkException()
237 runner.setUncaughtExceptionHandler((t, e) -> { exe = e; }); in DoLock()
340 exe = null; in DoCleanup()
/art/test/1932-monitor-events-misc/src/art/
DMonitors.java129 private volatile Throwable exe; field in Monitors.LockController
138 this.exe = null; in LockController()
151 if (exe != null) { in checkException()
152 throw new TestException("Exception thrown by other thread!", exe); in checkException()
237 runner.setUncaughtExceptionHandler((t, e) -> { exe = e; }); in DoLock()
340 exe = null; in DoCleanup()
/art/tools/compiler-explorer/config/
Dandroid-java.local.properties11 compiler.android-java-d8-local.exe={{compilersDir}}/d8-local/r8.jar
20 compiler.android-java-dex2oat-local.exe={{compilersDir}}/dex2oat-local/x86_64/bin/dex2oat64
Dandroid-kotlin.local.properties11 compiler.android-kotlin-d8-local.exe={{compilersDir}}/d8-local/r8.jar
20 compiler.android-kotlin-dex2oat-local.exe={{compilersDir}}/dex2oat-local/x86_64/bin/dex2oat64
Djava.local.properties21 compiler.java-local.exe={{compilersDir}}/java-local/bin/javac
Dkotlin.local.properties22 compiler.kotlinc-local.exe={{compilersDir}}/kotlinc-local/bin/kotlinc-jvm
/art/libarttools/
Dtools.cc226 std::string exe; in EnsureNoProcessInDir() local
227 if (!Readlink(ART_FORMAT("/proc/{}/exe", pid), &exe)) { in EnsureNoProcessInDir()
233 if (PathStartsWith(exe, dir)) { in EnsureNoProcessInDir()