Searched defs:cause (Results 1 - 6 of 6) sorted by relevance

/art/runtime/gc/
H A Dgc_cause.cc26 const char* PrettyCause(GcCause cause) { argument
27 switch (cause) {
H A Dheap.cc989 // Deflate the monitors, this can cause a pause but shouldn't matter since we don't care
1355 // TODO: Run finalization, but this may cause more allocations to occur.
1394 // Always print that we ran homogeneous space compation since this can cause jank.
1616 // cause objects to get finalized.
1699 // cause objects to get finalized.
2169 // Back to back GCs can cause 0 ms of wait time in between GC invocations.
2217 // calculated in the same thread so that there aren't any races that can cause it to become
2842 collector::GcType Heap::WaitForGcToComplete(GcCause cause, Thread* self) { argument
2845 return WaitForGcToCompleteLocked(cause, self);
2848 collector::GcType Heap::WaitForGcToCompleteLocked(GcCause cause, Threa argument
[all...]
/art/test/086-null-super/src/
H A DMain.java29 public TestFailed(Throwable cause) { argument
30 super(cause);
125 * its cause.
156 Throwable cause = ite.getCause();
157 if (cause instanceof NullPointerException) {
/art/test/087-gc-after-link/src/
H A DMain.java29 public TestFailed(Throwable cause) { argument
30 super(cause);
134 * its cause.
165 Throwable cause = ite.getCause();
166 if (cause instanceof NullPointerException) {
/art/runtime/mirror/
H A Dthrowable.cc44 void Throwable::SetCause(Throwable* cause) { argument
45 CHECK(cause != nullptr);
46 CHECK(cause != this);
50 SetFieldObject<true>(OFFSET_OF_OBJECT_MEMBER(Throwable, cause_), cause); local
52 SetFieldObject<false>(OFFSET_OF_OBJECT_MEMBER(Throwable, cause_), cause); local
121 Throwable* cause = GetFieldObject<Throwable>(OFFSET_OF_OBJECT_MEMBER(Throwable, cause_)); local
122 if (cause != nullptr && cause != this) { // Constructor makes cause == this by default.
124 result += cause
[all...]
/art/runtime/
H A Dthread.h229 // Once called thread suspension will cause an assertion failure.
230 const char* StartAssertNoThreadSuspension(const char* cause) { argument
232 CHECK(cause != NULL);
235 tlsPtr_.last_no_thread_suspension_cause = cause;
378 // used as the new exception's cause.

Completed in 8800 milliseconds