/external/lzma/CPP/7zip/UI/Console/ |
List.h | 9 HRESULT ListArchives(CCodecs *codecs, const CIntVector &formatIndices,
|
Main.cpp | 243 CIntVector formatIndices;
244 if (!codecs->FindFormatForArchiveType(options.ArcType, formatIndices))
419 formatIndices,
469 formatIndices,
519 if (!uo.Init(codecs, formatIndices, options.ArchiveName))
|
List.cpp | 416 HRESULT ListArchives(CCodecs *codecs, const CIntVector &formatIndices,
462 HRESULT result = archiveLink.Open2(codecs, formatIndices, stdInMode, NULL, archiveName, &openCallback);
|
/external/lzma/CPP/7zip/UI/Common/ |
OpenArchive.h | 67 const CIntVector &formatIndices,
75 const CIntVector &formatIndices,
|
Extract.h | 67 CCodecs *codecs, const CIntVector &formatIndices,
|
OpenArchive.cpp | 377 const CIntVector &formatIndices,
384 if (formatIndices.Size() >= 32)
393 if (formatIndices.Size() >= 1)
395 if (Arcs.Size() >= formatIndices.Size())
397 formatIndex = formatIndices[formatIndices.Size() - Arcs.Size() - 1];
414 resSpec = (formatIndices.Size() == 0 ? S_OK : E_NOTIMPL);
453 resSpec = (formatIndices.Size() == 0 ? S_OK : S_FALSE);
483 const CIntVector &formatIndices,
509 RINOK(Open(codecs, formatIndices, stdInMode, stream, filePath, callback)); [all...] |
Extract.cpp | 103 CCodecs *codecs, const CIntVector &formatIndices,
164 CIntVector formatIndices2 = formatIndices;
166 if (formatIndices.IsEmpty())
|
Update.cpp | 246 bool CUpdateOptions::Init(const CCodecs *codecs, const CIntVector &formatIndices, const UString &arcPath)
248 if (formatIndices.Size() > 1)
251 if (formatIndices.Size() != 0)
252 arcTypeIndex = formatIndices[0];
691 CIntVector formatIndices;
693 formatIndices.Add(options.MethodMode.FormatIndex);
694 HRESULT result = arcLink.Open2(codecs, formatIndices, false, NULL, arcPath, openCallback);
|
LoadCodecs.cpp | 493 bool CCodecs::FindFormatForArchiveType(const UString &arcType, CIntVector &formatIndices) const
495 formatIndices.Clear();
505 formatIndices.Clear();
508 formatIndices.Add(index);
|
Update.h | 114 bool Init(const CCodecs *codecs, const CIntVector &formatIndices, const UString &arcPath);
|
LoadCodecs.h | 171 bool FindFormatForArchiveType(const UString &arcType, CIntVector &formatIndices) const;
|