| 103 | } |
| 104 | |
| 105 | Status LibCache::Init(bool external_fe) { |
| 106 | DCHECK(LibCache::instance_.get() == nullptr); |
| 107 | LibCache::instance_.reset(new LibCache()); |
| 108 | return LibCache::instance_->InitInternal(external_fe); |
| 109 | } |
| 110 | |
| 111 | Status LibCache::InitInternal(bool external_fe) { |
| 112 | if (external_fe) { |
nothing calls this directly
no test coverage detected