Lines Matching defs:module
47 // our private gralloc module structure
53 /* If not NULL, this is a pointer to the fallback module.
519 // gralloc module functions - refcount + locking interface
521 static int gralloc_register_buffer(gralloc_module_t const* module,
531 private_module_t *gr = (private_module_t *)module;
561 static int gralloc_unregister_buffer(gralloc_module_t const* module,
568 module;
601 static int gralloc_lock(gralloc_module_t const* module,
610 private_module_t *gr = (private_module_t *)module;
718 static int gralloc_unlock(gralloc_module_t const* module,
725 private_module_t *gr = (private_module_t *)module;
782 static int gralloc_lock_ycbcr(gralloc_module_t const* module,
787 // Not supporting fallback module for YCbCr
797 private_module_t *gr = (private_module_t *)module;
886 static int gralloc_device_open(const hw_module_t* module,
922 dev->device.common.module = const_cast<hw_module_t*>(module);
971 dev->device.common.module = const_cast<hw_module_t*>(module);
997 // define the HMI symbol - our module interface
1010 name: "Graphics Memory Allocator Module",
1035 void* module;
1046 module = dlopen("/system/lib64/hw/gralloc.default.so", RTLD_LAZY|RTLD_LOCAL);
1048 module = dlopen("/system/lib/hw/gralloc.default.so", RTLD_LAZY|RTLD_LOCAL);
1050 if (module != NULL) {
1051 sFallback = reinterpret_cast<gralloc_module_t*>(dlsym(module, HAL_MODULE_INFO_SYM_AS_STR));
1053 dlclose(module);
1057 ALOGE("Could not find software fallback module!?");