Home
last modified time | relevance | path

Searched refs:fullProcessedPath (Results 1 – 5 of 5) sorted by relevance

/external/lzma/CPP/7zip/UI/Common/
DArchiveExtractCallback.cpp1204 HRESULT CArchiveExtractCallback::CheckExistFile(FString &fullProcessedPath, bool &needExit)
1210 if (fileInfo.Find(fullProcessedPath))
1217 const int slashPos = fullProcessedPath.ReverseFind_PathSepar();
1218 …const FString realFullProcessedPath = fullProcessedPath.Left((unsigned)(slashPos + 1)) + fileInfo.…
1258 if (!AutoRenamePath(fullProcessedPath))
1260 RINOK(SendMessageError(kCantAutoRename, fullProcessedPath))
1267 FString existPath (fullProcessedPath);
1270 RINOK(SendMessageError(kCantAutoRename, fullProcessedPath))
1274 if (!MyMoveFile(fullProcessedPath, existPath))
1277 RINOK(SendMessageError2(errorCode, kCantRenameFile, existPath, fullProcessedPath))
[all …]
DArchiveExtractCallback.h493 HRESULT Link(const FString &fullProcessedPath);
533 HRESULT CheckExistFile(FString &fullProcessedPath, bool &needExit);
547 const FString &fullProcessedPath,
/external/lzma/CPP/7zip/Bundles/SFXSetup/
DExtractCallbackSfx.cpp166 FString fullProcessedPath = _directoryPath + us2fs(processedPath); in Z7_COM7F_IMF() local
170 _diskFilePath = fullProcessedPath; in Z7_COM7F_IMF()
180 if (fileInfo.Find(fullProcessedPath)) in Z7_COM7F_IMF()
182 if (!DeleteFileAlways(fullProcessedPath)) in Z7_COM7F_IMF()
193 if (!_outFileStreamSpec->Create_ALWAYS(fullProcessedPath)) in Z7_COM7F_IMF()
201 _diskFilePath = fullProcessedPath; in Z7_COM7F_IMF()
/external/lzma/CPP/7zip/UI/Client7z/
DClient7z.cpp460 FString fullProcessedPath = _directoryPath + us2fs(_filePath); in Z7_COM7F_IMF() local
461 _diskFilePath = fullProcessedPath; in Z7_COM7F_IMF()
465 CreateComplexDir(fullProcessedPath); in Z7_COM7F_IMF()
470 if (fi.Find(fullProcessedPath)) in Z7_COM7F_IMF()
472 if (!DeleteFileAlways(fullProcessedPath)) in Z7_COM7F_IMF()
474 PrintError("Cannot delete output file", fullProcessedPath); in Z7_COM7F_IMF()
481 if (!_outFileStreamSpec->Create_ALWAYS(fullProcessedPath)) in Z7_COM7F_IMF()
483 PrintError("Cannot open output file", fullProcessedPath); in Z7_COM7F_IMF()
/external/lzma/CPP/7zip/Common/
DFilePathAutoRename.h8 bool AutoRenamePath(FString &fullProcessedPath);