Home
last modified time | relevance | path

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

/system/core/libmemunreachable/
DAllocator.cpp183 unsigned int free_count() { return free_count_; } in free_count()
194 unsigned int free_count_; // number of available allocations member in android::Chunk
237 free_count_(max_allocations_), in Chunk()
244 return free_count_ == max_allocations_; in Empty()
248 assert(free_count_ > 0); in Alloc()
263 free_count_--; in Alloc()
264 if (free_count_ == 0) { in Alloc()
282 free_count_++; in Free()
288 if (free_count_ == 1) { in Free()