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

  /external/chromium_org/third_party/icu/source/common/
udatamem.h 35 void *mapAddr; /* For mapped or allocated memory, the start addr. */
41 /* beyond the mapAddr is needed to do that. */
  /external/icu/icu4c/source/common/
udatamem.h 35 void *mapAddr; /* For mapped or allocated memory, the start addr. */
41 /* beyond the mapAddr is needed to do that. */
  /hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/osal/
Exynos_OSAL_SharedMemory.c 51 OMX_PTR mapAddr;
108 if (ion_unmap(pDeleteElement->mapAddr, pDeleteElement->allocSize))
111 pDeleteElement->mapAddr = NULL;
193 pElement->mapAddr = pBuffer;
235 if (pSMList->mapAddr == pBuffer) {
240 (((EXYNOS_SHAREDMEM_LIST *)(pCurrentElement->pNextMemory))->mapAddr != pBuffer))
244 (((EXYNOS_SHAREDMEM_LIST *)(pCurrentElement->pNextMemory))->mapAddr == pBuffer)) {
255 if (ion_unmap(pDeleteElement->mapAddr, pDeleteElement->allocSize)) {
259 pDeleteElement->mapAddr = NULL;
307 pElement->mapAddr = pBuffer
    [all...]
  /system/core/liblog/
event_tag_map.c 42 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);
229 cp = (const char*) map->mapAddr;
266 cp = (char*) map->mapAddr;
  /external/fio/os/windows/
posix.c 564 void* mapAddr;
566 mapAddr = MapViewOfFile(fileMappings[shmid], FILE_MAP_ALL_ACCESS, 0, 0, 0);
567 if (mapAddr == NULL) {
572 if (VirtualQuery(mapAddr, &memInfo, sizeof(memInfo)) == 0) {
577 mapAddr = VirtualAlloc(mapAddr, memInfo.RegionSize, MEM_COMMIT, PAGE_READWRITE);
578 if (mapAddr == NULL) {
583 return mapAddr;

Completed in 293 milliseconds