Searched refs:mList (Results 1 – 1 of 1) sorted by relevance
80 List mList; member in android::hardware::SimpleBestFitAllocator114 mList.push_front(node); in SimpleBestFitAllocator()118 while (mList.size() != 0) { in ~SimpleBestFitAllocator()119 chunk_t* removed = mList.front(); in ~SimpleBestFitAllocator()120 mList.pop_front(); in ~SimpleBestFitAllocator()126 LOG_ALWAYS_FATAL_IF(mList.front() == removed); in ~SimpleBestFitAllocator()158 Iterator free_chunk_p = mList.end(); in alloc()159 for (Iterator p = mList.begin(); p != mList.end(); p++) { in alloc()166 if ((free_chunk_p == mList.end()) || (cur->size < (*free_chunk_p)->size)) { in alloc()174 if (free_chunk_p != mList.end()) { in alloc()[all …]