Home
last modified time | relevance | path

Searched refs:Throwable (Results 1 – 25 of 73) sorted by relevance

123

/art/runtime/mirror/
Dthrowable.cc33 GcRoot<Class> Throwable::java_lang_Throwable_;
35 void Throwable::SetDetailMessage(String* new_detail_message) { in SetDetailMessage()
37 SetFieldObject<true>(OFFSET_OF_OBJECT_MEMBER(Throwable, detail_message_), new_detail_message); in SetDetailMessage()
39 SetFieldObject<false>(OFFSET_OF_OBJECT_MEMBER(Throwable, detail_message_), in SetDetailMessage()
44 void Throwable::SetCause(Throwable* cause) { in SetCause()
47 Throwable* current_cause = GetFieldObject<Throwable>(OFFSET_OF_OBJECT_MEMBER(Throwable, cause_)); in SetCause()
50 SetFieldObject<true>(OFFSET_OF_OBJECT_MEMBER(Throwable, cause_), cause); in SetCause()
52 SetFieldObject<false>(OFFSET_OF_OBJECT_MEMBER(Throwable, cause_), cause); in SetCause()
56 void Throwable::SetStackState(Object* state) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { in SetStackState()
59 SetFieldObjectVolatile<true>(OFFSET_OF_OBJECT_MEMBER(Throwable, stack_state_), state); in SetStackState()
[all …]
Dthrowable.h32 class MANAGED Throwable : public Object {
37 return GetFieldObject<String>(OFFSET_OF_OBJECT_MEMBER(Throwable, detail_message_)); in GetDetailMessage()
45 void SetCause(Throwable* cause) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
63 return GetFieldObjectVolatile<Object>(OFFSET_OF_OBJECT_MEMBER(Throwable, stack_state_)); in GetStackState()
66 return GetFieldObjectVolatile<Object>(OFFSET_OF_OBJECT_MEMBER(Throwable, stack_trace_)); in GetStackTrace()
70 HeapReference<Throwable> cause_;
79 DISALLOW_IMPLICIT_CONSTRUCTORS(Throwable);
/art/test/044-proxy/src/
DWrappedThrow.java49 } catch (Throwable t) { in main()
58 } catch (Throwable t) { in main()
67 } catch (Throwable t) { in main()
79 } catch (Throwable t) { in main()
88 } catch (Throwable t) { in main()
97 } catch (Throwable t) { in main()
106 } catch (Throwable t) { in main()
119 } catch (Throwable t) { in main()
189 throws Throwable { in invoke()
DFloatSelect.java29 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { in invoke()
DClash2.java56 throws Throwable { in invoke()
DClash.java66 throws Throwable { in invoke()
/art/test/Transaction/
DTransaction.java53 } catch (Throwable e) {
64 } catch (Throwable e) {
75 public void finalize() throws Throwable { in finalize()
/art/test/434-invoke-direct/src/
DMain.java22 public static void main(String[] args) throws Throwable { in main()
26 private static void $opt$InvokeDirect() throws Throwable { in $opt$InvokeDirect()
/art/runtime/native/
Djava_lang_Throwable.cc39 NATIVE_METHOD(Throwable, nativeFillInStackTrace, "!()Ljava/lang/Object;"),
40 …NATIVE_METHOD(Throwable, nativeGetStackTrace, "!(Ljava/lang/Object;)[Ljava/lang/StackTraceElement;…
/art/test/802-deoptimization/src/
DMain.java23 public static void main(String[] args) throws Throwable { in main()
31 private static void testCatchHandlerOnEntryWithoutMoveException() throws Throwable { in testCatchHandlerOnEntryWithoutMoveException()
/art/test/435-new-instance/src/
DMain.java22 public static void main(String[] args) throws Throwable { in main()
33 private static void $opt$NewInstance(String method, String errorName) throws Throwable { in $opt$NewInstance()
/art/test/139-register-natives/src/
DMain.java59 } catch (Throwable ignored) { in expectThrows()
66 } catch (Throwable t) { in expectNotThrows()
/art/runtime/
Dquick_exception_handler.h28 class Throwable; variable
46 void FindCatch(mirror::Throwable* exception) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
/art/test/086-null-super/src/
DMain.java29 public TestFailed(Throwable cause) { in TestFailed()
156 Throwable cause = ite.getCause(); in testFailLoadAndGc()
/art/test/114-ParallelGC/src/
DMain.java81 } catch (Throwable t) { in run()
86 } catch (Throwable tInner) { in run()
/art/test/087-gc-after-link/src/
DMain.java29 public TestFailed(Throwable cause) { in TestFailed()
165 Throwable cause = ite.getCause(); in testFailLoadAndGc()
/art/runtime/jit/
Djit_instrumentation.h36 class Throwable; variable
88 mirror::Throwable* /*exception_object*/) OVERRIDE { } in ExceptionCaught() argument
/art/test/412-new-array/src/
DMain.java238 Throwable exception = null; in testSmaliFillArrayData()
277 Throwable exception = null; in testSmaliFillArrayData()
316 Throwable exception = null; in testSmaliFillArrayData()
355 Throwable exception = null; in testSmaliFillArrayData()
394 Throwable exception = null; in testSmaliFillArrayData()
431 Throwable exception = null; in testSmaliFillArrayData()
/art/test/054-uncaught/src/
DThreadDeathHandler.java29 public void uncaughtException(Thread t, Throwable e) { in uncaughtException()
/art/test/050-sync-test/src/
DThreadDeathHandler.java29 public void uncaughtException(Thread t, Throwable e) { in uncaughtException()
/art/test/473-remove-dead-block/src/
DMain.java34 } catch (Throwable exc2) { in test()
/art/test/111-unresolvable-exception/src/
DMain.java21 } catch (Throwable t) { // Should catch the NoClassDefFoundError in main()
/art/test/800-smali/src/
DMain.java30 Throwable expectedException, Object expectedReturn) { in TestCase()
43 Throwable expectedException;
168 } catch (Throwable exc) { in runTest()
/art/test/059-finalizer-throw/src/
DMain.java63 protected void finalize() throws Throwable { in finalize()
/art/test/003-omnibus-opcodes/src/
DMain.java67 } catch (Throwable th) { in run()

123