Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/DebugInfo/CodeView/
H A DTypeStreamMerger.cpp169 Optional<Error> LastError; member in __anonfdb2716c0111::TypeStreamMerger
241 if (LastError) in remapIndexFallback()
242 LastError = joinErrors(std::move(*LastError), errorCorruptRecord()); in remapIndexFallback()
244 LastError = errorCorruptRecord(); in remapIndexFallback()
336 while (!LastError && NumBadIndices > 0) { in doit()
347 if (!LastError && NumBadIndices == BadIndicesRemaining) { in doit()
353 if (LastError) in doit()
354 return std::move(*LastError); in doit()
/freebsd-12.1/contrib/llvm/include/llvm/ProfileData/
H A DInstrProfReader.h63 instrprof_error LastError = instrprof_error::success; variable
98 LastError = Err; in error()
111 bool isEOF() { return LastError == instrprof_error::eof; } in isEOF()
114 bool hasError() { return LastError != instrprof_error::success && !isEOF(); } in hasError()
119 return make_error<InstrProfError>(LastError); in getError()
/freebsd-12.1/contrib/llvm/lib/Support/Windows/
H A DPath.inc235 DWORD LastError = ::GetLastError();
237 return mapWindowsError(LastError);
577 DWORD LastError = ::GetLastError();
580 return mapWindowsError(LastError);
690 DWORD LastError = ::GetLastError();
692 LastError == ERROR_PATH_NOT_FOUND)
698 return mapWindowsError(LastError);
961 return mapWindowsError(LastError);
995 DWORD LastError = ::GetLastError();
999 return mapWindowsError(LastError);
[all …]
H A DProgram.inc112 DWORD LastError = GetLastError();
116 NULL, LastError, 0, (LPSTR)&buffer, 1, NULL);
121 *ErrMsg += " (0x" + llvm::utohexstr(LastError) + ")";
/freebsd-12.1/contrib/compiler-rt/lib/fuzzer/
H A DFuzzerIOWindows.cpp134 DWORD LastError = GetLastError(); in ListFilesInDirRecursive() local
135 if (LastError != ERROR_NO_MORE_FILES) in ListFilesInDirRecursive()
136 Printf("FindNextFileA failed (Error code: %lu).\n", LastError); in ListFilesInDirRecursive()
H A DFuzzerUtilWindows.cpp123 DWORD LastError = GetLastError(); in SetSignalHandler() local
125 LastError); in SetSignalHandler()
/freebsd-12.1/contrib/gcc/
H A DChangeLog-200131973 LastError.