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