Home
last modified time | relevance | path

Searched refs:extractorMap_ (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/foundation/ability/ability_base/interfaces/kits/native/extractortool/src/
H A Dextractor.cpp273 std::unordered_map<std::string, std::shared_ptr<Extractor>> ExtractorUtil::extractorMap_; member in OHOS::AbilityBase::ExtractorUtil
295 auto mapIter = extractorMap_.find(hapPath); in GetExtractor()
296 if (mapIter != extractorMap_.end()) { in GetExtractor()
310 extractorMap_.emplace(hapPath, extractor); in GetExtractor()
311 ABILITYBASE_LOGD("extractor cache size: %{public}zu", extractorMap_.size()); in GetExtractor()
326 auto mapIter = extractorMap_.find(hapPath); in DeleteExtractor()
327 if (mapIter != extractorMap_.end()) { in DeleteExtractor()
329 extractorMap_.erase(mapIter); in DeleteExtractor()
/ohos5.0/foundation/ability/ability_base/interfaces/kits/native/extractortool/include/
H A Dextractor.h116 static std::unordered_map<std::string, std::shared_ptr<Extractor>> extractorMap_; variable