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

/netbsd-current/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
H A DTypeStreamMerger.cpp169 Optional<Error> LastError; member in class:__anon1914::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);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Support/Windows/
H A DProgram.inc113 DWORD LastError = GetLastError();
117 NULL, LastError, 0, (LPSTR)&buffer, 1, NULL);
122 *ErrMsg += " (0x" + llvm::utohexstr(LastError) + ")";
H A DPath.inc235 DWORD LastError = ::GetLastError();
236 if (LastError != ERROR_ALREADY_EXISTS || !IgnoreExisting)
237 return mapWindowsError(LastError);
616 DWORD LastError = ::GetLastError();
617 if (LastError != ERROR_FILE_NOT_FOUND &&
618 LastError != ERROR_PATH_NOT_FOUND)
619 return mapWindowsError(LastError);
732 DWORD LastError = ::GetLastError();
733 if (LastError == ERROR_FILE_NOT_FOUND ||
734 LastError
[all...]
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
H A DFuzzerUtilWindows.cpp123 DWORD LastError = GetLastError(); local
125 LastError);
H A DFuzzerIOWindows.cpp134 DWORD LastError = GetLastError(); local
135 if (LastError != ERROR_NO_MORE_FILES)
136 Printf("FindNextFileA failed (Error code: %lu).\n", LastError);
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/ProfileData/
H A DInstrProfReader.h73 instrprof_error LastError = instrprof_error::success; member in class:llvm::InstrProfReader
115 LastError = Err;
128 bool isEOF() { return LastError == instrprof_error::eof; }
131 bool hasError() { return LastError != instrprof_error::success && !isEOF(); }
136 return make_error<InstrProfError>(LastError);
/netbsd-current/external/apache2/llvm/dist/llvm/utils/KillTheDoctor/
H A DKillTheDoctor.cpp425 DWORD LastError = ::GetLastError(); local
426 ec = windows_error(LastError);
428 if (LastError == ERROR_SEM_TIMEOUT || LastError == WSAETIMEDOUT) {
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/
H A DBenchmarkResult.cpp36 : State(&State), ErrorStream(LastError),
175 std::string LastError; member in struct:llvm::__anon3157::YamlContext

Completed in 216 milliseconds