Home
last modified time | relevance | path

Searched refs:cause (Results 1 – 25 of 40) sorted by relevance

12

/art/runtime/gc/
Dscoped_gc_critical_section.cc27 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()
Dgc_cause.cc29 const char* PrettyCause(GcCause cause) { in PrettyCause() argument
30 switch (cause) { in PrettyCause()
Dscoped_gc_critical_section.h38 const char* Enter(GcCause cause, CollectorType type) ACQUIRE(Roles::uninterruptible_);
53 ScopedGCCriticalSection(Thread* self, GcCause cause, CollectorType collector_type)
Dgc_cause.h67 const char* PrettyCause(GcCause cause);
/art/runtime/mirror/
Dthrowable.cc50 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()
Dthrowable.h43 void SetCause(ObjPtr<Throwable> cause) REQUIRES_SHARED(Locks::mutator_lock_);
/art/test/647-jni-get-field-id/src/
DMain.java73 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/
DMain.java29 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/
DHprofFormatException.java28 HprofFormatException(String msg, Exception cause) { in HprofFormatException() argument
29 super(msg, cause); in HprofFormatException()
/art/test/087-gc-after-link/src/
DMain.java29 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/
Dexpected.txt23 cause: java.lang.Error: MultiDexBadInit
25 cause: java.lang.Error: MultiDexBadInit
/art/test/120-hashcode/
Dinfo.txt1 Check that object hashCode and System.identityHashCode never cause the hash to change.
/art/test/579-inline-infinite/
Dinfo.txt2 Inlining of method with infinite loop cause a crash.
/art/test/1960-obsolete-jit-multithread-native/
Dinfo.txt2 cause a crash.
/art/test/1961-obsolete-jit-multithread/
Dinfo.txt2 cause a crash.
/art/test/063-process-manager/
Dinfo.txt2 doesn't cause the system to busy-wait.
/art/test/203-multi-checkpoint/
Dinfo.txt3 This could cause problems with asserts when there were multiple checkpoints
/art/test/801-VoidCheckCast/
Dinfo.txt4 cause the compiler to crash.
/art/test/081-hot-exceptions/
Dinfo.txt3 cause a control flow change to deviate from the current method.
/art/test/1962-multi-thread-events/
Dinfo.txt5 could cause events to be missed.
/art/test/944-transform-classloaders/
Dinfo.txt7 dalvik.system.BaseDexClassLoader might cause this test to fail.
/art/runtime/jni/
Djni_internal.h33 int ThrowNewException(JNIEnv* env, jclass exception_class, const char* msg, jobject cause);
/art/test/068-classloader/src/
DMain.java187 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/
Dinfo.txt9 Hitting this use-after-free can cause many strange outcomes, from CHECK failures
/art/runtime/
Dthread_list.h74 void SuspendAll(const char* cause, bool long_suspend = false)
243 explicit ScopedSuspendAll(const char* cause, bool long_suspend = false)

12