Searched refs:mapAddr (Results 1 – 4 of 4) sorted by relevance
/external/icu/icu4c/source/common/ |
D | umapfile.c | 195 pData->mapAddr = data; in uprv_mapFile() 205 size_t dataLen = (char *)pData->map - (char *)pData->mapAddr; in uprv_unmapFile() 206 if(munmap(pData->mapAddr, dataLen)==-1) { in uprv_unmapFile() 210 pData->mapAddr=NULL; in uprv_unmapFile() 268 pData->mapAddr=p; in uprv_mapFile() 277 pData->mapAddr = NULL; in uprv_unmapFile() 403 pData->mapAddr = data; in uprv_mapFile() 457 pData->mapAddr = NULL; in uprv_unmapFile()
|
D | udatamem.h | 35 void *mapAddr; /* For mapped or allocated memory, the start addr. */ member
|
D | udata.cpp | 822 copyPData.mapAddr = 0; /* which will unmap it when ICU is shut down. */ in extendICUData() 984 pEntryData->mapAddr = dataMemory.mapAddr; in doLoadFromIndividualFiles()
|
/external/fio/os/windows/ |
D | posix.c | 564 void* mapAddr; in shmat() local 566 mapAddr = MapViewOfFile(fileMappings[shmid], FILE_MAP_ALL_ACCESS, 0, 0, 0); in shmat() 567 if (mapAddr == NULL) { in shmat() 572 if (VirtualQuery(mapAddr, &memInfo, sizeof(memInfo)) == 0) { in shmat() 577 mapAddr = VirtualAlloc(mapAddr, memInfo.RegionSize, MEM_COMMIT, PAGE_READWRITE); in shmat() 578 if (mapAddr == NULL) { in shmat() 583 return mapAddr; in shmat()
|