HomeSort by relevance Sort by last modified time
    Searched defs:mapAddr (Results 1 - 4 of 4) sorted by null

  /external/icu4c/common/
udatamem.h 35 void *mapAddr; /* For mapped or allocated memory, the start addr. */
41 /* beyond the mapAddr is needed to do that. */
  /dalvik/vm/
LinearAlloc.h 37 char* mapAddr; /* start of mmap()ed region */
  /system/core/liblog/
event_tag_map.c 41 void* mapAddr;
88 newTagMap->mapAddr = mmap(NULL, end, PROT_READ | PROT_WRITE, MAP_PRIVATE,
90 if (newTagMap->mapAddr == MAP_FAILED) {
117 munmap(map->mapAddr, map->mapLen);
231 cp = (const char*) map->mapAddr;
268 cp = (char*) map->mapAddr;
  /dalvik/vm/analysis/
DexPrepare.cpp 565 void* mapAddr;
566 mapAddr = mmap(NULL, dexOffset + dexLength, PROT_READ|PROT_WRITE,
568 if (mapAddr == MAP_FAILED) {
602 success = rewriteDex(((u1*) mapAddr) + dexOffset, dexLength,
607 u1* dexAddr = ((u1*) mapAddr) + dexOffset;
634 if (msync(mapAddr, dexOffset + dexLength, MS_SYNC) != 0) {
645 if (munmap(mapAddr, dexOffset + dexLength) != 0) {
    [all...]

Completed in 169 milliseconds