Lines Matching refs:Plugin
72 cmsBool _cmsRegisterMemHandlerPlugin(cmsContext ContextID, cmsPluginBase* Plugin) in _cmsRegisterMemHandlerPlugin() argument
141 void _cmsInstallAllocFunctions(cmsPluginMemHandler* Plugin, _cmsMemPluginChunkType* ptr) in _cmsInstallAllocFunctions() argument
143 if (Plugin == NULL) { in _cmsInstallAllocFunctions()
149 ptr ->MallocPtr = Plugin -> MallocPtr; in _cmsInstallAllocFunctions()
150 ptr ->FreePtr = Plugin -> FreePtr; in _cmsInstallAllocFunctions()
151 ptr ->ReallocPtr = Plugin -> ReallocPtr; in _cmsInstallAllocFunctions()
158 if (Plugin ->MallocZeroPtr != NULL) ptr ->MallocZeroPtr = Plugin -> MallocZeroPtr; in _cmsInstallAllocFunctions()
159 if (Plugin ->CallocPtr != NULL) ptr ->CallocPtr = Plugin -> CallocPtr; in _cmsInstallAllocFunctions()
160 if (Plugin ->DupPtr != NULL) ptr ->DupPtr = Plugin -> DupPtr; in _cmsInstallAllocFunctions()
457 cmsPluginMutex* Plugin = (cmsPluginMutex*) Data; in _cmsRegisterMutexPlugin() local
471 if (Plugin ->CreateMutexPtr == NULL || Plugin ->DestroyMutexPtr == NULL || in _cmsRegisterMutexPlugin()
472 Plugin ->LockMutexPtr == NULL || Plugin ->UnlockMutexPtr == NULL) return FALSE; in _cmsRegisterMutexPlugin()
475 ctx->CreateMutexPtr = Plugin->CreateMutexPtr; in _cmsRegisterMutexPlugin()
476 ctx->DestroyMutexPtr = Plugin ->DestroyMutexPtr; in _cmsRegisterMutexPlugin()
477 ctx ->LockMutexPtr = Plugin ->LockMutexPtr; in _cmsRegisterMutexPlugin()
478 ctx ->UnlockMutexPtr = Plugin ->UnlockMutexPtr; in _cmsRegisterMutexPlugin()