Lines Matching defs:module
51 // our private gralloc module structure
57 /* If not NULL, this is a pointer to the fallback module.
526 // gralloc module functions - refcount + locking interface
528 static int gralloc_register_buffer(gralloc_module_t const* module,
538 private_module_t *gr = (private_module_t *)module;
568 module,
575 private_module_t *gr = (private_module_t *)module;
608 static int gralloc_lock(gralloc_module_t const* module,
617 private_module_t *gr = (private_module_t *)module;
720 static int gralloc_unlock(gralloc_module_t const* module,
727 private_module_t *gr = (private_module_t *)module;
784 static int gralloc_lock_ycbcr(gralloc_module_t const* module,
789 // Not supporting fallback module for YCbCr
799 private_module_t *gr = (private_module_t *)module;
888 static int gralloc_device_open(const hw_module_t* module,
924 dev->device.common.module = const_cast<hw_module_t*>(module);
973 dev->device.common.module = const_cast<hw_module_t*>(module);
999 // define the HMI symbol - our module interface
1012 name: "Graphics Memory Allocator Module",
1038 void* module;
1045 module = dlopen("/system/lib/hw/gralloc.default.so", RTLD_LAZY|RTLD_LOCAL);
1046 if (module != NULL) {
1047 sFallback = reinterpret_cast<gralloc_module_t*>(dlsym(module, HAL_MODULE_INFO_SYM_AS_STR));
1049 dlclose(module);
1053 ALOGE("Could not find software fallback module!?");