Home
last modified time | relevance | path

Searched refs:fail_count (Results 1 – 5 of 5) sorted by relevance

/ark/runtime_core/runtime/mem/
Dheap_verifier.cpp32 size_t fail_count = VerifyAll(); in VerifyAllPaused() local
34 return fail_count; in VerifyAllPaused()
85 size_t fail_count = 0; in VerifyRoot() local
87 root_manager.VisitNonHeapRoots([this, &fail_count](const GCRoot &root) { in VerifyRoot()
91 HeapReferenceVerifier(heap_, &fail_count)(root); in VerifyRoot()
96 return fail_count; in VerifyRoot()
Dheap_manager.h115 size_t fail_count = 0; in VerifyHeapReferences() local
116 HeapObjectVerifier verifier(this, &fail_count); in VerifyHeapReferences()
/ark/ts2abc/testTs/
Drun_testTs.py232 fail_count = 0
236 fail_count += 1
244 print(" Passed tests: %5d " % (count - fail_count))
245 print(" Failed tests: %5d " % (fail_count))
/ark/runtime_core/runtime/include/mem/
Dallocator.h656 size_t fail_count = 0; in VerifyAllocatorStatus() local
657 fail_count += object_allocator_->VerifyAllocator(); in VerifyAllocatorStatus()
658 return fail_count; in VerifyAllocatorStatus()
772 size_t fail_count = 0; in VerifyAllocatorStatus() local
773 fail_count += object_allocator_->VerifyAllocator(); in VerifyAllocatorStatus()
774 return fail_count; in VerifyAllocatorStatus()
/ark/runtime_core/runtime/mem/gc/
Dgc.cpp192 size_t fail_count = VerifyHeap(); in RunPhases() local
193 if (gc_settings_.fail_on_heap_verification && fail_count > 0) { in RunPhases()
194 … LOG(FATAL, GC) << "Heap corrupted before GC, HeapVerifier found " << fail_count << " corruptions"; in RunPhases()
251 size_t fail_count = VerifyHeap(); in RunPhases() local
252 if (gc_settings_.fail_on_heap_verification && fail_count > 0) { in RunPhases()
253 … LOG(FATAL, GC) << "Heap corrupted after GC, HeapVerifier found " << fail_count << " corruptions"; in RunPhases()