| 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); |
| 173 | } |
| 174 | TagInstance *findTagExports(std::string_view ExtName) const noexcept { |
| 175 | std::shared_lock Lock(Mutex); |
| 176 | return unsafeFindExports(ExpTags, ExtName); |
no outgoing calls