/art/test/088-monitor-verification/src/ |
D | Main.java | 265 } catch (Throwable exc) { in runTest() 267 System.out.println("Did not expect exception " + exc + " for " + className); in runTest() 268 exc.printStackTrace(System.out); in runTest() 269 } else if (exc instanceof InvocationTargetException && exc.getCause() != null && in runTest() 270 exc.getCause().getClass().equals(excType)) { in runTest() 272 } else if (!excType.equals(exc.getClass())) { in runTest() 273 System.out.println("Expected " + excType.getName() + ", but got " + exc.getClass()); in runTest()
|
/art/test/570-checker-osr/src/ |
D | DeoptimizationController.java | 55 } catch (Exception exc) { in startDeoptimization() 56 exc.printStackTrace(System.out); in startDeoptimization() 70 } catch (Exception exc) { in stopDeoptimization() 71 exc.printStackTrace(System.out); in stopDeoptimization()
|
/art/test/802-deoptimization/src/ |
D | DeoptimizationController.java | 52 } catch (Exception exc) { in startDeoptimization() 53 exc.printStackTrace(System.out); in startDeoptimization() 67 } catch (Exception exc) { in stopDeoptimization() 68 exc.printStackTrace(System.out); in stopDeoptimization()
|
/art/test/800-smali/src/ |
D | Main.java | 192 } catch (Exception exc) { in runTests() 193 exc.printStackTrace(System.out); in runTests() 242 } catch (Throwable exc) { in runTest() 244 errorReturn = new IllegalStateException("Did not expect exception", exc); in runTest() 245 } else if (exc instanceof InvocationTargetException && exc.getCause() != null && in runTest() 246 exc.getCause().getClass().equals(tc.expectedException.getClass())) { in runTest() 248 } else if (!tc.expectedException.getClass().equals(exc.getClass())) { in runTest() 251 ", but got " + exc.getClass(), exc); in runTest()
|
/art/test/132-daemon-locks-shutdown/src/ |
D | Main.java | 46 } catch (Exception exc) { in run() 47 exc.printStackTrace(System.out); in run()
|
/art/test/1932-monitor-events-misc/ |
D | monitor_misc.cc | 52 ScopedLocalRef<jobject> exc(env, env->ExceptionOccurred()); in Java_art_Test1932_doNativeLockPrint() local 54 env->CallStaticVoidMethod(klass, print_state, lock, exc.get(), res); in Java_art_Test1932_doNativeLockPrint()
|
/art/test/130-hprof/src/ |
D | Main.java | 75 } catch (Exception exc) { in createDumpAndConv() 76 throw new RuntimeException(exc); in createDumpAndConv() 198 } catch (Exception exc) { in createDump() 199 exc.printStackTrace(System.out); in createDump() 236 } catch (Exception exc) { in getDumpFile() 244 } catch (Exception exc) { in getConvFile()
|
/art/test/138-duplicate-classes-check/src-art/ |
D | Main.java | 44 } catch (Exception exc) { in run() 45 exc.printStackTrace(System.out); in run()
|
/art/test/137-cfi/src/ |
D | Main.java | 146 } catch (Exception exc) { in exec() 147 throw new RuntimeException(exc); in exec() 168 } catch (Exception exc) { in getCmdLine() 169 throw new RuntimeException(exc); in getCmdLine()
|
/art/test/044-proxy/src/ |
D | NativeProxy.java | 47 } catch (Exception exc) { in main() 48 throw new RuntimeException(exc); in main()
|
/art/runtime/ |
D | common_throws.cc | 778 ScopedLocalRef<jobject> exc(env, in ThrowStackOverflowError() local 780 if (exc.get() != nullptr) { in ThrowStackOverflowError() 797 env->SetObjectField(exc.get(), WellKnownClasses::java_lang_Throwable_detailMessage, s.get()); in ThrowStackOverflowError() 800 env->SetObjectField(exc.get(), WellKnownClasses::java_lang_Throwable_cause, exc.get()); in ThrowStackOverflowError() 807 env->SetObjectField(exc.get(), in ThrowStackOverflowError() 819 env->SetObjectField(exc.get(), in ThrowStackOverflowError() 827 env->SetObjectField(exc.get(), in ThrowStackOverflowError() 834 self->SetException(self->DecodeJObject(exc.get())->AsThrowable()); in ThrowStackOverflowError()
|
D | thread.cc | 1953 Handle<mirror::Throwable> exc; in DumpJavaStack() local 1956 exc = scope.NewHandle(GetException()); in DumpJavaStack() 1967 const_cast<Thread*>(this)->SetException(exc.Get()); in DumpJavaStack()
|
/art/test/046-reflect/ |
D | expected.txt | 44 got expected illegal obj store exc 45 got the other expected access exc 46 got expected arg exc
|
/art/test/ti-agent/ |
D | trace_helper.cc | 32 ScopedLocalRef<jthrowable> exc(env, env->ExceptionOccurred()); in IsInCallback() local 35 if (exc.get() != nullptr) { in IsInCallback() 36 env->Throw(exc.get()); in IsInCallback() 46 ScopedLocalRef<jthrowable> exc(env, env->ExceptionOccurred()); in SetInCallback() local 50 if (exc.get() != nullptr) { in SetInCallback() 51 env->Throw(exc.get()); in SetInCallback()
|
/art/openjdkjvmti/ |
D | ti_thread.cc | 1052 art::Handle<art::mirror::Throwable> exc(hs.NewHandle(obj->AsThrowable())); in StopThread() local 1078 StopThreadClosure c(exc); in StopThread()
|
/art/dex2oat/linker/ |
D | oat_writer.cc | 1618 mirror::Throwable* exc = self->GetException(); in VisitMethod() local 1619 std::string dump = exc->Dump(); in VisitMethod()
|