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

  /hardware/samsung_slsi/exynos5/gralloc/
mapper.cpp 44 void* mappedAddress = mmap(0, hnd->size, PROT_READ|PROT_WRITE, MAP_SHARED,
46 if (mappedAddress == MAP_FAILED) {
50 ALOGV("%s: base %p %d %d %d %d\n", __func__, mappedAddress, hnd->size,
52 hnd->base = mappedAddress;
  /hardware/libhardware/modules/gralloc/
mapper.cpp 53 void* mappedAddress = mmap(0, size,
55 if (mappedAddress == MAP_FAILED) {
59 hnd->base = intptr_t(mappedAddress) + hnd->offset;
61 // hnd->fd, hnd->offset, hnd->size, mappedAddress);
  /external/webkit/Source/WebKit2/Platform/mac/
SharedMemoryMac.cpp 141 mach_vm_address_t mappedAddress = 0;
142 kern_return_t kr = mach_vm_map(mach_task_self(), &mappedAddress, handle.m_size, 0, VM_FLAGS_ANYWHERE, handle.m_port, 0, false, vmProtection, vmProtection, VM_INHERIT_NONE);
148 sharedMemory->m_data = toPointer(mappedAddress);

Completed in 126 milliseconds