Home
last modified time | relevance | path

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

/ohos5.0/base/hiviewdfx/faultloggerd/frameworks/allocator/
H A Ddfx_allocator.c145 page->freeBlockList = firstBlock; in MempoolAllocPage()
171 if (page == NULL || page->freeBlockList == NULL) { in MempoolAlloc()
175 BlockInfo* block = page->freeBlockList; in MempoolAlloc()
183 page->freeBlockList = nextfree; in MempoolAlloc()
186 page->freeBlockList = block->next; in MempoolAlloc()
218 block->next = page->freeBlockList; in MempoolFree()
220 page->freeBlockList = block; in MempoolFree()
308 page->freeBlockList = NULL; in AllocMmap()
/ohos5.0/base/hiviewdfx/faultloggerd/frameworks/allocator/include/
H A Ddfx_allocator.h47 BlockInfo* freeBlockList; member