Lines Matching refs:systemError
182 void CCallbackConsoleBase::CommonError(const FString &path, DWORD systemError, bool isWarning)
192 << NError::MyFormatMessage(systemError)
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);
233 if (systemError == ERROR_SHARING_VIOLATION)
236 CommonError(path, systemError, true);
240 return systemError;
244 HRESULT CCallbackConsoleBase::ReadingFileError_Base(const FString &path, DWORD systemError)
247 CommonError(path, systemError, false);
248 return HRESULT_FROM_WIN32(systemError);
251 HRESULT CUpdateCallbackConsole::ScanError(const FString &path, DWORD systemError)
253 return ScanError_Base(path, systemError);
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);