HomeSort by relevance Sort by last modified time
    Searched refs:arcPath (Results 1 - 5 of 5) sorted by null

  /external/lzma/CPP/7zip/UI/Common/
Extract.cpp 125 const UString &arcPath = arcPaths[i];
126 if (!fi.Find(arcPath))
144 const UString &arcPath = arcPaths[i];
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, result, crypted));
    [all...]
Update.cpp 246 bool CUpdateOptions::Init(const CCodecs *codecs, const CIntVector &formatIndices, const UString &arcPath)
257 MethodMode.FormatIndex = codecs->FindFormatForArchiveName(arcPath);
273 ArchivePath.ParseFromPath(arcPath);
680 const UString arcPath = options.ArchivePath.GetFinalPath();
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))
    [all...]
LoadCodecs.cpp 456 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);
Update.h 114 bool Init(const CCodecs *codecs, const CIntVector &formatIndices, const UString &arcPath);
LoadCodecs.h 168 int FindFormatForArchiveName(const UString &arcPath) const;

Completed in 39 milliseconds