Home
last modified time | relevance | path

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

/art/runtime/gc/allocator/
Drosalloc.cc811 auto* full_runs = kIsDebugBuild ? &full_runs_[idx] : nullptr; in FreeFromRun() local
815 DCHECK(full_runs->find(run) != full_runs->end()); in FreeFromRun()
817 full_runs->erase(run); in FreeFromRun()
1127 auto* full_runs = kIsDebugBuild ? &full_runs_[idx] : nullptr; in BulkFree() local
1133 DCHECK(full_runs->find(run) == full_runs->end()); in BulkFree()
1140 std::unordered_set<Run*, hash_run, eq_run>::iterator pos = full_runs->find(run); in BulkFree()
1141 DCHECK(pos != full_runs->end()); in BulkFree()
1142 full_runs->erase(pos); in BulkFree()
1148 DCHECK(full_runs->find(run) == full_runs->end()); in BulkFree()
1152 DCHECK(full_runs->find(run) == full_runs->end()); in BulkFree()
[all …]