Lines Matching defs:path
169 HRESULT CUpdateCallbackConsole::ScanProgress(const CDirItemsStat &st, const FString &path, bool /* isDir */)
175 _percent.FileName = fs2us(path);
182 void CCallbackConsoleBase::CommonError(const FString &path, DWORD systemError, bool isWarning)
194 _se->NormalizePrint_UString(fs2us(path));
217 HRESULT CCallbackConsoleBase::ScanError_Base(const FString &path, DWORD systemError)
221 ScanErrors.AddError(path, systemError);
222 CommonError(path, systemError, true);
227 HRESULT CCallbackConsoleBase::OpenFileError_Base(const FString &path, DWORD systemError)
230 FailedFiles.AddError(path, systemError);
236 CommonError(path, systemError, true);
244 HRESULT CCallbackConsoleBase::ReadingFileError_Base(const FString &path, DWORD systemError)
247 CommonError(path, systemError, false);
251 HRESULT CUpdateCallbackConsole::ScanError(const FString &path, DWORD systemError)
253 return ScanError_Base(path, systemError);
364 HRESULT CUpdateCallbackConsole::DeletingAfterArchiving(const FString &path, bool /* isDir */)
381 _tempU = fs2us(path);
409 _percent.FileName = fs2us(path);
601 HRESULT CUpdateCallbackConsole::OpenFileError(const FString &path, DWORD systemError)
603 return OpenFileError_Base(path, systemError);
606 HRESULT CUpdateCallbackConsole::ReadingFileError(const FString &path, DWORD systemError)
608 return ReadingFileError_Base(path, systemError);