| 52 | } |
| 53 | |
| 54 | bool ImageCacheFactory::IsInitialized(int device_id) { |
| 55 | std::lock_guard<std::mutex> lock(mutex_); |
| 56 | return CheckWeakPtr(device_id); |
| 57 | } |
| 58 | |
| 59 | bool ImageCacheFactory::CheckWeakPtr(int device_id) { |
| 60 | auto it = caches_.find(device_id); |
no outgoing calls