| 845 | std::string ProxyMemoryPool::backend_name() const { return impl_->backend_name(); } |
| 846 | |
| 847 | std::vector<std::string> SupportedMemoryBackendNames() { |
| 848 | std::vector<std::string> supported; |
| 849 | for (const auto backend : SupportedBackends()) { |
| 850 | supported.push_back(backend.name); |
| 851 | } |
| 852 | return supported; |
| 853 | } |
| 854 | |
| 855 | /////////////////////////////////////////////////////////////////////// |
| 856 | // CappedMemoryPool implementation |
no test coverage detected