MCPcopy Create free account
hub / github.com/WasmEdge/WasmEdge / findTagExports

Method findTagExports

include/runtime/instance/module.h:174–177  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

172 return unsafeFindExports(ExpMems, ExtName);
173 }
174 TagInstance *findTagExports(std::string_view ExtName) const noexcept {
175 std::shared_lock Lock(Mutex);
176 return unsafeFindExports(ExpTags, ExtName);
177 }
178 GlobalInstance *findGlobalExports(std::string_view ExtName) const noexcept {
179 std::shared_lock Lock(Mutex);
180 return unsafeFindExports(ExpGlobals, ExtName);

Callers 3

checkImportMatchedFunction · 0.80
instantiateMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected