Searched refs:arcPath (Results 1 - 5 of 5) sorted by relevance

/external/lzma/CPP/7zip/UI/Common/
H A DExtract.cpp125 const UString &arcPath = arcPaths[i]; local
126 if (!fi.Find(arcPath))
144 const UString &arcPath = arcPaths[i]; local
153 if (!fi.Find(arcPath) || fi.IsDir())
161 RINOK(extractCallback->BeforeOpen(arcPath));
168 int pos = arcPath.ReverseFind(L'.');
171 UString s = arcPath.Mid(pos + 1);
175 s = arcPath.Left(pos);
190 HRESULT result = archiveLink.Open2(codecs, formatIndices2, options.StdInMode, NULL, arcPath, openCallback);
199 RINOK(extractCallback->OpenResult(arcPath, resul
[all...]
H A DUpdate.cpp246 bool CUpdateOptions::Init(const CCodecs *codecs, const CIntVector &formatIndices, const UString &arcPath) argument
257 MethodMode.FormatIndex = codecs->FindFormatForArchiveName(arcPath);
273 ArchivePath.ParseFromPath(arcPath);
680 const UString arcPath = options.ArchivePath.GetFinalPath(); local
685 if (fi.Find(arcPath))
694 HRESULT result = arcLink.Open2(codecs, formatIndices, false, NULL, arcPath, openCallback);
697 RINOK(callback->OpenResult(arcPath, result));
844 if (!NDirectory::DeleteFileAlways(arcPath))
848 errorInfo.FileName = arcPath;
851 if (!NDirectory::MyMoveFile(tempPath, arcPath))
888 UString arcPath; local
900 UString arcPath = fullPaths[i]; local
[all...]
H A DLoadCodecs.cpp456 int CCodecs::FindFormatForArchiveName(const UString &arcPath) const
458 int slashPos1 = arcPath.ReverseFind(WCHAR_PATH_SEPARATOR);
459 int slashPos2 = arcPath.ReverseFind(L'.');
460 int dotPos = arcPath.ReverseFind(L'.');
463 UString ext = arcPath.Mid(dotPos + 1);
H A DUpdate.h114 bool Init(const CCodecs *codecs, const CIntVector &formatIndices, const UString &arcPath);
H A DLoadCodecs.h168 int FindFormatForArchiveName(const UString &arcPath) const;

Completed in 60 milliseconds