Searched refs:LastError (Results 1 - 6 of 6) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerIOWindows.cpp89 DWORD LastError = GetLastError();
90 if (LastError != ERROR_FILE_NOT_FOUND)
92 Path.c_str(), LastError);
140 DWORD LastError = GetLastError(); local
141 if (LastError != ERROR_NO_MORE_FILES)
142 Printf("FindNextFileA failed (Error code: %lu).\n", LastError);
170 DWORD LastError = GetLastError(); local
171 if (LastError != ERROR_FILE_NOT_FOUND) {
174 LastError);
193 DWORD LastError local
[all...]
H A DFuzzerUtilWindows.cpp123 DWORD LastError = GetLastError(); local
125 LastError);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DTypeStreamMerger.cpp169 Optional<Error> LastError; member in class:__anon3615::TypeStreamMerger
226 if (LastError)
227 LastError = joinErrors(std::move(*LastError), errorCorruptRecord());
229 LastError = errorCorruptRecord();
321 while (!LastError && NumBadIndices > 0) {
332 if (!LastError && NumBadIndices == BadIndicesRemaining) {
338 if (LastError)
339 return std::move(*LastError);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/Windows/
H A DProgram.inc112 DWORD LastError = GetLastError();
116 NULL, LastError, 0, (LPSTR)&buffer, 1, NULL);
121 *ErrMsg += " (0x" + llvm::utohexstr(LastError) + ")";
H A DPath.inc235 DWORD LastError = ::GetLastError();
236 if (LastError != ERROR_ALREADY_EXISTS || !IgnoreExisting)
237 return mapWindowsError(LastError);
602 DWORD LastError = ::GetLastError();
603 if (LastError != ERROR_FILE_NOT_FOUND &&
604 LastError != ERROR_PATH_NOT_FOUND)
605 return mapWindowsError(LastError);
715 DWORD LastError = ::GetLastError();
716 if (LastError == ERROR_FILE_NOT_FOUND ||
717 LastError
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProfReader.h62 instrprof_error LastError = instrprof_error::success; member in class:llvm::InstrProfReader
102 LastError = Err;
115 bool isEOF() { return LastError == instrprof_error::eof; }
118 bool hasError() { return LastError != instrprof_error::success && !isEOF(); }
123 return make_error<InstrProfError>(LastError);

Completed in 163 milliseconds