Home
last modified time | relevance | path

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

/art/runtime/gc/allocator/
Drosalloc.cc827 auto* full_runs = kIsDebugBuild ? &full_runs_[idx] : nullptr; in FreeFromRun() local
831 DCHECK(full_runs->find(run) != full_runs->end()); in FreeFromRun()
833 full_runs->erase(run); in FreeFromRun()
1279 auto* full_runs = kIsDebugBuild ? &full_runs_[idx] : nullptr; in BulkFree() local
1285 DCHECK(full_runs->find(run) == full_runs->end()); in BulkFree()
1292 std::unordered_set<Run*, hash_run, eq_run>::iterator pos = full_runs->find(run); in BulkFree()
1293 DCHECK(pos != full_runs->end()); in BulkFree()
1294 full_runs->erase(pos); in BulkFree()
1300 DCHECK(full_runs->find(run) == full_runs->end()); in BulkFree()
1304 DCHECK(full_runs->find(run) == full_runs->end()); in BulkFree()
[all …]