Lines Matching refs:entry
206 while (const ZipReader::Entry* const entry = reader.Next()) {
207 if (entry->is_unsafe) {
208 LOG(ERROR) << "Found unsafe entry " << Redact(entry->path) << " in ZIP";
214 if (options.filter && !options.filter.Run(entry->path)) {
215 VLOG(1) << "Skipped ZIP entry " << Redact(entry->path);
219 if (entry->is_directory) {
221 if (!directory_creator.Run(entry->path)) {
222 LOG(ERROR) << "Cannot create directory " << Redact(entry->path);
231 std::unique_ptr<WriterDelegate> writer = writer_factory.Run(entry->path);
236 LOG(ERROR) << "Cannot extract file " << Redact(entry->path)