Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/compiler-rt/lib/fuzzer/
H A DFuzzerIOWindows.cpp101 DWORD LastError = GetLastError(); in FileSize() local
102 if (LastError != ERROR_FILE_NOT_FOUND) in FileSize()
104 Path.c_str(), LastError); in FileSize()
152 DWORD LastError = GetLastError(); in ListFilesInDirRecursive() local
153 if (LastError != ERROR_NO_MORE_FILES) in ListFilesInDirRecursive()
154 Printf("FindNextFileA failed (Error code: %lu).\n", LastError); in ListFilesInDirRecursive()
181 DWORD LastError = GetLastError(); in IterateDirRecursive() local
182 if (LastError != ERROR_FILE_NOT_FOUND) { in IterateDirRecursive()
185 LastError); in IterateDirRecursive()
204 DWORD LastError = GetLastError(); in IterateDirRecursive() local
[all …]
H A DFuzzerUtilWindows.cpp131 DWORD LastError = GetLastError(); in SetSignalHandler() local
133 LastError); in SetSignalHandler()
/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/CodeView/
H A DTypeStreamMerger.cpp170 std::optional<Error> LastError; member in __anon935fbd1e0111::TypeStreamMerger
227 if (LastError) in remapIndexFallback()
228 LastError = joinErrors(std::move(*LastError), errorCorruptRecord()); in remapIndexFallback()
230 LastError = errorCorruptRecord(); in remapIndexFallback()
320 while (!LastError && NumBadIndices > 0) { in doit()
331 if (!LastError && NumBadIndices == BadIndicesRemaining) { in doit()
337 if (LastError) in doit()
338 return std::move(*LastError); in doit()
/openbsd-src/gnu/llvm/llvm/include/llvm/ProfileData/
H A DInstrProfReader.h88 instrprof_error LastError = instrprof_error::success; variable
158 LastError = Err;
167 LastError = IPE.get(); in error()
170 return make_error<InstrProfError>(LastError, LastErrorMsg); in error()
178 bool isEOF() { return LastError == instrprof_error::eof; } in isEOF()
181 bool hasError() { return LastError != instrprof_error::success && !isEOF(); } in hasError()
186 return make_error<InstrProfError>(LastError, LastErrorMsg); in getError()
/openbsd-src/gnu/llvm/llvm/utils/KillTheDoctor/
H A DKillTheDoctor.cpp419 DWORD LastError = ::GetLastError(); in main() local
420 ec = windows_error(LastError); in main()
422 if (LastError == ERROR_SEM_TIMEOUT || LastError == WSAETIMEDOUT) { in main()
/openbsd-src/gnu/llvm/llvm/lib/Support/Windows/
H A DPath.inc248 DWORD LastError = ::GetLastError();
249 if (LastError != ERROR_ALREADY_EXISTS || !IgnoreExisting)
250 return mapWindowsError(LastError);
628 DWORD LastError = ::GetLastError();
629 if (LastError != ERROR_FILE_NOT_FOUND && LastError != ERROR_PATH_NOT_FOUND)
630 return mapWindowsError(LastError);
738 DWORD LastError = ::GetLastError();
739 if (LastError == ERROR_FILE_NOT_FOUND || LastError == ERROR_PATH_NOT_FOUND)
741 else if (LastError == ERROR_SHARING_VIOLATION)
745 return mapWindowsError(LastError);
[all …]
H A DProgram.inc115 DWORD LastError = GetLastError();
119 NULL, LastError, 0, (LPSTR)&buffer, 1, NULL);
124 *ErrMsg += " (0x" + llvm::utohexstr(LastError) + ")";
/openbsd-src/gnu/llvm/llvm/tools/llvm-exegesis/lib/
H A DBenchmarkResult.cpp35 : State(&State), ErrorStream(LastError), in YamlContext()
153 std::string LastError; member
/openbsd-src/gnu/usr.bin/gcc/gcc/
H A DChangeLog.512766 LastError.