Home | History | Annotate | Download | only in gralloc

Lines Matching defs:base

108 			hnd->base = ump_mapped_pointer_get((ump_handle)hnd->ump_mem_handle);
110 if (0 != hnd->base)
179 hnd->base = mappedAddress + hnd->offset;
210 void *base = (void *)hnd->base;
213 if (munmap(base, size) < 0)
215 AERR("Could not munmap base:0x%p size:%lu '%s'", base, (unsigned long)size, strerror(errno));
228 hnd->base = 0;
305 *vaddr = (void *)hnd->base;
334 ump_cpu_msync_now((ump_handle)hnd->ump_mem_handle, UMP_MSYNC_CLEAN_AND_INVALIDATE, (void *)hnd->base, hnd->size);
384 base.common.tag = HARDWARE_MODULE_TAG;
385 base.common.version_major = 1;
386 base.common.version_minor = 0;
387 base.common.id = GRALLOC_HARDWARE_MODULE_ID;
388 base.common.name = "Graphics Memory Allocator Module";
389 base.common.author = "ARM Ltd.";
390 base.common.methods = &gralloc_module_methods;
391 base.common.dso = NULL;
392 INIT_ZERO(base.common.reserved);
394 base.registerBuffer = gralloc_register_buffer;
395 base.unregisterBuffer = gralloc_unregister_buffer;
396 base.lock = gralloc_lock;
397 base.unlock = gralloc_unlock;
398 base.perform = NULL;
399 INIT_ZERO(base.reserved_proc);