Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
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()
182 DWORD LastError = GetLastError(); in IterateDirRecursive() local
183 if (LastError != ERROR_FILE_NOT_FOUND) { in IterateDirRecursive()
186 LastError); in IterateDirRecursive()
205 DWORD LastError = GetLastError(); in IterateDirRecursive() local
[all …]
DFuzzerUtilWindows.cpp131 DWORD LastError = GetLastError(); in SetSignalHandler() local
133 LastError); in SetSignalHandler()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
DTypeStreamMerger.cpp169 Optional<Error> LastError; member in __anoneb227c7f0111::TypeStreamMerger
226 if (LastError) in remapIndexFallback()
227 LastError = joinErrors(std::move(*LastError), errorCorruptRecord()); in remapIndexFallback()
229 LastError = errorCorruptRecord(); in remapIndexFallback()
321 while (!LastError && NumBadIndices > 0) { in doit()
332 if (!LastError && NumBadIndices == BadIndicesRemaining) { in doit()
338 if (LastError) in doit()
339 return std::move(*LastError); in doit()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/
DInstrProfReader.h73 instrprof_error LastError = instrprof_error::success; variable
118 LastError = Err; in error()
131 bool isEOF() { return LastError == instrprof_error::eof; } in isEOF()
134 bool hasError() { return LastError != instrprof_error::success && !isEOF(); } in hasError()
139 return make_error<InstrProfError>(LastError); in getError()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/Windows/
DPath.inc235 DWORD LastError = ::GetLastError();
236 if (LastError != ERROR_ALREADY_EXISTS || !IgnoreExisting)
237 return mapWindowsError(LastError);
611 DWORD LastError = ::GetLastError();
612 if (LastError != ERROR_FILE_NOT_FOUND &&
613 LastError != ERROR_PATH_NOT_FOUND)
614 return mapWindowsError(LastError);
727 DWORD LastError = ::GetLastError();
728 if (LastError == ERROR_FILE_NOT_FOUND ||
729 LastError == ERROR_PATH_NOT_FOUND)
[all …]
DProgram.inc113 DWORD LastError = GetLastError();
117 NULL, LastError, 0, (LPSTR)&buffer, 1, NULL);
122 *ErrMsg += " (0x" + llvm::utohexstr(LastError) + ")";
/freebsd-12-stable/contrib/gcc/
DChangeLog-200131973 LastError.