MCPcopy Create free account
hub / github.com/VCVRack/Rack / getParamHandle_NoLock

Method getParamHandle_NoLock

src/engine/Engine.cpp:1192–1197  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1190
1191
1192ParamHandle* Engine::getParamHandle_NoLock(int64_t moduleId, int paramId) {
1193 auto it = internal->paramHandlesCache.find(std::make_tuple(moduleId, paramId));
1194 if (it == internal->paramHandlesCache.end())
1195 return NULL;
1196 return it->second;
1197}
1198
1199
1200ParamHandle* Engine::getParamHandle(Module* module, int paramId) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected