Searched refs:mapAddr (Results 1 – 4 of 4) sorted by relevance
/external/icu/icu4c/source/common/ |
D | umapfile.c | 197 pData->mapAddr = data; in uprv_mapFile() 207 size_t dataLen = (char *)pData->map - (char *)pData->mapAddr; in uprv_unmapFile() 208 if(munmap(pData->mapAddr, dataLen)==-1) { in uprv_unmapFile() 212 pData->mapAddr=NULL; in uprv_unmapFile() 270 pData->mapAddr=p; in uprv_mapFile() 279 pData->mapAddr = NULL; in uprv_unmapFile() 405 pData->mapAddr = data; in uprv_mapFile() 459 pData->mapAddr = NULL; in uprv_unmapFile()
|
D | udatamem.h | 37 void *mapAddr; /* For mapped or allocated memory, the start addr. */ member
|
D | udata.cpp | 825 copyPData.mapAddr = 0; /* which will unmap it when ICU is shut down. */ in extendICUData() 987 pEntryData->mapAddr = dataMemory.mapAddr; in doLoadFromIndividualFiles()
|
/external/fio/os/windows/ |
D | posix.c | 625 void* mapAddr; in shmat() local 627 mapAddr = MapViewOfFile(fileMappings[shmid], FILE_MAP_ALL_ACCESS, 0, 0, 0); in shmat() 628 if (mapAddr == NULL) { in shmat() 633 if (VirtualQuery(mapAddr, &memInfo, sizeof(memInfo)) == 0) { in shmat() 638 mapAddr = VirtualAlloc(mapAddr, memInfo.RegionSize, MEM_COMMIT, PAGE_READWRITE); in shmat() 639 if (mapAddr == NULL) { in shmat() 644 return mapAddr; in shmat()
|