/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 | 39 EXPORT const char* Enter(GcCause cause, CollectorType type) ACQUIRE(Roles::uninterruptible_); 54 EXPORT ScopedGCCriticalSection(Thread* self, GcCause cause, CollectorType collector_type)
|
/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()
|
/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/test/1963-add-to-dex-classloader-in-memory/src/art/ |
D | Test1963.java | 158 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/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/1964-add-to-dex-classloader-file/src/ |
D | Main.java | 123 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/ |
D | alloc_manager.cc | 57 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/ |
D | expected-stdout.txt | 23 cause: java.lang.Error: MultiDexBadInit 25 cause: java.lang.Error: MultiDexBadInit
|
/art/libartservice/service/java/com/android/server/art/prereboot/ |
D | PreRebootDriver.java | 108 Throwable cause = e.getCause(); in run() 109 if (cause != null in run() 110 && cause.getClass().getName().equals( in run() 114 AsLog.e("System requirement check failed in chroot", cause); in run()
|
/art/test/579-inline-infinite/ |
D | info.txt | 2 Inlining of method with infinite loop cause a crash.
|
/art/test/120-hashcode/ |
D | info.txt | 1 Check that object hashCode and System.identityHashCode never cause the hash to change.
|
/art/test/821-madvise-willneed/ |
D | info.txt | 1 Verify that passing madvise size limits argument to ART does not cause a crash
|
/art/test/2045-uffd-kernelfault/ |
D | info.txt | 1 Test that fault-handler doesn't cause userfaultfd kernel-faults, which are not
|
/art/test/1961-obsolete-jit-multithread/ |
D | info.txt | 2 cause a crash.
|
/art/test/1960-obsolete-jit-multithread-native/ |
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/1995-final-virtual-structural-multithread/ |
D | info.txt | 4 doesn't cause any unexpected problems.
|
/art/test/2001-virtual-structural-multithread/ |
D | info.txt | 4 the class being redefined doesn't cause any unexpected problems.
|
/art/test/2002-virtual-structural-initializing/ |
D | info.txt | 4 the class being redefined doesn't cause any unexpected problems.
|
/art/test/2007-virtual-structural-finalizable/ |
D | info.txt | 4 the class being redefined doesn't cause any unexpected problems.
|