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

/art/runtime/gc/
H A Dgc_cause.cc26 const char* PrettyCause(GcCause cause) { argument
27 switch (cause) {
H A Dscoped_gc_critical_section.cc28 GcCause cause,
31 Runtime::Current()->GetHeap()->StartGC(self, cause, collector_type);
27 ScopedGCCriticalSection(Thread* self, GcCause cause, CollectorType collector_type) argument
H A Dheap.cc1378 // Deflate the monitors, this can cause a pause but shouldn't matter since we don't care
1424 void Heap::StartGC(Thread* self, GcCause cause, CollectorType collector_type) { argument
1427 WaitForGcToCompleteLocked(cause, self);
1766 // TODO: Run finalization, but this may cause more allocations to occur.
1813 // Always print that we ran homogeneous space compation since this can cause jank.
2050 // cause objects to get finalized.
2135 // cause objects to get finalized.
2426 // We still want to GC in case there is some unreachable non moving objects that could cause a
2706 // calculated in the same thread so that there aren't any races that can cause it to become
3451 collector::GcType Heap::WaitForGcToComplete(GcCause cause, Threa argument
3457 WaitForGcToCompleteLocked(GcCause cause, Thread* self) 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);
135 * its cause.
172 Throwable cause = ite.getCause();
173 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
144 Throwable* cause = GetFieldObject<Throwable>(OFFSET_OF_OBJECT_MEMBER(Throwable, cause_)); local
145 if (cause != nullptr && cause != this) { // Constructor makes cause == this by default.
147 result += cause
[all...]
/art/runtime/
H A Doat_file.cc238 std::string cause = GetOatHeader().GetValidationErrorMessage(); local
241 cause.c_str());
H A Dthread_list.cc429 // checkpoint) may cause the flip function to be run for a
469 void ThreadList::SuspendAll(const char* cause, bool long_suspend) { argument
473 VLOG(threads) << *self << " SuspendAll for " << cause << " starting..."; local
475 VLOG(threads) << "Thread[null] SuspendAll for " << cause << " starting...";
513 ATRACE_BEGIN((std::string("Mutator threads suspended for ") + cause).c_str());
1330 ScopedSuspendAll::ScopedSuspendAll(const char* cause, bool long_suspend) { argument
1331 Runtime::Current()->GetThreadList()->SuspendAll(cause, long_suspend);

Completed in 7073 milliseconds