| 417 | } |
| 418 | |
| 419 | void CloudTunnel::EvictDiskCacheEntry(const std::string& path) { |
| 420 | if (path.empty()) return; |
| 421 | std::lock_guard<std::mutex> lock(disk_cache_mu_); |
| 422 | disk_cache_.erase(path); |
| 423 | } |
| 424 | |
| 425 | CloudTunnel::CloudTunnel(DaemonConfig config, VmStore& store, RuntimeManager& runtime_manager) |
| 426 | : config_(std::move(config)), store_(store), runtime_manager_(runtime_manager) { |
nothing calls this directly
no outgoing calls
no test coverage detected