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