| 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); |
no outgoing calls