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

Method findTableExports

include/runtime/instance/module.h:166–169  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

164 return unsafeFindExports(ExpFuncs, ExtName);
165 }
166 TableInstance *findTableExports(std::string_view ExtName) const noexcept {
167 std::shared_lock Lock(Mutex);
168 return unsafeFindExports(ExpTables, ExtName);
169 }
170 MemoryInstance *findMemoryExports(std::string_view ExtName) const noexcept {
171 std::shared_lock Lock(Mutex);
172 return unsafeFindExports(ExpMems, ExtName);

Callers 4

checkImportMatchedFunction · 0.80
instantiateMethod · 0.80
checkNullTableEntryFunction · 0.80

Calls

no outgoing calls

Tested by 1

checkNullTableEntryFunction · 0.64