Lines Matching refs:entry
32 auto entry = iter->second;
33 delete entry;
45 PkgEntryPtr entry = nullptr;
48 entry = new UpgradeFileEntry(this, nodeId);
51 entry = new ZipFileEntry(this, nodeId);
54 entry = new Lz4FileEntry(this, nodeId);
58 entry = new GZipFileEntry(this, nodeId);
64 pkgEntryMapId_.insert(std::pair<uint32_t, PkgEntryPtr>(nodeId, entry));
65 pkgEntryMapFileName_.insert(std::pair<std::string, PkgEntryPtr>(fileName, entry));
66 return entry;
77 auto entry = static_cast<PkgEntryPtr>(node);
78 if (entry == nullptr) {
79 PKG_LOGE("error get entry %s", pkgStream_->GetFileName().c_str());
83 return entry->Unpack(output);