| 1190 | |
| 1191 | |
| 1192 | ParamHandle* 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 | |
| 1200 | ParamHandle* Engine::getParamHandle(Module* module, int paramId) { |
nothing calls this directly
no outgoing calls
no test coverage detected