Home
last modified time | relevance | path

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

/dalvik/vm/hprof/
DHprofOutput.cpp87 ctx->curRec.allocLen = 128; in hprofContextInit()
88 ctx->curRec.body = (unsigned char *)malloc(ctx->curRec.allocLen); in hprofContextInit()
185 if (minSize > rec->allocLen) { in guaranteeRecordAppend()
189 newAllocLen = rec->allocLen * 2; in guaranteeRecordAppend()
191 newAllocLen = rec->allocLen + nmore + nmore/2; in guaranteeRecordAppend()
196 rec->allocLen = newAllocLen; in guaranteeRecordAppend()
203 assert(rec->length + nmore <= rec->allocLen); in guaranteeRecordAppend()
DHprof.h109 size_t allocLen; member
/dalvik/vm/alloc/
DHeapBitmap.h59 size_t allocLen; member
DHeapBitmap.cpp41 hb->bitsLen = hb->allocLen = bitsLen; in dvmHeapBitmapInit()
55 munmap((char *)hb->bits, hb->allocLen); in dvmHeapBitmapDelete()