Searched refs:LastError (Results 1 – 3 of 3) sorted by relevance
192 DWORD LastError = ::GetLastError();193 if (LastError != ERROR_ALREADY_EXISTS || !IgnoreExisting)194 return mapWindowsError(LastError);259 DWORD LastError = ::GetLastError();260 ec = mapWindowsError(LastError);261 if (LastError != ERROR_ACCESS_DENIED)291 DWORD LastError = ::GetLastError();292 if (LastError != ERROR_FILE_NOT_FOUND &&293 LastError != ERROR_PATH_NOT_FOUND)294 return mapWindowsError(LastError);[all …]
53 std::error_code LastError; variable56 InstrProfReader() : LastError(instrprof_error::success) {} in InstrProfReader()70 LastError = EC; in error()79 bool isEOF() { return LastError == instrprof_error::eof; } in isEOF()81 bool hasError() { return LastError && !isEOF(); } in hasError()83 std::error_code getError() { return LastError; } in getError()
31973 LastError.