HomeSort by relevance Sort by last modified time
    Searched defs:mapAddr (Results 1 - 5 of 5) 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 */
  /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;
194 pElement->mapAddr = pBuffer;
236 if (pSMList->mapAddr == pBuffer) {
241 (((EXYNOS_SHAREDMEM_LIST *)(pCurrentElement->pNextMemory))->mapAddr != pBuffer))
245 (((EXYNOS_SHAREDMEM_LIST *)(pCurrentElement->pNextMemory))->mapAddr == pBuffer)) {
256 if (ion_unmap(pDeleteElement->mapAddr, pDeleteElement->allocSize)) {
260 pDeleteElement->mapAddr = NULL;
308 pElement->mapAddr = pBuffer
    [all...]
  /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 216 milliseconds