Home
last modified time | relevance | path

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

123

/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()
63 GcCause cause, in ScopedInterruptibleGCCriticalSection() argument
66 Runtime::Current()->GetHeap()->StartGC(self_, cause, type); in ScopedInterruptibleGCCriticalSection()
Dscoped_gc_critical_section.h38 const char* Enter(GcCause cause, CollectorType type) ACQUIRE(Roles::uninterruptible_);
53 ScopedGCCriticalSection(Thread* self, GcCause cause, CollectorType collector_type)
67 ScopedInterruptibleGCCriticalSection(Thread* self, GcCause cause, CollectorType type);
Dgc_cause.cc29 const char* PrettyCause(GcCause cause) { in PrettyCause() argument
30 switch (cause) { in PrettyCause()
/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()
/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/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/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/1963-add-to-dex-classloader-in-memory/src/art/
DTest1963.java158 StackTraceElement cause = t.getStackTrace()[0]; in SafePrintCause() local
159 System.out.println(" --- " + t.getClass().getName() + " At " + cause.getClassName() + "." + in SafePrintCause()
160 cause.getMethodName() + "(" + cause.getFileName() + ":" + in SafePrintCause()
161 cause.getLineNumber() + ")"); in SafePrintCause()
/art/test/1964-add-to-dex-classloader-file/src/
DMain.java123 StackTraceElement cause = t.getStackTrace()[0]; in SafePrintCause() local
124 System.out.println(" --- " + t.getClass().getName() + " At " + cause.getClassName() + "." + in SafePrintCause()
125 cause.getMethodName() + "(" + cause.getFileName() + ":" + in SafePrintCause()
126 cause.getLineNumber() + ")"); in SafePrintCause()
/art/openjdkjvmti/
Dalloc_manager.cc57 std::string cause; in PauseForAllocation() local
65 if (UNLIKELY(is_logging && cause.empty())) { in PauseForAllocation()
66 cause = msg(); in PauseForAllocation()
74 VLOG(plugin) << "Suspending " << *self << " due to " << cause << ". Allocation pause " in PauseForAllocation()
/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/1961-obsolete-jit-multithread/
Dinfo.txt2 cause a crash.
/art/test/1960-obsolete-jit-multithread-native/
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/1995-final-virtual-structural-multithread/
Dinfo.txt4 doesn't cause any unexpected problems.
/art/test/2002-virtual-structural-initializing/
Dinfo.txt4 the class being redefined doesn't cause any unexpected problems.
/art/test/2006-virtual-structural-finalizing/
Dinfo.txt4 the class being redefined doesn't cause any unexpected problems.
/art/test/2001-virtual-structural-multithread/
Dinfo.txt4 the class being redefined doesn't cause any unexpected problems.
/art/test/801-VoidCheckCast/
Dinfo.txt4 cause the compiler to crash.
/art/test/2007-virtual-structural-finalizable/
Dinfo.txt4 the class being redefined doesn't cause any unexpected problems.
/art/test/1989-transform-bad-monitor/
Dinfo.txt5 This tests that redefining a method to have unbalanced locks doesn't cause issues and the method

123