Home
last modified time | relevance | path

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

/frameworks/native/cmds/installd/
Dutils.cpp556 if (cache->memBlocks == NULL) { in _cache_malloc()
558 cache->memBlocks = res; in _cache_malloc()
560 *(void**)res = *(void**)cache->memBlocks; in _cache_malloc()
561 *(void**)cache->memBlocks = res; in _cache_malloc()
567 if (cache->memBlocks == NULL || nextPos > cache->curMemBlockEnd) { in _cache_malloc()
573 *(void**)newBlock = cache->memBlocks; in _cache_malloc()
574 cache->memBlocks = newBlock; in _cache_malloc()
580 res, len, cache->memBlocks, nextPos)); in _cache_malloc()
946 void* block = cache->memBlocks; in finish_cache_collection()
Dutils.h60 void* memBlocks; member