Home
last modified time | relevance | path

Searched refs:Throwable (Results 126 – 150 of 213) sorted by relevance

123456789

/art/test/570-checker-osr-locals/src/
DMain.java76 } catch (Throwable t) { in runSmaliTest()
/art/test/616-cha-proxy-method-inline/src/
DMain.java35 public Object invoke(Object proxy, Method m, Object[] args) throws Throwable { in invoke()
/art/test/715-clinit-implicit-parameter-annotations/src/
DMain.java107 private static void DumpConstructorParameterAnnotations(Class<?> cls) throws Throwable { in DumpConstructorParameterAnnotations()
169 public static void main(String[] args) throws Throwable { in main()
/art/test/2006-virtual-structural-finalizing/src-art/art/
DTest2006.java36 protected void finalize() throws Throwable { in finalize()
/art/test/118-noimage-dex2oat/src/
DMain.java78 Throwable actual = e.getTargetException(); in testB18485243()
/art/test/800-smali/src/
DMain.java30 Throwable expectedException, Object expectedReturn, in TestCase()
42 Throwable expectedException, Object expectedReturn) { in TestCase()
51 Throwable expectedException;
271 } catch (Throwable exc) { in runTest()
/art/test/616-cha-regression-proxy-method/src/
DMain.java61 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { in invoke()
/art/test/155-java-set-resolved-type/src/
DMain.java63 } catch (Throwable t) { in main()
/art/test/956-methodhandles/src/
DMain.java103 public static void main(String[] args) throws Throwable { in main()
122 public static void testfindSpecial_invokeSuperBehaviour() throws Throwable { in testfindSpecial_invokeSuperBehaviour()
181 public static void testfindSpecial_invokeDirectBehaviour() throws Throwable { in testfindSpecial_invokeDirectBehaviour()
204 public static void testExceptionDetailMessages() throws Throwable { in testExceptionDetailMessages()
278 public static void testfindVirtual() throws Throwable { in testfindVirtual()
381 public static void testfindStatic() throws Throwable { in testfindStatic()
445 public static void testUnreflects() throws Throwable { in testUnreflects()
602 public static void testAsType() throws Throwable { in testAsType()
719 public static void testConstructors() throws Throwable { in testConstructors()
798 public static void testStringConstructors() throws Throwable { in testStringConstructors()
[all …]
/art/runtime/
Dthread.h75 class Throwable; variable
458 mirror::Throwable* GetException() const REQUIRES_SHARED(Locks::mutator_lock_) { in GetException()
467 void SetException(ObjPtr<mirror::Throwable> new_exception) REQUIRES_SHARED(Locks::mutator_lock_);
475 void SetAsyncException(ObjPtr<mirror::Throwable> new_exception)
507 bool IsExceptionThrownByCurrentMethod(ObjPtr<mirror::Throwable> exception) const
1013 static mirror::Throwable* GetDeoptimizationException() { in GetDeoptimizationException()
1016 return reinterpret_cast<mirror::Throwable*>(0x100); in GetDeoptimizationException()
1029 ObjPtr<mirror::Throwable> exception,
1034 ObjPtr<mirror::Throwable>* exception,
1685 mirror::Throwable* exception; in PACKED()
[all …]
Dinstrumentation.h38 class Throwable; variable
143 Handle<mirror::Throwable> exception_object)
147 virtual void ExceptionHandled(Thread* thread, Handle<mirror::Throwable> exception_object)
175 bool PopFramesTo(uintptr_t stack_pointer, /*in-out*/MutableHandle<mirror::Throwable>& exception)
485 void ExceptionThrownEvent(Thread* thread, ObjPtr<mirror::Throwable> exception_object) const
490 void ExceptionHandledEvent(Thread* thread, ObjPtr<mirror::Throwable> exception_object) const
Druntime.cc556 mirror::Throwable* exception = self->GetException(); in DumpThread()
830 GcRoot<mirror::Throwable>* exceptions[] = { in RunRootClinits()
836 for (GcRoot<mirror::Throwable>* exception : exceptions) { in RunRootClinits()
1161 GcRoot<mirror::Throwable>* exception, in CreatePreAllocatedException()
1171 ObjPtr<mirror::Throwable> exception_object = ObjPtr<mirror::Throwable>::DownCast( in CreatePreAllocatedException()
1174 *exception = GcRoot<mirror::Throwable>(exception_object); in CreatePreAllocatedException()
1178 ObjPtr<mirror::Class> throwable = GetClassRoot<mirror::Throwable>(class_linker); in CreatePreAllocatedException()
1651 pre_allocated_OutOfMemoryError_when_throwing_exception_ = GcRoot<mirror::Throwable>( in Init()
1655 pre_allocated_OutOfMemoryError_when_throwing_oome_ = GcRoot<mirror::Throwable>( in Init()
1659 pre_allocated_OutOfMemoryError_when_handling_stack_overflow_ = GcRoot<mirror::Throwable>( in Init()
[all …]
Dclass_root.h54 class Throwable; variable
85 … "Ljava/lang/Throwable;", mirror::Throwable) …
/art/test/2012-structural-redefinition-failures-jni-id/src-art/art/
DTest1983.java87 Throwable.class, in doTest()
/art/test/952-invoke-custom/src/
DTestDynamicBootstrapArguments.java35 throws Throwable { in bsm()
/art/test/165-lock-owner-proxy/src/
DMain.java58 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { in invoke()
/art/test/1983-structural-redefinition-failures/src/art/
DTest1983.java87 Throwable.class, in doTest()
/art/test/952-invoke-custom/util-src/transformer/
DIndyTransformer.java166 private static void transform(Path inputClassPath, Path outputClassPath) throws Throwable {
199 public static void main(String[] args) throws Throwable {
/art/test/979-const-method-handle/src/
DMain.java192 private static void repeatConstMethodHandle() throws Throwable { in repeatConstMethodHandle()
204 public static void main(String[] args) throws Throwable { in main()
/art/test/990-field-trace/src/art/
DTest990.java88 } else if (val instanceof Throwable) { in genericToString()
90 ((Throwable) val).printStackTrace(new PrintWriter(w)); in genericToString()
/art/test/717-integer-value-of/src/
DMain.java56 } catch (Throwable t) { in testValueOfArg()
/art/test/jvmti-common/
DMonitors.java116 public TestException(String s, Throwable c) { super(s, c); } in TestException()
129 private volatile Throwable exe;
/art/test/1931-monitor-events/src/art/
DTest1931.java32 public static void printStackTrace(Throwable t) { in printStackTrace()
34 for (Throwable c = t.getCause(); c != null; c = c.getCause()) { in printStackTrace()
/art/test/1930-monitor-info/src/art/
DMonitors.java116 public TestException(String s, Throwable c) { super(s, c); } in TestException()
129 private volatile Throwable exe;
/art/test/1933-monitor-current-contended/src/art/
DMonitors.java116 public TestException(String s, Throwable c) { super(s, c); } in TestException()
129 private volatile Throwable exe;

123456789