Lines Matching refs:Plugin
70 cmsBool _cmsRegisterMemHandlerPlugin(cmsContext ContextID, cmsPluginBase* Plugin) in _cmsRegisterMemHandlerPlugin() argument
139 void _cmsInstallAllocFunctions(cmsPluginMemHandler* Plugin, _cmsMemPluginChunkType* ptr) in _cmsInstallAllocFunctions() argument
141 if (Plugin == NULL) { in _cmsInstallAllocFunctions()
147 ptr ->MallocPtr = Plugin -> MallocPtr; in _cmsInstallAllocFunctions()
148 ptr ->FreePtr = Plugin -> FreePtr; in _cmsInstallAllocFunctions()
149 ptr ->ReallocPtr = Plugin -> ReallocPtr; in _cmsInstallAllocFunctions()
156 if (Plugin ->MallocZeroPtr != NULL) ptr ->MallocZeroPtr = Plugin -> MallocZeroPtr; in _cmsInstallAllocFunctions()
157 if (Plugin ->CallocPtr != NULL) ptr ->CallocPtr = Plugin -> CallocPtr; in _cmsInstallAllocFunctions()
158 if (Plugin ->DupPtr != NULL) ptr ->DupPtr = Plugin -> DupPtr; in _cmsInstallAllocFunctions()
455 cmsPluginMutex* Plugin = (cmsPluginMutex*) Data; in _cmsRegisterMutexPlugin() local
469 if (Plugin ->CreateMutexPtr == NULL || Plugin ->DestroyMutexPtr == NULL || in _cmsRegisterMutexPlugin()
470 Plugin ->LockMutexPtr == NULL || Plugin ->UnlockMutexPtr == NULL) return FALSE; in _cmsRegisterMutexPlugin()
473 ctx->CreateMutexPtr = Plugin->CreateMutexPtr; in _cmsRegisterMutexPlugin()
474 ctx->DestroyMutexPtr = Plugin ->DestroyMutexPtr; in _cmsRegisterMutexPlugin()
475 ctx ->LockMutexPtr = Plugin ->LockMutexPtr; in _cmsRegisterMutexPlugin()
476 ctx ->UnlockMutexPtr = Plugin ->UnlockMutexPtr; in _cmsRegisterMutexPlugin()