| 185 | } |
| 186 | |
| 187 | bool HasPendingWorkForPrefix(const std::string& prefix) { |
| 188 | std::lock_guard<std::mutex> lock(g_queueMutex); |
| 189 | return HasPendingWorkForPrefixLocked(prefix); |
| 190 | } |
| 191 | |
| 192 | static bool HasFailedWorkForPrefix(const std::string& prefix) { |
| 193 | for (const auto& path : g_failedPaths) { |
nothing calls this directly
no test coverage detected