Home
last modified time | relevance | path

Searched refs:LastError (Results 1 – 3 of 3) sorted by relevance

/NextBSD/contrib/llvm/lib/Support/Windows/
HDPath.inc192 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 …]
/NextBSD/contrib/llvm/include/llvm/ProfileData/
HDInstrProfReader.h53 std::error_code LastError; variable
56 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()
/NextBSD/contrib/gcc/
HDChangeLog-200131973 LastError.