/art/runtime/gc/ |
D | scoped_gc_critical_section.cc | 27 const char* GCCriticalSection::Enter(GcCause cause, CollectorType type) { in Enter() argument 28 Runtime::Current()->GetHeap()->StartGC(self_, cause, type); in Enter() 51 GcCause cause, in ScopedGCCriticalSection() argument 54 old_no_suspend_reason_ = critical_section_.Enter(cause, collector_type); in ScopedGCCriticalSection()
|
D | gc_cause.cc | 29 const char* PrettyCause(GcCause cause) { in PrettyCause() argument 30 switch (cause) { in PrettyCause()
|
D | scoped_gc_critical_section.h | 38 const char* Enter(GcCause cause, CollectorType type) ACQUIRE(Roles::uninterruptible_); 53 ScopedGCCriticalSection(Thread* self, GcCause cause, CollectorType collector_type)
|
D | gc_cause.h | 67 const char* PrettyCause(GcCause cause);
|
/art/runtime/mirror/ |
D | throwable.cc | 50 void Throwable::SetCause(ObjPtr<Throwable> cause) { in SetCause() argument 51 CHECK(cause != nullptr); in SetCause() 52 CHECK(cause != this); in SetCause() 57 SetFieldObject<true>(OFFSET_OF_OBJECT_MEMBER(Throwable, cause_), cause); in SetCause() 59 SetFieldObject<false>(OFFSET_OF_OBJECT_MEMBER(Throwable, cause_), cause); in SetCause() 154 ObjPtr<Throwable> cause = GetFieldObject<Throwable>(OFFSET_OF_OBJECT_MEMBER(Throwable, cause_)); in Dump() local 155 if (cause != nullptr && cause != this) { // Constructor makes cause == this by default. in Dump() 157 result += cause->Dump(); in Dump()
|
D | throwable.h | 43 void SetCause(ObjPtr<Throwable> cause) REQUIRES_SHARED(Locks::mutator_lock_);
|
/art/test/647-jni-get-field-id/src/ |
D | Main.java | 73 for (Throwable cause = t.getCause(); cause != null; cause = cause.getCause()) { in testGetFieldId() 74 System.out.println(" caused by " + DescribeThrowable(cause)); in testGetFieldId()
|
/art/test/086-null-super/src/ |
D | Main.java | 29 public TestFailed(Throwable cause) { in TestFailed() argument 30 super(cause); in TestFailed() 154 Throwable cause = ite.getCause(); in testFailLoadAndGc() 155 if (cause instanceof NullPointerException) { in testFailLoadAndGc()
|
/art/tools/ahat/src/main/com/android/ahat/heapdump/ |
D | HprofFormatException.java | 28 HprofFormatException(String msg, Exception cause) { in HprofFormatException() argument 29 super(msg, cause); in HprofFormatException()
|
/art/test/087-gc-after-link/src/ |
D | Main.java | 29 public TestFailed(Throwable cause) { in TestFailed() argument 30 super(cause); in TestFailed() 170 Throwable cause = ite.getCause(); in processFailLoadAndGc() 171 if (cause instanceof NullPointerException) { in processFailLoadAndGc()
|
/art/test/008-exceptions/ |
D | expected.txt | 23 cause: java.lang.Error: MultiDexBadInit 25 cause: java.lang.Error: MultiDexBadInit
|
/art/test/120-hashcode/ |
D | info.txt | 1 Check that object hashCode and System.identityHashCode never cause the hash to change.
|
/art/test/579-inline-infinite/ |
D | info.txt | 2 Inlining of method with infinite loop cause a crash.
|
/art/test/1960-obsolete-jit-multithread-native/ |
D | info.txt | 2 cause a crash.
|
/art/test/1961-obsolete-jit-multithread/ |
D | info.txt | 2 cause a crash.
|
/art/test/063-process-manager/ |
D | info.txt | 2 doesn't cause the system to busy-wait.
|
/art/test/203-multi-checkpoint/ |
D | info.txt | 3 This could cause problems with asserts when there were multiple checkpoints
|
/art/test/801-VoidCheckCast/ |
D | info.txt | 4 cause the compiler to crash.
|
/art/test/081-hot-exceptions/ |
D | info.txt | 3 cause a control flow change to deviate from the current method.
|
/art/test/1962-multi-thread-events/ |
D | info.txt | 5 could cause events to be missed.
|
/art/test/944-transform-classloaders/ |
D | info.txt | 7 dalvik.system.BaseDexClassLoader might cause this test to fail.
|
/art/runtime/jni/ |
D | jni_internal.h | 33 int ThrowNewException(JNIEnv* env, jclass exception_class, const char* msg, jobject cause);
|
/art/test/068-classloader/src/ |
D | Main.java | 187 Throwable cause = cnfe.getCause(); in testAccess2() 188 if (cause instanceof IllegalAccessError) { in testAccess2() 207 Throwable cause = cnfe.getCause(); in testAccess3() 208 if (cause instanceof IllegalAccessError) { in testAccess3()
|
/art/test/998-redefine-use-after-free/ |
D | info.txt | 9 Hitting this use-after-free can cause many strange outcomes, from CHECK failures
|
/art/runtime/ |
D | thread_list.h | 74 void SuspendAll(const char* cause, bool long_suspend = false) 243 explicit ScopedSuspendAll(const char* cause, bool long_suspend = false)
|