Searched refs:mapLength (Results 1 - 2 of 2) sorted by relevance

/dalvik/vm/
H A DLinearAlloc.c130 pHdr->mapLength = DEFAULT_MAX_LENGTH;
142 pHdr->mapAddr = mmap(NULL, pHdr->mapLength, PROT_READ | PROT_WRITE,
145 LOGE("LinearAlloc mmap(%d) failed: %s\n", pHdr->mapLength,
156 pHdr->mapAddr = mmap(NULL, pHdr->mapLength, PROT_READ | PROT_WRITE,
159 LOGE("LinearAlloc mmap(%d) failed: %s\n", pHdr->mapLength,
189 if (mprotect(pHdr->mapAddr, pHdr->mapLength, PROT_NONE) != 0) {
204 int numPages = (pHdr->mapLength+SYSTEM_PAGE_SIZE-1) / SYSTEM_PAGE_SIZE;
215 pHdr->mapAddr, pHdr->mapAddr + pHdr->mapLength-1);
242 classLoader, pHdr->curOffset, pHdr->mapLength,
243 (pHdr->curOffset * 100) / pHdr->mapLength);
[all...]
H A DLinearAlloc.h38 int mapLength; /* length of region */ member in struct:LinearAllocHdr

Completed in 1299 milliseconds