Home
last modified time | relevance | path

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

/art/runtime/gc/allocator/
Drosalloc.cc814 auto* full_runs = kIsDebugBuild ? &full_runs_[idx] : nullptr; in FreeFromRun() local
818 DCHECK(full_runs->find(run) != full_runs->end()); in FreeFromRun()
820 full_runs->erase(run); in FreeFromRun()
1130 auto* full_runs = kIsDebugBuild ? &full_runs_[idx] : nullptr; in BulkFree() local
1136 DCHECK(full_runs->find(run) == full_runs->end()); in BulkFree()
1143 std::unordered_set<Run*, hash_run, eq_run>::iterator pos = full_runs->find(run); in BulkFree()
1144 DCHECK(pos != full_runs->end()); in BulkFree()
1145 full_runs->erase(pos); in BulkFree()
1151 DCHECK(full_runs->find(run) == full_runs->end()); in BulkFree()
1155 DCHECK(full_runs->find(run) == full_runs->end()); in BulkFree()
[all …]